summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add help for --rebuilt-binaries-timestamp.Zac Medico2010-05-271-1/+1
|
* Add --rebuilt-binaries-timestamp optionSebastian Luther2010-05-271-0/+7
| | | | | | | This option makes emerge ignore binaries that would have been used for --rebuilt-binaries, if they are older than the given timestamp. Binaries are only reinstalled if they have a newer BUILD_TIME than the installed package (not only unequal) with this option.
* Make --deselect work for sets (bug 268798)Sebastian Luther2010-05-271-1/+1
|
* Make --exclude use whitespace to separate atoms since atoms are typicallyZac Medico2010-05-041-1/+1
| | | | separated by whitespace.
* Add --exclude optionSebastian Luther2010-04-291-0/+5
|
* Bug #309699 - Update --emptytree docs. Thanks to Ben Kohler <bkohler@gmail.com>Zac Medico2010-03-161-4/+4
| | | | | | for wording suggestions. svn path=/main/trunk/; revision=15831
* Move --update from the actions to the options section.Zac Medico2010-03-081-7/+7
| | | | svn path=/main/trunk/; revision=15777
* Clean up/sync docs for emerge --sync, and add a note about PORTAGE_SYNC_STALE.Zac Medico2010-03-081-5/+20
| | | | svn path=/main/trunk/; revision=15776
* Escape hyphens.Zac Medico2010-03-081-1/+1
| | | | svn path=/main/trunk/; revision=15775
* Add a --quiet-unmerge-warn option to disable the warning message that's shownZac Medico2010-02-281-0/+6
| | | | | | | prior to --unmerge actions. Thanks to Thomas Sachau <tommy@gentoo.org> for the suggestion. svn path=/main/trunk/; revision=15486
* Enable --rebuilt-binaries automatically only when in --usepkgonly orZac Medico2010-02-221-1/+1
| | | | | | | | --getbinpkgonly mode, since --usepkgonly behaves better in cases when the portage tree is not exactly the same revision that was used to build the packages. svn path=/main/trunk/; revision=15427
* Only enable --rebuilt-binaries automatically if --update and --deep are alsoZac Medico2010-02-181-2/+3
| | | | | | enabled. svn path=/main/trunk/; revision=15372
* Add a --rebuilt-binaries[=n] option, causing automatic replacement ofZac Medico2010-02-181-0/+7
| | | | | | | | | | | | | installed packages with binary packages that have been rebuilt. Rebuilds are detected by comparison of BUILD_TIME package metadata. This option is enabled automatically when using binary packages, so rebuilt binaries are installed with a user's typical update command. This isn't possible with the existing @rebuild-binaries package set since that only works with --selective=n and therefore can't be used with a typical world update. The package set framework should support this type of behavior sometime in the future. svn path=/main/trunk/; revision=15364
* Bug #304793 - Update --newuse docs to indicate that this option also impliesZac Medico2010-02-131-2/+4
| | | | | | --selective. svn path=/main/trunk/; revision=15346
* Fix blocker example output to appear as emerge actually displays it.Zac Medico2010-01-081-1/+1
| | | | svn path=/main/trunk/; revision=15180
* Bug #291200 - Add a --quiet-build option to redirect all build output to logsZac Medico2009-11-061-0/+4
| | | | | | alone, and do not display it on stdout. svn path=/main/trunk/; revision=14783
* Add a --backtrack=COUNT option to control how many times backtracking isZac Medico2009-10-311-0/+5
| | | | | | allowed, and reduce the default from 30 to 5. svn path=/main/trunk/; revision=14763
* Take the -c option and make it mean --depclean instead of --clean, sinceZac Medico2009-10-261-2/+2
| | | | | | --clean is pretty useless anyway. svn path=/main/trunk/; revision=14731
* Add -R as a shortcut for --depclean. Thanks to Jonathan Callen <abcd@g.o> forZac Medico2009-10-261-1/+1
| | | | | | the suggestion. svn path=/main/trunk/; revision=14730
* Bug #134466 - Add a --ask-enter-invalid option. When used together with theZac Medico2009-10-241-1/+11
| | | | | | | --ask option, interpret a single "Enter" key press as invalid input. This helps prevent accidental acceptance of the first choice. svn path=/main/trunk/; revision=14710
* Add --help output for --unordered-display, and move man page docs from theZac Medico2009-10-231-6/+7
| | | | | | actions to the options section. svn path=/main/trunk/; revision=14708
* Add a --unordered-display option for use with --tree. This allows the displayZac Medico2009-10-231-0/+6
| | | | | | | to be optimized differently since the merge order is not preserved. Thanks to Sebastian Mingramm (few) for the initial patch. svn path=/main/trunk/; revision=14703
* Add a --use-ebuild-visibility option, for using unbuilt ebuild metadataZac Medico2009-10-181-0/+4
| | | | | | | in visibility checks for built ebuilds. Thanks to Sebastian Mingramm (few) for reporting the problem and testing the patch. svn path=/main/trunk/; revision=14665
* Bug #287869 - Add a --selective[=n] option (inverse of --oneshot). This isZac Medico2009-10-161-0/+6
| | | | | | | useful if you want to use EMERGE_DEFAULT_OPTS to make --oneshot behavior default. svn path=/main/trunk/; revision=14615
* Bug #266454 - Make @world an all-inclusive set once again, like it was priorZac Medico2009-10-161-7/+10
| | | | | | | | to portage-2.2_rc* releases. In addition to @system, @world now includes a @selected set which represents user-selected "world" packages and sets that saved in /var/lib/portage/world{,sets}. svn path=/main/trunk/; revision=14614
* Document 'backtracking' in the MASKED PACKAGES section.Zac Medico2009-10-101-0/+7
| | | | svn path=/main/trunk/; revision=14557
* Add --changed-use as an alias for --reinstall=changed-use. Thanks toZac Medico2009-10-091-0/+3
| | | | | | Jeremy Olexa <darkside@g.o> for the suggestion. svn path=/main/trunk/; revision=14533
* Bug #287950 - Add a --fail-clean[=n] option, for enabling or disablingZac Medico2009-10-081-0/+7
| | | | | | FEATURES=fail-clean from the command line. svn path=/main/trunk/; revision=14518
* Bug #265267 - Add hint about --accept-properties=-interactive in theZac Medico2009-10-061-1/+4
| | | | | | --jobs docs. svn path=/main/trunk/; revision=14508
* Bug #287870 - Add -r option as short version of --resume.Zac Medico2009-10-061-1/+1
| | | | svn path=/main/trunk/; revision=14504
* Add a new --accept-properties option so that users can temporarily overrideZac Medico2009-10-061-1/+16
| | | | | | | | | | | ACCEPT_PROPERTIES on the commandline, without relying on emerge's legacy behavior of allowing variables to leak in from the calling environment. A typical usage example for this option would be to use --accept-properties=-interactive to temporarily mask interactive packages. With default configuration, this would result in an effective ACCEPT_PROPERTIES value of "* -interactive". svn path=/main/trunk/; revision=14501
* Document ACCEPT_PROPERTIES and package.properties.Zac Medico2009-09-061-0/+8
| | | | svn path=/main/trunk/; revision=14206
* Document ACCEPT_LICENSE and package.license.Zac Medico2009-09-061-0/+8
| | | | svn path=/main/trunk/; revision=14205
* Add support for --keep-going=n so that it can be disabled on the command lineZac Medico2009-08-211-1/+1
| | | | | | after it's been enabled in EMERGE_DEFAULT_OPTS. svn path=/main/trunk/; revision=14121
* Add support for --selective=n, so it can be used to remove selectiveZac Medico2009-08-211-1/+4
| | | | | | behavior that may have been implied by some other option like --update. svn path=/main/trunk/; revision=14120
* Add support for --usepkg=n so that it's possible to disable it onZac Medico2009-08-011-4/+4
| | | | | | | the command line after it's been enabled in EMERGE_DEFAULT_OPTS. Also do the same for --usepkgonly, --getbinpkg, and --getbinpkgonly. svn path=/main/trunk/; revision=13873
* Add support for --complete-graph=n so that it's possible to disable it onZac Medico2009-08-011-1/+1
| | | | | | the command line after it's been enabled in EMERGE_DEFAULT_OPTS. svn path=/main/trunk/; revision=13872
* Allow --deep to take an optional integer parameter, to specify how deep itZac Medico2009-07-091-3/+3
| | | | | | | should go. Also make --update so it no longer implies the equivalent of --deep=1. To get the old --update behavior, use --update --deep=1. svn path=/main/trunk/; revision=13812
* Document the --selective option.Zac Medico2009-07-081-0/+4
| | | | svn path=/main/trunk/; revision=13807
* Bug #276866 - --binpkg-respect-use < y | n >Zac Medico2009-07-071-0/+4
| | | | | | | | | Tells emerge to ignore binary packages if their use flags don't match the current configuration. (default: ´n´) Thanks to Sebastian Mingramm (few) <s.mingramm@gmx.de> for this patch (small tweaks by me). svn path=/main/trunk/; revision=13802
* Correct --help usage since it no longer takes system, world, or --sync asZac Medico2009-07-041-1/+1
| | | | | | input. Thanks to Marat Radchenko <slonopotamusorama@gmail.com> for this patch. svn path=/main/trunk/; revision=13778
* Remove the --avoid-update option and make it the default behavior whenZac Medico2009-07-041-12/+0
| | | | | | | --update is not specified, as suggested by Allen Brooker (AllenJB) <gentoo-bugs@allenjb.me.uk> in bug #275945, comment #2. svn path=/main/trunk/; revision=13772
* Bug #275945 - Add a new --avoid-update which tries to avoid updating packagesZac Medico2009-06-301-0/+12
| | | | | | | which possible. Thanks to Sebastian Mingramm (few) <s.mingramm@gmx.de> for this patch. svn path=/main/trunk/; revision=13745
* Add a new --deselect action which removes atoms from the world file. ThisZac Medico2009-04-191-0/+7
| | | | | | | | action is implied by uninstall actions, including --depclean, --prune and --unmerge. Use --deselect=n in order to prevent uninstall actions from removing atoms from the world file. This solves bug #259994 and bug #265206. svn path=/main/trunk/; revision=13363
* Add a note about egencache to the --regen docs.Zac Medico2009-04-121-1/+2
| | | | svn path=/main/trunk/; revision=13330
* Clarify docs for --root-deps.Zac Medico2009-04-011-1/+2
| | | | svn path=/main/trunk/; revision=13268
* Combine the --rdeps-only and --root-deps options into a single --root-depsZac Medico2009-04-011-12/+8
| | | | | | option which takes an optional 'rdeps' argument. svn path=/main/trunk/; revision=13267
* Add a --root option that sets $ROOT (complements the --config-root option).Zac Medico2009-03-291-1/+5
| | | | svn path=/main/trunk/; revision=13246
* Add support for --rdeps-only and --root-deps options which are useful inZac Medico2009-03-291-0/+14
| | | | | | | combination with $ROOT. Thanks to Ned Ludd <solar@g.o> for the initial patch. svn path=/main/trunk/; revision=13245
* Note that --noreplace takes precedence over options such as --newuse.Zac Medico2009-03-241-1/+4
| | | | svn path=/main/trunk/; revision=13179