summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/help.py
Commit message (Collapse)AuthorAgeFilesLines
* 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/+6
| | | | svn path=/main/trunk/; revision=13807
* Bug #276866 - --binpkg-respect-use < y | n >Zac Medico2009-07-071-0/+7
| | | | | | | | | 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=13777
* Remove the --avoid-update option and make it the default behavior whenZac Medico2009-07-041-11/+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
* Make --help into an action, and move --help --sync output to theZac Medico2009-07-031-20/+17
| | | | | | | actions section. Thanks to Marat Radchenko <slonopotamusorama@gmail.com> for this patch. svn path=/main/trunk/; revision=13766
* Bug #275945 - Add a new --avoid-update which tries to avoid updating packagesZac Medico2009-06-301-0/+11
| | | | | | | which possible. Thanks to Sebastian Mingramm (few) <s.mingramm@gmx.de> for this patch. svn path=/main/trunk/; revision=13745
* Add/update copyright headers.Zac Medico2009-06-251-1/+1
| | | | svn path=/main/trunk/; revision=13690
* Bug #275047 - Split _emerge/__init__.py into smaller pieces. Thanks toZac Medico2009-06-221-2/+0
| | | | | | Sebastian Mingramm (few) <s.mingramm@gmx.de> for this patch. svn path=/main/trunk/; revision=13663
* Add a new --deselect action which removes atoms from the world file. ThisZac Medico2009-04-191-0/+12
| | | | | | | | 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-14/+8
| | | | | | option which takes an optional 'rdeps' argument. svn path=/main/trunk/; revision=13267
* Document --root and --config-root.Zac Medico2009-03-291-0/+12
| | | | svn path=/main/trunk/; revision=13247
* Add support for --rdeps-only and --root-deps options which are useful inZac Medico2009-03-291-0/+18
| | | | | | | 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-0/+6
| | | | svn path=/main/trunk/; revision=13180
* Bug #252562 - Show --onlydeps in short --help output.Zac Medico2008-12-261-1/+2
| | | | svn path=/main/trunk/; revision=12351
* Remove world and system targets for emerge --help since it no longer works ↵Zac Medico2008-11-251-29/+0
| | | | | | | | now that they are sets rather than actions. svn path=/main/trunk/; revision=12086
* In the --depclean docs, there's no need to advise the user to use --oneshotZac Medico2008-09-271-1/+1
| | | | | | | when updating @system @world since @system now has world-candidate set to False by default. svn path=/main/trunk/; revision=11564
* Add a new --list-sets action, as requested by jmbsvicetto.v2.2_rc9Zac Medico2008-09-211-1/+7
| | | | svn path=/main/trunk/; revision=11531
* Bug #233421 - Fix grammar, missing "be" in --update description. Thanks toZac Medico2008-07-301-2/+2
| | | | | | Mikael Magnusson for this patch. svn path=/main/trunk/; revision=11288
* Add support for the --jobs option to be specified without anZac Medico2008-07-291-3/+6
| | | | | | | | | | | | | | argument, and also support -j as a short option. Since optparse doesn't natively support options with non-required args, create an insert_optional_args() function that inserts the required argument into the args so that optparse is happy. The function inserts the string True as a substitute for the argument that is required. This string is later converted to the True constant when stored in the emerge opts dict (similar to how normal boolean options are stored). The PollScheduler and SequentialTaskQueue classes recognize the meaning of the True constant to mean unlimited concurrent jobs. svn path=/main/trunk/; revision=11261
* Update --depclean and --prune, removing warnings about libraries since thoseZac Medico2008-07-221-27/+35
| | | | | | are now automatically accounted for. svn path=/main/trunk/; revision=11168
* Add some cross references between emerge's new parallel build options andZac Medico2008-07-151-1/+8
| | | | | | MAKEOPTS. svn path=/main/trunk/; revision=11063
* Document the new --jobs and --load-average options for parallelization.Zac Medico2008-07-111-4/+24
| | | | svn path=/main/trunk/; revision=11014
* Add documentation for the new --keep-going option.Zac Medico2008-06-271-7/+24
| | | | svn path=/main/trunk/; revision=10818
* Document the new emerge <file> feature.Zac Medico2008-06-201-1/+1
| | | | svn path=/main/trunk/; revision=10732
* Update --depclean and package.provided docs to indicate interactionZac Medico2008-06-031-16/+31
| | | | | | between them. svn path=/main/trunk/; revision=10563
* Swap --nospinner and --oneshot for alphabetical ordering.Zac Medico2008-04-211-1/+1
| | | | svn path=/main/trunk/; revision=9941
* Bug #218439 - Improve alignment in short emerge --help options output.Zac Medico2008-04-211-5/+6
| | | | svn path=/main/trunk/; revision=9940
* Rename the undocumented --conistent option to --complete-graph and addZac Medico2008-04-111-1/+14
| | | | | | some docs. svn path=/main/trunk/; revision=9846
* Bug #196435 - Add some more references to quickpkg(1) sinceZac Medico2007-10-191-5/+15
| | | | | | sometimes people don't realize that it exists. svn path=/main/trunk/; revision=8185
* Move the emerge module to _emerge to make it privateZac Medico2007-10-161-0/+394
since it's mostly unsuitable for api consumers at this time. svn path=/main/trunk/; revision=8142