Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-08-28 | Complete Italian translation | Christian PERRIER | |
2013-08-27 | Update Italian translation. Closes: #721030 | Christian PERRIER | |
2013-08-26 | update changelog | Michael Vogt | |
2013-08-26 | apt-private/private-cmndline.cc: fix typo: s/deselect-upgrade/dselect-upgrade/ | Michael Vogt | |
2013-08-26 | dselect/install: add new DSELECT_UPGRADE_OPTS="-f" | Michael Vogt | |
2013-08-26 | dselect/install: | Michael Vogt | |
* dselect/install: - remove "-f" option for apt-get dselect-upgrade (closes: #720532) | |||
2013-08-26 | Merge branch 'debian/sid' of ssh://git.debian.org/git/apt/apt into debian/sid | Michael Vogt | |
Conflicts: debian/changelog | |||
2013-08-25 | Changelog entry for Vietnamese translation | Christian PERRIER | |
2013-08-25 | Update Vietnamese translation to 0.9.11 | Tran Ngoc Quan | |
Signed-off-by: Tran Ngoc Quan <vnwildman@gmail.com> | |||
2013-08-24 | update changelog for update0.9.11.1 | Michael Vogt | |
2013-08-24 | Merge remote-tracking branch 'mvo/debian/sid' into debian/sid | Michael Vogt | |
2013-08-23 | dselect/update: remove "-f" option as its not being used in the context of ↵ | Michael Vogt | |
apt-get update | |||
2013-08-23 | ftparchive/override.cc: fix "skip empty lines" code, the pointer needs to ↵ | Michael Vogt | |
get de-referenced first | |||
2013-08-22 | Merge branch 'debian/sid' of ssh://git.debian.org/git/apt/apt into debian/sid | Michael Vogt | |
2013-08-22 | do chdir("/") after chroot() | Michael Vogt | |
2013-08-22 | Merge remote-tracking branch 'donkult/debian/sid' into debian/sid | Michael Vogt | |
2013-08-22 | apt-pkg:contrib Avoid compiler warning about sign-compare | Ángel Guzmán Maeso | |
The fix avoid the warning "comparison between signed and unsigned integer expressions [-Wsign-compare]"· The index for the loop needs to be unsigned for compare with globbuf.gl_pathc structure member | |||
2013-08-22 | Merge remote-tracking branch 'mvo/bugfix/coverity' into debian/sid | Michael Vogt | |
Conflicts: apt-pkg/tagfile.h | |||
2013-08-22 | Merge remote-tracking branch 'mvo/debian/sid' into debian/sid | Michael Vogt | |
2013-08-22 | fix compiler warning about sign-compare | Angel Guzman Maeso | |
This fix avoids the warning "comparison between signed and unsigned integer expressions [-Wsign-compare]". The index for the loop needs to be unsigned for compare with globbuf.gl_pathc structure member. | |||
2013-08-22 | add versions to manpages-it Replaces+Breaks | David Kalnischkies | |
In the meantime the package was updated to remove the old APT manpages from this package, so we can now add a Breaks and version it, too. The intial Replaces was added in: b57220d815aedbc023847d0885e08c6ed50e629a | |||
2013-08-22 | add a breaks libapt-inst for FileFd changes in 0.9.9 | David Kalnischkies | |
Partial upgrades… The fix for 704608 assumes that bf35c19b817cc1474b3deabce0b0953c248bad42 was applied to libapt-inst which isn't the case for partial upgrades of course, so break it to ensure that it is the case. Closes: 720449 | |||
2013-08-21 | prepare unstable upload0.9.11 | Michael Vogt | |
2013-08-19 | fix incorrect bugnumber for the Pre-Install-Pkgs hook (Closes: #671726) | Michael Vogt | |
2013-08-19 | add lintian override for no-shlibs-control-file and only install ↵ | Michael Vogt | |
libapt-private.so.* instead libapt-private.so | |||
2013-08-19 | Merge pull request #3 from cbaines/debian/sid | Michael Vogt | |
Add test for bug 507998 | |||
2013-08-19 | prepare for release | Michael Vogt | |
2013-08-17 | update changelog | Michael Vogt | |
2013-08-17 | Merge remote-tracking branch 'mvo/feature/apt-binary2' into debian/sid | Michael Vogt | |
Conflicts: cmdline/apt-get.cc | |||
2013-08-17 | Merge remote-tracking branch 'donkult/debian/sid' into debian/sid | Michael Vogt | |
2013-08-17 | Merge branch 'debian/sid' of git://git.debian.org/git/apt/apt into debian/sid | Christian PERRIER | |
2013-08-17 | French translation update. | Christian PERRIER | |
2013-08-16 | Add test for bug 507998 | Christopher Baines | |
2013-08-16 | allow Pre-Install-Pkgs hooks to get info over an FD != stdin | David Kalnischkies | |
This adds ::InfoFD option alongside the ::Version one to request sending the information to the specified FD, by default it is STDIN as it was the case before. The environment variable APT_HOOK_INFO_FD contains the FD the data is on as a confirmation that the APT version used understood the request. Allowing the hook to choose the FD is needed/helpful e.g. for shellscripts which have a hard time accessing FDs above 9 (as >= 10 are usually used internally by them) Closes: #671728 | |||
2013-08-15 | use malloc instead of new[] in pkgTagFile | David Kalnischkies | |
We don't need initialized memory for pkgTagFile, but more to the point we can use realloc this way which hides the bloody details of increasing the size of the buffer used. Git-Dch: Ignore | |||
2013-08-15 | ensure that pkgTagFile isn't writing past Buffer length | David Kalnischkies | |
In 91c4cc14d3654636edf997d23852f05ad3de4853 I removed the +256 from the pkgTagFile call parsing Release files as I couldn't find a mentioning of a reason for why and it was marked as XXX which suggested that at least someone else was suspicious. It turns out that it is indeed "documented", it just didn't found it at first but the changelog of apt 0.6.6 (29. Dec 2003) mentions: * Restore the ugly hack I removed from indexRecords::Load which set the pkgTagFile buffer size to (file size)+256. This is concealing a bug, but I can't fix it right now. This should fix the segfaults that folks are seeing with 0.6.[45]. The bug it is "hiding" is that if pkgTagFile works with a file which doesn't end in a double newline it will be adding it without checking if the Buffer is big enough to store them. Its also not a good idea to let the End pointer be past the end of our space, even if we don't access the data. Closes: 719629 | |||
2013-08-15 | set MALLOC_CHECK_ and MALLOC_PERTURB_ for testcases | David Kalnischkies | |
In bugreport deb:719629 Paul Wise mentions both to enable some malloc checks and as more testing can't hurt we enable both for all testcases. Git-Dch: Ignore | |||
2013-08-15 | rework the parameter creation for the Hashsum test | David Kalnischkies | |
Avoids having to different places from which test binaries are called Git-Dch: Ignore | |||
2013-08-15 | do not call make from libapt/run-tests if its called by make | David Kalnischkies | |
If we are called by make everything is build already and so this is just a noise nop we can just skip. (Noisy as it complains about being unable to communicate with the other makes to coordinate with the jobserver) Git-Dch: Ignore | |||
2013-08-15 | init the pkgTagFile with the size of the Release file | David Kalnischkies | |
Release files are basically one big Section, so we might safe some Resize circles by starting with the filesize. Git-Dch: Ignore | |||
2013-08-15 | add PACKAGE_MATCHER_ABI_COMPAT mode for now so that this branch can be ↵ | Michael Vogt | |
merged without breaking ABI | |||
2013-08-15 | * lp:~mvo/apt/add-glob-function: | Michael Vogt | |
- add Glob() to fileutl.{cc,h} Conflicts: apt-pkg/contrib/fileutl.h debian/changelog | |||
2013-08-15 | * lp:~mvo/apt/config-clear: | Michael Vogt | |
- support Configuration.Clear() for a clear of the entire configuration Conflicts: debian/changelog | |||
2013-08-15 | merge patch from Daniel Hartwig to Show a error message if {,dist-}upgrade ↵ | Michael Vogt | |
is used with additional arguments (closes: #705510) | |||
2013-08-15 | merge patch from Daniel Hartwig to Clarify units of Acquire::http::Dl-Limit ↵ | Michael Vogt | |
(closes: #705445) Conflicts: debian/changelog | |||
2013-08-15 | make destructors virtual | Michael Vogt | |
2013-08-12 | really build apt.install | Michael Vogt | |
2013-08-12 | install libapt-private* into the apt binary | Michael Vogt | |
2013-08-12 | Merge remote-tracking branch 'upstream/debian/sid' into feature/apt-binary2 | Michael Vogt | |
2013-08-12 | fix typo in the test for abi-compliance-checker | Michael Vogt | |