Age | Commit message (Collapse) | Author |
|
patch to add 'purge' command line argument (closes: #133421).
|
|
|
|
statement of apt-get (closes: #445468).
|
|
|
|
* fix missing SetExecClose() call when the status-fd is used
* debian/apt.cron.daily:
- move unattended-upgrade before apt-get autoclean
* fix "purge" commandline argument, closes: #133421
(thanks to Julien Danjou for the patch)
* cmdline/apt-get.cc:
- do not change the auto-installed information if a package
is reinstalled
* apt-pkg/acquire-item.cc:
- fix crash in diff acquire code
* cmdline/apt-mark:
- Fix chmoding after have renamed the extended-states file (LP: #140019)
(thanks to Laurent Bigonville)
* apt-pkg/contrib/mmap.cc:
- don't fail if msync() returns > 0
|
|
- Fix chmoding after have renamed the extended-states file (LP: #140019)
(thanks to Laurent Bigonville)
|
|
- do not change the auto-installed information if a package
is reinstalled
|
|
(thanks to Julien Danjou for the patch)
|
|
C. Litzenberger" <dlitz@dlitz.net> for the patch (closes: #441942)
|
|
* merged apt--sha256 branch to fully support the new
sha256 checksums in the Packages and Release files
(ABI break)
|
|
- merged dpkg-log branch, this lets you specify a
Dir::Log::Terminal file to log dpkg output to
ABI break
|
|
directory downloading on non-linux architectures (closes: #435597)
|
|
and fallback
|
|
(thanks to Matt Zimmerman reporting this problem)
|
|
Colin Watson)
|
|
- fix in the task-install code
|
|
|
|
- improve taskinstall regexp
|
|
- fix InstallTask code when a pkgRecord ends
with a single '\n' (thanks to Soren Hansen for reporting)
|
|
|
|
|
|
- revert task-install feature
- show auto-removal information
|
|
- merged from apt--tasks
|
|
as possible to apt--mvo again
|
|
(thanks to Julien Danjou for the patch)
* fix FTBFS with gcc 4.3, closes: #417090
(thanks to Martin Michlmayr for the patch)
* add --dsc-only option, thanks to K. Richard Pixley
|
|
|
|
(thanks to Martin Michlmayr for the patch)
|
|
(thanks to Israel G. Lugo for the patch)
* add "purge" commandline argument, closes: #133421)
(thanks to Julien Danjou for the patch)
|
|
(thanks to Julien Danjou for the patch)
|
|
|
|
|
|
* Fix broken use of awk in apt-key that caused removal of the wrong keys
from the keyring. Closes: #412572
|
|
|
|
- always chmod extended_states to 0644
|
|
- applied patch from Frode M. Døving to have APT::Get::HideAutoRemove
|
|
- do not clean the auto-flag in "remove" mode (e.g. apt-get remove already-installed-pkg)
- only show packages in the auto-remove list that are not already marked for removal
|
|
- apt-get install foo
for a already installed package foo that is marked "auto" will clear
the auto-flag
|
|
- fix show-versions output
|
|
* pulled in the other remaining ubuntu changes
|
|
|
|
|
|
|
|
- fix problem that AutomaticRemove can't be set permanently via preferences
|
|
- run TryToInstall() in a way that it won't automatically tries to
fix the cache after each package but queue them all first
|
|
- changed syntax from "installtask" to "install taskname^"
(the ^ <- makes it look for tasks)
|
|
- call regexp_free()
|
|
- install with FixBroken=true
|
|
|
|
A depends on X|Y
B depends on Y
With the old code we get:
"apt-get install A B": we get "A B X Y"
"apt-get install B A": we get "A B Y"
With the new code there is no way to get this right and we always end
up with "A B X Y" because we just go over the packages in the order
that they are in the cache and run MarkInstall(AutoInstall=true) on
them then. When A comes before B we always end up with the unneeded X
dependency.
|
|
- merged patch from otavio to make the order of package selections less important
|