Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-03-13 | support DEB_BUILD_PROFILES and -P for build profiles | David Kalnischkies | |
Inspired by the rest of the patch in 661537, but abstract the parsing of various ways of setting the build profiles more so it can potentially be reused and all apt parts have the same behaviour. Especially config options, cmdline options and environment will not be combined as proposed as this isn't APTs usual behaviour and dpkg doesn't do it either, so one overrides the other as it normally does. | |||
2014-02-27 | initial version of apt-helper | Michael Vogt | |
2014-02-22 | Add support for data.tar, control.tar and control.tar.xz | Guillem Jover | |
Sync the deb(5) format support with latest dpkg, by allowing uncompressed tar members and xz compressed control.tar. This also refactors the control.tar member extraction by using ExtractTarMember(), which also means future changes only need to be implemented in a single place. | |||
2014-02-22 | Fix typos in documentation (codespell) | Michael Vogt | |
2014-02-22 | remove auto-generated apt-key and sources.list on clean (closes: 739749) | Michael Vogt | |
2014-02-13 | trivial indent fix | Michael Vogt | |
2014-02-12 | Merge remote-tracking branch 'mvo/debian/sid' into debian/sid | Michael Vogt | |
Conflicts: test/integration/test-apt-get-download | |||
2014-02-12 | Use a APT::VersionSet instead of a VersionList | Michael Vogt | |
Use a APT::VersionSet instead of a APT::VersionList in DoDownload() to ensure that there is only one version in the set even if the user passes multiple identical name/versions on the commandline (Bug#738103) | |||
2014-02-12 | apt-cdrom should succeed if any drive succeeds | John Ogness | |
If there are multiple CD-ROM drives, `apt-cdrom add` will abort with an error if any of the drives do not contain a Debian CD which is against the documentation we have saying "a CD-ROM" and also scripts do not expect it this way. This patch modifies apt-cdrom to return success if any of the drives succeeded. If failures occur, apt-cdrom will still continue trying all the drives and report the last failure (if none of them succeeded). The 'ident' command was also changed to match the new 'add' behavior. Closes: 728153 | |||
2014-02-10 | use VersionSet in download to handle repeats | David Kalnischkies | |
Closes: 738103 | |||
2014-02-05 | move isatty() check into InitOutput() | Michael Vogt | |
2014-01-29 | fix apt-get download truncation (closes: #736962) | Michael Vogt | |
2014-01-26 | Merge remote-tracking branch 'donkult/debian/sid' into debian/sid | Michael Vogt | |
Conflicts: apt-private/private-list.cc doc/po/de.po test/integration/framework | |||
2014-01-24 | apt-mark help shows all commands now | Michael Vogt | |
2014-01-24 | add "apt full-upgrade" and tweak "apt upgrade" | Michael Vogt | |
There is a new "apt full-upgrade" that performs a apt-get dist-upgrade. "apt dist-upgrade" is still supported as a alias. The "apt upgrade" code is changed so that it mirrors the behavior of "apt-get upgrade --with-new-pkgs" and also honors "apt uprade --no-new-pkgs". | |||
2014-01-22 | add test for apt show | Michael Vogt | |
2014-01-17 | add purge to the apt cmdline | Michael Vogt | |
2014-01-17 | add missing integration test for "apt list" | Michael Vogt | |
2014-01-17 | reword !isatty() warning | Michael Vogt | |
2014-01-17 | add apt upgrade --dist | Michael Vogt | |
2014-01-16 | use gpg --homedir instead of explicit file placement | David Kalnischkies | |
Avoids that gpg gets the idea it could use files from the user which weren't overridden specifically like secret keyring and trustdb as before. | |||
2013-12-27 | Merge branch 'feature/test-apt-key-net-update' into debian/sid | Michael Vogt | |
2013-12-22 | factor GetTempDir out | Michael Vogt | |
2013-12-19 | fix apt-key net-update test to use the buildin webserver | Michael Vogt | |
2013-12-13 | make apt-key net-update actually testable | Michael Vogt | |
2013-12-12 | Merge remote-tracking branch 'mvo/bugfix/conffile' into debian/sid | Michael Vogt | |
2013-12-12 | clarify error message when apt-get source=ver fails, print a real error ↵ | Michael Vogt | |
message instead of "ignoring" | |||
2013-12-11 | improve error message | Michael Vogt | |
2013-12-11 | improve error message for apt-get source pkg:arch{=ver,/release} | Michael Vogt | |
2013-12-11 | add support for "apt-get source pkg:arch" | Michael Vogt | |
2013-12-10 | user-requested version tag gets precedence in apt-get source -t dist ↵ | Michael Vogt | |
pkg=version requests | |||
2013-12-10 | fix typo | Michael Vogt | |
2013-12-10 | if there is only deb-src pick higest version in deb-src release matching | Michael Vogt | |
2013-12-05 | * enable release based selection for deb-src (closes: 731102) | Michael Vogt | |
2013-12-01 | generate apt-key script with vendor info about keys | David Kalnischkies | |
The apt-key script uses quiet a few keyring files for operation which are specific to the distribution it is build on and is hence one of the most patched parts – even if it is not that often used anymore now that a fragment directory for trusted.gpg exists. | |||
2013-12-01 | cherry-pick ubuntus (disabled) net-update fixes | David Kalnischkies | |
With the net-update command a special keyring can be downloaded and imported into apt, which must be signed by a master key. Its is currently disabled because of security problems with it – and the only known user before that was Ubuntu. | |||
2013-11-28 | move EditSources into its own file | Michael Vogt | |
2013-11-26 | add check when sources.list changed | Michael Vogt | |
2013-11-26 | add syntax check for sources.list | Michael Vogt | |
2013-11-25 | add basic "edit-sources" command | Michael Vogt | |
2013-10-22 | Merge remote-tracking branch 'mvo/feature/upgrade-api' into debian/sid | Michael Vogt | |
2013-10-08 | Merge remote-tracking branch 'mvo/feature/upgrade-with-new' into debian/sid | Michael Vogt | |
2013-10-05 | rename FORBID_NEW_INSTALL_PACKAGES to FORBID_INSTALL_NEW_PACKAGES | Michael Vogt | |
2013-10-05 | * move upgrade releated code into upgrade.{cc,h} | Michael Vogt | |
The upgrade releated code is moved into upgrade.{cc,h} and all pkg*Upgrade* prototypes are included in algorihms.h to avoid breaking API (unless build with APT_9_CLEANER_HEADERS). | |||
2013-10-05 | cleanup upgrade API some more (thanks for the feedback from David) | Michael Vogt | |
2013-10-03 | use pkgAcqArchive in 'download' for proper errors | David Kalnischkies | |
With a bit of trickery we can reuse the usual infrastructure we have in place to acquire deb files for the 'download' operation as well, which gains us authentification check & display, error messages, correct filenames and "downloads" from the root-owned archives. | |||
2013-10-03 | put fetch errors in 'source' on our errorstack | David Kalnischkies | |
refactor the fetching process so that it looks more like the others we have in the hope that we can reuse code in the future. This is a soft interface change as 'source' previously printed errors directly on stderr, while it will now push it onto our usual error stack. | |||
2013-09-03 | fix vim-style foldmarker | David Kalnischkies | |
Git-Dch: Ignore | |||
2013-08-28 | Merge remote-tracking branch 'upstream/debian/sid' into feature/upgrade-with-new | Michael Vogt | |
2013-08-28 | add man-page, improve option, use --with-new-pkgs as the flag | Michael Vogt | |