Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-08-22 | debian: rules: Explicitly specify LVREMOVErelease/schroot-1.4.10debian/schroot-1.4.10-1 | Roger Leigh | 2 | -4/+7 | |
2010-08-22 | build: Simplify doxygen conditional usage | Roger Leigh | 1 | -5/+4 | |
2010-08-22 | debian: Bump version to 1.4.10-1 and don't enable doxygen explicitly | Roger Leigh | 2 | -1/+8 | |
2010-08-22 | NEWS: Bump version to 1.4.10 | Roger Leigh | 1 | -1/+5 | |
2010-08-22 | build: Conditionally enable features if present | Roger Leigh | 1 | -12/+34 | |
Existing logic for automatic enabling of features was broken | |||||
2010-08-21 | debian: rules: Run dh_install separately for install-arch and -indeprelease/schroot-1.4.9debian/schroot-1.4.9-1 | Roger Leigh | 1 | -1/+4 | |
Also install arch-indep files separately in install-indep rule | |||||
2010-08-21 | debian: rules: Use -a and -i arguments for dh_prep | Roger Leigh | 1 | -2/+2 | |
2010-08-21 | po: Update | Roger Leigh | 1 | -9/+11 | |
2010-08-21 | debian: rules: Add build rule to call build-indep and build-arch | Roger Leigh | 1 | -0/+2 | |
2010-08-21 | debian: Close #593516 | Roger Leigh | 1 | -1/+4 | |
2010-08-21 | setup: 10mount: Use flock to prevent race reading /proc/mounts | Greg Price | 1 | -8/+21 | |
See Debian #593516 for a full description of this bug. Comment added to Greg Price's patch by Roger Leigh: Note that flock is used here to prevent races reading /proc/mounts, which on current (Linux 2.6.32) kernels is racy. If other processes are mounting or unmounting filesystems as we read it, we can miss mount entries due to the file changing as we read it. This needs fixing in the kernel, but an exclusive lock surrounding the schroot-listmounts invocation is a partial fix. This prevents racing when multiple schroot processes are running. Note that this does not prevent the problem when programs other than schroot mount and unmount filesystems (since they don't create the lock). | |||||
2010-08-21 | build: boost_filesystem depends upon boost_system | Roger Leigh | 1 | -13/+13 | |
Newer compilers (GCC 4.5) and linkers (gold) require that all required symbols are linked against directly, rather than allowing indirect linkage to satisfy the dependency. This means that if you use the libboost_filesystem headers and link with -lboost_filesystem, you also need to add -lboost_system. The library has the appropriate DT_NEEDED entry, but this is due to exposing internal use of boost_system in the boost_filesystem headers, so our code is in fact dependent even though we are unaware of it. Hopefully boost will start using pkg-config in the future so we don't need to be aware of these internal details and worry about breakage when our assumptions about the internal details change in the future. | |||||
2010-08-21 | README: Update configure options and document "make doc" | Roger Leigh | 1 | -4/+21 | |
2010-08-19 | debian: Close #593622 | Roger Leigh | 1 | -1/+2 | |
2010-08-19 | po: Update da translation | Joe Hansen | 1 | -14/+8 | |
2010-08-19 | debian: Update zh_CN translation | Roger Leigh | 1 | -1/+2 | |
2010-08-19 | po: Update zh_CN translation | Ji ZhengYu | 1 | -13/+8 | |
2010-08-19 | debian: Update it translation | Roger Leigh | 1 | -1/+2 | |
2010-08-19 | po: Update it translation | Vincenzo Campanella | 1 | -24/+20 | |
2010-08-19 | po: Update en translation | Roger Leigh | 1 | -3/+2 | |
2010-08-18 | debian: Split build into build-arch and build-indep rules | Roger Leigh | 4 | -14/+36 | |
Also split intall into install-arch and install-indep. Add doxygen and graphviz to Build-Dep-Indep. | |||||
2010-08-18 | debian: Bump version to 1.4.9-1 and close #593256 | Roger Leigh | 1 | -0/+8 | |
2010-08-18 | NEWS: Bump version to 1.4.9 | Roger Leigh | 1 | -1/+5 | |
2010-08-18 | sbuild::chroot: Hide priority deprecation warning on session reload | Roger Leigh | 1 | -0/+2 | |
2010-08-18 | build: Add separate doc rule to build API references | Roger Leigh | 2 | -6/+6 | |
Done in order to allow skipping doxygen doc build for binary- only builds. | |||||
2010-08-15 | debian: Upgrade to Standards Version 3.9.1release/schroot-1.4.8debian/schroot-1.4.8-1 | Roger Leigh | 2 | -2/+3 | |
2010-08-15 | NEWS: Document environment fixes | Roger Leigh | 1 | -0/+3 | |
2010-08-15 | debian: Close #512131 | Roger Leigh | 1 | -2/+4 | |
2010-08-15 | debian: Close #589082 and #589079 | Roger Leigh | 1 | -1/+4 | |
2010-08-15 | po: Update | Roger Leigh | 10 | -10/+49 | |
2010-08-15 | po: Update fr translation | Thomas Blein | 1 | -52/+48 | |
2010-08-15 | po: Add Danish translation | Joe Hansen | 2 | -0/+1384 | |
2010-08-07 | debian: Close #589658 | Roger Leigh | 1 | -1/+3 | |
2010-08-07 | build: Fix check for boost::program_options::variables_map | Zach Carter | 1 | -1/+1 | |
Use boost::program_options::variables_map rather than boost::program_options::variables_map::variables_map. For some reason the latter worked on Debian but not on Fedora. The former is correct on all systems. | |||||
2010-08-07 | sbuild::chroot: Validate chroot name with is_valid_sessionname | Roger Leigh | 1 | -0/+9 | |
2010-08-07 | schroot::options_base: Validate session name with is_valid_sessionname | Roger Leigh | 1 | -0/+10 | |
2010-08-07 | debian: Close #589889 | Roger Leigh | 1 | -1/+3 | |
2010-08-07 | sbuild::chroot_config: Replace is_valid_filename with is_valid_sessionname | Zach Carter | 3 | -1/+26 | |
Add is_valid_sessionname to sbuild-util.cc. The matching is less strict than is_valid_filename. | |||||
2010-07-28 | debian: Close #589830 and #589917 | Roger Leigh | 1 | -1/+4 | |
2010-07-28 | sbuild::auth: Always preserve HOME and SHELL | Roger Leigh | 1 | -17/+15 | |
2010-07-13 | debian: Close #588963 | Roger Leigh | 1 | -1/+2 | |
2010-07-13 | po: Update de translation | Holger Wansing | 1 | -22/+13 | |
2010-07-11 | man: Document chroot namespaces | Roger Leigh | 1 | -8/+54 | |
2010-07-11 | schroot::main_base: Remove debugging statement | Roger Leigh | 1 | -1/+0 | |
2010-07-11 | sbuild::chroot_config: Add get_namespace helper | Roger Leigh | 1 | -47/+33 | |
Add helper function to split a name into namespace and chroot. | |||||
2010-07-11 | schroot::main_base: Use find_alias rather than find_chroot | Roger Leigh | 1 | -2/+2 | |
This is to cope with compatibility names which are stored only in the alias table. | |||||
2010-07-11 | man: Document deprecation of priority | Roger Leigh | 1 | -1/+3 | |
2010-07-11 | etc: Remove priority from schroot.conf examples | Roger Leigh | 1 | -8/+0 | |
2010-07-11 | debian: Bump version to 1.4.8-1 | Roger Leigh | 1 | -2/+8 | |
2010-07-11 | Document namespaces and undocumented return types | Roger Leigh | 21 | -16/+100 | |