summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add support for "apt-cache showsrc --only-source srcpkgname"Michael Vogt2015-08-185-5/+48
| | | | | Thanks: Steve Slangasek for the suggestion Closes: 695633
* Provide "apt-get full-upgrade" to match "apt full-upgrade"Michael Vogt2015-08-181-0/+1
|
* releasing package apt version 1.1~exp9Michael Vogt2015-08-182-1/+283
|
* Do not fail if building test/ fails (issues with parallel builds)Michael Vogt2015-08-181-1/+2
| | | | Git-Dch: ignore
* Fix the test suite harderJulian Andres Klode2015-08-171-3/+3
| | | | Gbp-Dch: ignore
* Fix the test suite againJulian Andres Klode2015-08-1732-118/+118
| | | | Gbp-Dch: ignore
* Re-add support for G++ 4.8 and configure travis to use itJulian Andres Klode2015-08-175-8/+10
| | | | | | This makes tests work again! Gbp-Dch: ignore
* Really fix all iwyu issuesMichael Vogt2015-08-171-0/+1
| | | | Git-Dch: ignore
* debian/NEWS: Mention new pinning algorithm added in 2.0~exp1Julian Andres Klode2015-08-171-0/+12
|
* Fix all the wrong removals of includes that iwyu got wrongMichael Vogt2015-08-1710-0/+16
| | | | Git-Dch: ignore
* Cleanup includes after running iwyuMichael Vogt2015-08-1728-70/+3
|
* Do not crash in 'apt show' for non-installed packagesJulian Andres Klode2015-08-171-1/+1
| | | | | | | For a non-installed package, manual_installed was set to the null pointer. This was passed to Tag::Rewrite, which expects an string (empty for null-type values) and the conversion from null pointer to string does not work correctly.
* Replace "extra" in "the following extra packages [...]" by "additional"Julian Andres Klode2015-08-161-1/+1
| | | | | | | This breaks the translation for no big gain, but we broke enough strings already for that to not really matter anymore. Closes: #82430
* Make pkgCache::Priority() static, it does not need the instanceJulian Andres Klode2015-08-161-1/+1
| | | | | | It still compiles after the change, so just merge it. Closes: #448627
* install: If package already is the newest version, display versionJulian Andres Klode2015-08-161-2/+3
| | | | | | Also do it unconditionally, as it does not hurt. Closes: #315149
* Use terminfo's typical save_cursor/restore_cursor sequencesJames McCoy2015-08-161-4/+4
| | | | | | | | Not all terminals understand DOS' escape sequences for save/restore cursor, so use the more typical sequences from terminfo. Closes: #772521 Signed-off-by: James McCoy <jamessan@debian.org>
* Show full package records in apt-cache search -fKusanagi Kouichi2015-08-161-7/+4
| | | | | | | | | This just changes the DoSearch code to use DisplayRecord to display the record when the full record is requested. Closes: #660851 [jak@debian.org: Wrote the commit message]
* When looking if Provides match, OR them with the normal patchesJulian Andres Klode2015-08-161-1/+1
| | | | | | | Simply overriding the value caused patterns that previously matched a real package name to not match anymore. Closes: #760868
* Document the general effect of the comma operatorJulian Andres Klode2015-08-151-0/+5
| | | | Closes: #574939
* Add GetPriority(VerIterator) to pkgDepCache::PolicyJulian Andres Klode2015-08-154-3/+6
| | | | | | | Also unify the case of considerFiles and ConsiderFiles to be ConsiderFiles in all cases. Gbp-Dch: ignore
* cachefile.cc: Do not ignore return value of pkgDepCache::Init()Julian Andres Klode2015-08-151-2/+1
| | | | | | | Currently, this always returns true, but it might start returning false at some point in the future... Gbp-Dch: ignore
* update: Check if the cache could be opened, don't just assume itJulian Andres Klode2015-08-151-1/+2
| | | | | | | | | | This seems to cause Bug#756162, as in that case the depcache was NULL. I'm not entirely sure how that happens, but it's better to be check here rather then crash later on. Closes: #756162
* doc/files.dbk: Improve documentation for {src,}pkgcache.binJulian Andres Klode2015-08-141-3/+3
| | | | | | This should be enough for most persons. Closes: #465551
* apt-get: allow non-root --print-uris build-depJulian Andres Klode2015-08-141-1/+3
| | | | Closes: #283400
* add {contrib,non-free}/{metapackages,oldlibs} to section specialhandlingDavid Kalnischkies2015-08-141-0/+4
| | | | Closes: 788320
* apt-cache(8): Drop the #versions >= #package names comparisonJulian Andres Klode2015-08-141-2/+1
| | | | Closes: #691281
* Also add 'in combination with the other options.' to another errorJulian Andres Klode2015-08-141-1/+1
| | | | Gbp-Dch: ignore
* Set Acquire::Changelogs::URI::Origin::Tanglu for Tanglu changelogsJulian Andres Klode2015-08-141-0/+1
|
* debian/control: Remove XS- from Testsuite and bump Standards-VersionJulian Andres Klode2015-08-141-2/+2
| | | | Thanks: Lintian
* debian/control: Drop the versioned python-apt conflictJulian Andres Klode2015-08-141-1/+0
| | | | Thanks: Lintian
* debian/control: Replace debian by DebianJulian Andres Klode2015-08-141-1/+1
| | | | Thanks: Lintian
* changelog: Replace reenable by re-enable everywhereJulian Andres Klode2015-08-141-5/+5
| | | | Thanks: Lintian
* apt: Add autoremove and auto-remove commandsJulian Andres Klode2015-08-142-0/+8
|
* Make apt compile with clang++ againMichael Vogt2015-08-143-3/+3
| | | | | This allows us to run the clang static analyzer and to run the testsuite with the clang MemorySanitizer.
* Make auto-remove and auto-clean aliases for the versions without -Julian Andres Klode2015-08-144-5/+8
| | | | | | | | Some people type them instead of autoremove and autoclean, so make them happy. Closes: #274159 Makes-Happy: Ansgar
* apt_preferences(5): Mention overlapping of pin matchesJulian Andres Klode2015-08-141-0/+3
|
* apt_preferences(5): Correct default pin assignment documentationJulian Andres Klode2015-08-141-2/+2
| | | | | | | This was broken, as higher pins were also assigned to versions that are installed. Closes: #623706
* apt-cache(8): Mention that --names-only search providesJulian Andres Klode2015-08-141-2/+2
| | | | Closes: #618017
* apt-cache: Show an error if stats gets any argumentsJulian Andres Klode2015-08-141-1/+6
| | | | Closes: #153161
* Say "in combination with the other options" if an option is not understoodJulian Andres Klode2015-08-141-3/+3
| | | | Closes: #762758
* Mention that source order only matter per versionJulian Andres Klode2015-08-141-1/+1
| | | | Closes: #617445
* Replace UINT_MAX with std::numeric_limits<unsigned int>::max()Julian Andres Klode2015-08-141-2/+3
| | | | Gbp-Dch: ignore
* Add integration test for Pin-Priority range checksJulian Andres Klode2015-08-141-0/+60
| | | | Gbp-Dch: ignore
* Replace --force-yes by various options starting with --allowJulian Andres Klode2015-08-1411-25/+167
| | | | This enables more fine grained control over such exceptions.
* Merge branch 'debian/experimental' of https://github.com/DonKult/apt into ↵Julian Andres Klode2015-08-1457-95/+154
|\ | | | | | | debian/experimental
| * use a=experimental instead n=experimental in pin documentationJohannes Schauer2015-08-1210-17/+17
| | | | | | | | Closes: 783343
| * document APT::Periodic::RandomSleepTomas Pospisek2015-08-121-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The documentation in the patch is from https://help.ubuntu.com/community/AutomaticSecurityUpdates That page is licensed under Creative Commons Attribution-ShareAlike 3.0. Because I'm unsure how that license meshes with apt's license I've not copied the text but formulated the same information freely in my own words. The original text was contributed by Chris Bainbridge [1][3] and Kees Cook [2]. Thanks to them. [1] https://help.ubuntu.com/community/AutomaticSecurityUpdates?action=diff&rev1=40&rev2=41 [2] https://help.ubuntu.com/community/AutomaticSecurityUpdates?action=diff&rev1=38&rev2=39 [3] https://help.ubuntu.com/community/AutomaticSecurityUpdates?action=diff&rev1=37&rev2=38 Closes: 776380 Thanks: Chris Bainbridge and Kees Cook for initial text
| * Do not set unhonored DPKG_NO_TSTP variable for dpkgGuillem Jover2015-08-122-12/+1
| | | | | | | | | | | | | | Support for that variable was removed in dpkg in 1.15.6, in commit 6f037003e8b96878b485efb7cbd1f846e3bf4e97. Closes: #765366
| * document VERSION 2 (and 3) pre-install-pkgs hook interfaceJonathan Nieder2015-08-121-4/+28
| | | | | | | | | | | | | | [Commiter: Patch adapted to apply to current version of the manpage and added/moved a few words about Version 3 to make it fit better] Closes: 627188
| * Replace all "press enter" occurrences with "press [Enter]"Luca Bruno2015-08-127-14/+14
| | | | | | | | | | Thanks: Andre Felipe Machado for initial patch Closes: 414848