Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-03-11 | debian: Document use of eatmydata with command-prefixrelease/schroot-1.4.21debian/schroot-1.4.21-1 | Roger Leigh | 1 | -1/+3 | |
2011-03-11 | man: Document use of eatmydata with command-prefix for performance | Roger Leigh | 2 | -0/+14 | |
2011-03-11 | sbuild::session: Don't unset argv[0] when command-prefix is invalid | Roger Leigh | 1 | -0/+2 | |
2011-03-01 | debian: Close #609067 | Roger Leigh | 1 | -1/+3 | |
2011-03-01 | schroot-base: fix build with --enable-debug | Jonathan Callen | 1 | -1/+1 | |
Rename last instance of the variable sbuild::debug_level to sbuild::debug_log_level. This appears to have been missed in commit 04c19bb6c28295a387e60066c48db7f443e5b925. Signed-off-by: Roger Leigh <rleigh@debian.org> | |||||
2011-03-01 | debian: Bump version to 1.4.21-1 | Roger Leigh | 1 | -0/+6 | |
2011-03-01 | NEWS: Bump version to 1.4.21 | Roger Leigh | 1 | -1/+5 | |
2011-02-28 | debian: Depend on Boost 1.46 packagesrelease/schroot-1.4.20debian/schroot-1.4.20-1 | Roger Leigh | 1 | -1/+1 | |
Until boost-defaults is at version 1.46, use specific packages. | |||||
2011-02-28 | debian: Build with Boost 1.46 and remove old versions from build depends | Roger Leigh | 2 | -2/+5 | |
2011-02-11 | THANKS: Add Zach Carter | Roger Leigh | 1 | -0/+4 | |
2011-02-11 | NEWS: Document Boost 1.46 compatibility | Roger Leigh | 1 | -1/+3 | |
2011-02-11 | debian: Close #612510 | Roger Leigh | 1 | -1/+5 | |
2011-02-11 | sbuild: Work with boost::filesystem v3 | Roger Leigh | 2 | -0/+8 | |
The new Boost filesystem library was provided with version 1.44, but not available as the default until 1.46. In order to be backward compatible, we check which version is available and conditionally compile based upon that. | |||||
2011-01-18 | sbuild: Prefix all chroot type usage with sbuild namespace qualifier | Roger Leigh | 7 | -8/+8 | |
As for the sbuild::chroot class, qualify all remaining uses of chroot type with full namespace. | |||||
2011-01-17 | sbuild::chroot: Use sbuild:: namespace for all file scope definitions | Roger Leigh | 1 | -5/+5 | |
Some definitions used chroot:: rather than sbuild::chroot, which was causing a misbuild on the alpha architecture. This may have been due to the chroot(2) function being declared for some reason. | |||||
2011-01-11 | debian: Bump version to 1.4.20-1 | Roger Leigh | 1 | -0/+6 | |
2011-01-11 | NEWS: Bump version to 1.4.20 | Roger Leigh | 1 | -1/+5 | |
2011-01-11 | debian: Close #609619release/schroot-1.4.19debian/schroot-1.4.19-1debian-squeeze | Roger Leigh | 1 | -1/+4 | |
2011-01-11 | dchroot::dsa_session: Don't include <uuid/uuid.h> | Roger Leigh | 1 | -2/+0 | |
This header is no longer used, and it breaks building on platforms without the header available. | |||||
2011-01-10 | 50chrootname: Make executable again | Roger Leigh | 1 | -0/+0 | |
2011-01-10 | debian: Bump version to 1.4.19-1 | Roger Leigh | 1 | -0/+6 | |
2011-01-10 | NEWS: Bump version to 1.4.19 | Roger Leigh | 1 | -1/+5 | |
2011-01-10 | 50chrootname: Use more restrictive regex for time and PIDrelease/schroot-1.4.18debian/schroot-1.4.18-1 | Roger Leigh | 1 | -2/+2 | |
Drop old ISO-8601 date and pid regex which is no longer supported. Use 10+ digit match for time (UNIX time is a minimum of 10 digits now). Use 3+ digit match for PID. | |||||
2011-01-07 | debian: Document 50chrootname time+PID stripping | Roger Leigh | 1 | -1/+4 | |
2011-01-07 | 50chrootname: Strip time/pid from session name in addition to UUID | Roger Leigh | 1 | -1/+1 | |
2011-01-06 | debian: Fix spelling of name | Roger Leigh | 1 | -4/+4 | |
2011-01-06 | debian: Close #609108 | Roger Leigh | 1 | -2/+15 | |
2011-01-06 | debian: Bump version to 1.4.18-1 | Roger Leigh | 1 | -0/+6 | |
2011-01-06 | NEWS: Bump version to 1.4.18 | Roger Leigh | 1 | -1/+5 | |
2011-01-06 | debian: Disable UUID support on kfreebsd | Roger Leigh | 2 | -2/+8 | |
The FreeBSD kernel does not allow mounting of paths longer than 88 characters (80 in practice) due to a limitation in its struct statfs structure (fixed-length character arrays). This isn't fixable by us, so work around it by not using long UUIDs to mitigate the issue. | |||||
2011-01-06 | build: Correct libuuid configuration | Roger Leigh | 2 | -10/+17 | |
libuuid --enable-uuid and --disable-uuid options now work. The configure logic was incorrect and now handles enabling, disabling and automatic configuration correctly. Only link with libuuid when UUID support is enabled. Only build with UUID support when enabled, not merely present. | |||||
2011-01-06 | build: Don't link with libpam when PAM is disabled | Roger Leigh | 1 | -0/+2 | |
2010-12-30 | po: Updaterelease/schroot-1.4.17debian/schroot-1.4.17-1 | Roger Leigh | 1 | -6/+11 | |
2010-12-29 | debian: Close #608054 | Roger Leigh | 1 | -1/+6 | |
2010-12-29 | 15killprocs: Device and inode do not uniquely identify a chroot | Roger Leigh | 1 | -18/+25 | |
15killprocs switched to comparing device/inode numbers to kill processes inside a chroot. Unfortunately, when multiple sessions are run inside a non-cloned chroot, the sessions all share a the same device/inode as the chroot root directory, resulting in all processes in all the sessions being killed when one of the sessions is ended. Retain the device/inode check for efficiency, but additionally check the paths when a match is found to avoid killing processes in other sessions. | |||||
2010-12-12 | debian: Update zh_CN translation | Roger Leigh | 1 | -1/+2 | |
2010-12-12 | po: Update zh_CN translation | Ji ZhengYu | 1 | -2/+2 | |
2010-12-08 | debian: Close #606394 | Roger Leigh | 1 | -1/+2 | |
2010-12-08 | po: Update fr translation | Thomas Blein | 1 | -3/+4 | |
2010-12-08 | debian: Update it translation | Roger Leigh | 1 | -1/+2 | |
2010-12-08 | po: Update it translation | Vincenzo Campanella | 1 | -11/+8 | |
2010-12-08 | debian: Close #606305 | Roger Leigh | 1 | -1/+2 | |
2010-12-08 | po: Update da translation | Joe Hansen | 1 | -2/+2 | |
2010-12-08 | debian: Close #606245 | Roger Leigh | 1 | -1/+3 | |
2010-12-08 | debian: Bump version to 1.4.17-1 | Roger Leigh | 1 | -0/+6 | |
2010-12-08 | NEWS: Bump version to 1.4.17 | Roger Leigh | 1 | -1/+5 | |
2010-12-08 | po: Update de translation | Roger Leigh | 1 | -1/+3 | |
Conflicts: po/de.po | |||||
2010-12-07 | po: Updaterelease/schroot-1.4.16debian/schroot-1.4.16-1 | Roger Leigh | 12 | -35/+60 | |
2010-12-07 | debian: Reorder changelog | Roger Leigh | 1 | -3/+3 | |
2010-12-07 | debian: Close #606162 | Roger Leigh | 1 | -1/+5 | |