summaryrefslogtreecommitdiff
path: root/cmdline
AgeCommit message (Collapse)Author
2007-06-08* add "purge" commandline argument, closes: #133421)Michael Vogt
(thanks to Julien Danjou for the patch)
2007-05-02* updated from http://people.ubuntu.com/~mvo/bzr/apt/auto-mark/Michael Vogt
2007-05-02* merged with the apt--mvo branchMichael Vogt
2007-04-25* NMUMichael Vogt
* Fix broken use of awk in apt-key that caused removal of the wrong keys from the keyring. Closes: #412572
2007-03-14cmdline/apt-mark: fix chmod()/rename() orderingMichael Vogt
2007-03-14* apt-pkg/depcache.cc:Michael Vogt
- always chmod extended_states to 0644
2007-03-14* cmdline/apt-get.cc:Michael Vogt
- applied patch from Frode M. Døving to have APT::Get::HideAutoRemove
2007-03-14* cmdline/apt-get.cc:Michael Vogt
- 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
2007-03-14* cmdline/apt-get.cc:Michael Vogt
- apt-get install foo for a already installed package foo that is marked "auto" will clear the auto-flag
2007-03-13* cmdline/apt-get.cc:Michael Vogt
- fix show-versions output
2006-12-14* merged the apt-breaks-iwj branchMichael Vogt
* pulled in the other remaining ubuntu changes
2006-12-14* merged from the apt--auto-mark branchMichael Vogt
2006-10-02* merged from apt--auto-markMichael Vogt
2006-10-02* merged the "apt--install-task" branchMichael Vogt
2006-09-29* cmdline/apt-get.cc:Michael Vogt
- fix problem that AutomaticRemove can't be set permanently via preferences
2006-09-28* cmdline/apt-get.cc:Michael Vogt
- run TryToInstall() in a way that it won't automatically tries to fix the cache after each package but queue them all first
2006-09-19* cmdline/apt-get.cc:Michael Vogt
- changed syntax from "installtask" to "install taskname^" (the ^ <- makes it look for tasks)
2006-09-19* cmdline/apt-get.cc:Michael Vogt
- call regexp_free()
2006-09-19* cmdline/apt-get.cc:Michael Vogt
- install with FixBroken=true
2006-09-19* tasksupport (apt-get installtask lala) addedMichael Vogt
2006-09-16* reverted otavios patch again because it breaks the following behaviour:Michael Vogt
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.
2006-09-16* cmdline/apt-get.cc:Michael Vogt
- merged patch from otavio to make the order of package selections less important
2006-09-13* cmdline/apt-get.cc:Michael Vogt
- typo
2006-09-13* cmdline/apt-get.cc:Michael Vogt
- changed the behaviour of --no-remove and --auto-remove, if --no-remove is given, then that will turn off --auto-remove implicitely
2006-09-13* cmdline/apt-get.cc:Michael Vogt
- only error out if both "APT::Get::Autoremove" is set to true and "APT::Get::Remove" to false, in this case the the save options wins and apt will abort
2006-09-08* apt-pkg/algorithms.cc:Michael Vogt
- bugfix in the InstallProcted() code (preserver the auto-install information) * cmdline/makefile: - install apt-mark as well
2006-09-06* cmdline/apt-get.cc:Michael Vogt
- always show the autoremove information and give advice how to use it * debian/rules: - install apt.conf.autoremove with blacklist for linux-image and linux-restriceted-modules
2006-09-06* merged with the apt--mvo branchMichael Vogt
2006-08-25initial Breaks implementationIan Jackson
2006-08-15* merged the install-recommends branchMichael Vogt
2006-08-14* cmdline/apt-get.cc:Michael Vogt
- fix the "fix-policy" code * debian/changelog: - new version
2006-08-11* merged ddtp supportMichael Vogt
2006-08-11* merged the apt--install-recommends branchMichael Vogt
* ABI break, bumped the version number
2006-08-11* cmdline/apt-get.cc:Michael Vogt
- added "--fix-policy" option to make it easy to fix any not-install recommends * apt-pkg/depcache.{cc,h} - MarkInstall() has a new "ForceImportantDeps" option (defaults to false) to fice the install of recommends even for already installed pkgs - a new PolicyBroken() function to see how much of the recommends are broken
2006-08-10* merged the apt--install-recommends branchMichael Vogt
2006-08-09* merged with mainlineMichael Vogt
2006-08-09* cmdline/apt-get.cc:Michael Vogt
- added FIXME about the missing feature of or-group display in recommends/suggests display
2006-08-09* cmdline/apt-get.cc:Michael Vogt
- fixed for the suggets/recommends display
2006-08-09* cmdline/apt-get.cc:Michael Vogt
- added "{no-}install-recommends" option to apt-get * doc/examples/configure-index: - recommends/suggests option documented
2006-07-26* merged with auto-markMichael Vogt
2006-07-26* cmdline/apt-get.cc:Michael Vogt
- add a scope with a ActionGroup in DoInstall() to speed up the install of long package lists (e.g. pbuilder)
2006-07-25* merged with the current auto-mark branchMichael Vogt
2006-07-21* cmdline/apt-get.cc:Michael Vogt
- fix apt-get dselect-upgrade
2006-07-21* apt-pkg/depcache.cc:Michael Vogt
- close the outfile properly (thanks to kamion) * cmdline/apt-get.cc: - unbreak dselect-upgrade by adding a ActionGroup around it
2006-07-03* merged the debian--auto-mark patchMichael Vogt
* updated the library soname
2006-06-26* merged the auto-remove branchMichael Vogt
2006-06-26* cmdline/apt-mark:Michael Vogt
- very simple tool to manipulate the extended_states for autoinstall * apt-pkg/depcache.cc: - keep exisiting data in "extended_states" to make other tools happy
2006-06-26* merged with mainlineMichael Vogt
2006-06-07* apt-pkg/cachefile, cmdline/apt-get.cc:Michael Vogt
- move the code that does the work from apt-get.cc to pkgCacheFile::ListUpdate()
2006-05-02* depcache.cc:Michael Vogt
- added APT::Install-{Recommends,Suggests} global option * depcache.h: - added DepCache::State::InstPolicyBroken() to check if the current install state violates the policy (compated with InstBroken() that only checks for the minimal requirements)