summaryrefslogtreecommitdiffstats
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
* If necessary, resample the leaf nodes so that they include all nodes whose ↵Zac Medico2007-07-011-0/+6
| | | | | | hard deps are satisfied. (trunk r7116) svn path=/main/branches/2.1.2/; revision=7117
* Revert --buildpkgonly logic back because it was already correct. (trunk r7110)Zac Medico2007-07-011-2/+2
| | | | svn path=/main/branches/2.1.2/; revision=7111
* Update --buildpkgonly logic to account for DepPriority.MEDIUM_SOFT. (trunk ↵Zac Medico2007-07-011-2/+2
| | | | | | r7108) svn path=/main/branches/2.1.2/; revision=7109
* Add medium-soft support to DepPriority.__str__(). (trunk r7106)Zac Medico2007-07-011-1/+3
| | | | svn path=/main/branches/2.1.2/; revision=7107
* For bug #180045, try to merge PDEPEND as soon as possible so that it behaves ↵Zac Medico2007-07-011-16/+45
| | | | | | more like RDEPEND. (trunk r7104) svn path=/main/branches/2.1.2/; revision=7105
* Add a QA warning for invalid values of RESTRICT. Thanks to peper for the ↵Zac Medico2007-06-301-0/+12
| | | | | | patch. (trunk r7102) svn path=/main/branches/2.1.2/; revision=7103
* For bug #183639, give a more informative message with the package.provided ↵Zac Medico2007-06-291-4/+26
| | | | | | warning. (trunk r7091) svn path=/main/branches/2.1.2/; revision=7092
* Fix typo. (trunk r7083)Zac Medico2007-06-281-4/+4
| | | | svn path=/main/branches/2.1.2/; revision=7084
* Remove unused worldlist variable. (trunk r7078)Zac Medico2007-06-281-1/+0
| | | | svn path=/main/branches/2.1.2/; revision=7079
* For bug #142473, add 2 additional color classes for system packages and ↵Zac Medico2007-06-281-12/+61
| | | | | | packages matched by arguments. (trunk r7074:7076) svn path=/main/branches/2.1.2/; revision=7077
* When filling in "nomerge" nodes for --tree display, stop at a node that is ↵Zac Medico2007-06-281-1/+6
| | | | | | an argument or a direct member of a set that has been specified as an argument (system or world). (trunk r7071) svn path=/main/branches/2.1.2/; revision=7072
* For bug #144333, make the --reinstall option a single choice type. (trunk r7069)Zac Medico2007-06-281-2/+4
| | | | svn path=/main/branches/2.1.2/; revision=7070
* Discard "nomerge" nodes to speed up depgraph.altlist() since those nodes ↵Zac Medico2007-06-281-0/+3
| | | | | | aren't used and the --tree algorithm does a good job of regenerating them when appropriate. (trunk r7067) svn path=/main/branches/2.1.2/; revision=7068
* - Improve tracking of correspondence between arguments and packages in the ↵Zac Medico2007-06-281-20/+54
| | | | | | | | | depgraph. (trunk r7063) - Cache aux_get() metadata in depgraph.create() and use PROVIDE for matching packages to arguments. (trunk r7064) - Just use a containment test for matching pprovided args since it works correctly and match_to_list() isn't appropriate for this. (trunk r7065) svn path=/main/branches/2.1.2/; revision=7066
* Instead of just a list, use a cat/pkg dict for matching packages against ↵Zac Medico2007-06-271-6/+12
| | | | | | args in the depgraph. (trunk r7061) svn path=/main/branches/2.1.2/; revision=7062
* For bug #142473, account for $ROOT when deciding if a package is part of ↵Zac Medico2007-06-271-1/+1
| | | | | | world or not. (trunk r7059) svn path=/main/branches/2.1.2/; revision=7060
* Fix quoting. (trunk r7057)Zac Medico2007-06-271-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=7058
* Format $EBUILD_OVERLAY_ECLASSES output more like it was before. (trunk r7055)Zac Medico2007-06-271-1/+5
| | | | svn path=/main/branches/2.1.2/; revision=7056
* For bug #144333, add a --reinstall=changed-use option which behaves similar ↵Zac Medico2007-06-271-12/+29
| | | | | | to how --newuse behaved in portage-2.0.x days. (trunk r7052) svn path=/main/branches/2.1.2/; revision=7053
* Format the callstack indentation more like it used to be. (trunk r7050)Zac Medico2007-06-271-2/+2
| | | | svn path=/main/branches/2.1.2/; revision=7051
* Send the ebuild die message through eerror and make sure that elog_process() ↵Zac Medico2007-06-272-18/+20
| | | | | | gets called when an ebuild dies. This makes the elog echo module display the die message last in case other elog messages push the original die message off of the top of the screen. (trunk r7047) svn path=/main/branches/2.1.2/; revision=7049
* For bug #183167, explicitly call elog_process() when --buildpkgonly is ↵Zac Medico2007-06-251-0/+2
| | | | | | enabled. (trunk r7034) svn path=/main/branches/2.1.2/; revision=7035
* For bug #142473, add 4 color classes corresponding to combinations of ↵Zac Medico2007-06-251-16/+26
| | | | | | world/merge/nomerge attributes of each package. (trunk r7031) svn path=/main/branches/2.1.2/; revision=7032
* Fix typo.Zac Medico2007-06-251-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=7030
* Allow emerge --fetchonly to continue downloading other packages after a ↵Zac Medico2007-06-251-3/+26
| | | | | | download from a binhost fails. (trunk r6709) svn path=/main/branches/2.1.2/; revision=7021
* highlight world packages in --pretend output (bug #142473, trunk r6979)Zac Medico2007-06-241-8/+16
| | | | svn path=/main/branches/2.1.2/; revision=7009
* sort the world file before writing it and ensure that it's terminated by a ↵Zac Medico2007-06-243-6/+10
| | | | | | newline (bug #180706, trunk r6976 and r6999) svn path=/main/branches/2.1.2/; revision=7000
* Allow sync for unpriviledges users if they have write access to $PORTDIR ↵Zac Medico2007-06-241-3/+3
| | | | | | (bug #182786, trunk r6973) svn path=/main/branches/2.1.2/; revision=6991
* Revert r6968 since shutil.move() is broken internally.Zac Medico2007-06-231-5/+2
| | | | svn path=/main/branches/2.1.2/; revision=6971
* For bug #182964, replace os.rename() with shutil.move() in order to handle ↵Zac Medico2007-06-231-2/+5
| | | | | | EXDEV errors that are triggered by layered filesystems. (trunk r6967) svn path=/main/branches/2.1.2/; revision=6968
* Remove redundant 'Usage: ' from the usage message. (trunk r6964)Zac Medico2007-06-231-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=6965
* - Make elog finalize() handling safe for PORTAGE_CONFIGROOT. (trunk r6955)Zac Medico2007-06-221-0/+5
| | | | | | - Dump mod_echo elog output inside post_emerge(), just before the other notifications that happen at exit. (trunk r6953) svn path=/main/branches/2.1.2/; revision=6958
* For bug #182428, make quickpkg exclude config files that are protected by ↵Zac Medico2007-06-221-9/+56
| | | | | | CONFIG_PROTECT. Add a --include-config option that includes all config files and a --include-unmodified-config that includes config files that have not been modified since installation (matching md5sum). (trunk r6945) svn path=/main/branches/2.1.2/; revision=6948
* Make quickpkg print a warning if "bindist" is in RESTRICT. (trunk r6937)Zac Medico2007-06-221-3/+16
| | | | svn path=/main/branches/2.1.2/; revision=6938
* cache the result of --suffix to reduce testing overhead as suggested by ↵Zac Medico2007-06-221-14/+17
| | | | | | Mr_Bones_ (trunk r6922) svn path=/main/branches/2.1.2/; revision=6935
* Remove lots of unnecessary list generation via dict.keys(). (trunk r6911)Zac Medico2007-06-224-16/+16
| | | | svn path=/main/branches/2.1.2/; revision=6930
* Print hostname in xterm title if HOSTNAME is exported in the environment ↵Zac Medico2007-06-221-4/+5
| | | | | | (trunk r5976) svn path=/main/branches/2.1.2/; revision=6929
* Print filename when displaying package.mask comments (trunk r5974)Zac Medico2007-06-221-2/+3
| | | | svn path=/main/branches/2.1.2/; revision=6928
* Add support for RSYNC_EXTRA_OPTS to webrsync (trunk r5973)Zac Medico2007-06-221-2/+2
| | | | svn path=/main/branches/2.1.2/; revision=6927
* if requested argv cannot be matched to anything, exit with non-zero status ↵Zac Medico2007-06-221-1/+6
| | | | | | (trunk r5791) svn path=/main/branches/2.1.2/; revision=6924
* Display message about --buildpkgonly restriction in pretend mode as well ↵Zac Medico2007-06-211-0/+5
| | | | | | (trunk r6199) svn path=/main/branches/2.1.2/; revision=6908
* change "EXEDESTTREE" to "_E_EXEDESTTREE_" to try and prevent abuse from ↵Zac Medico2007-06-214-15/+16
| | | | | | ebuild writers (trunk r6351) svn path=/main/branches/2.1.2/; revision=6903
* change DOCDESTTREE to _E_DOCDESTTREE_ to try and prevent abuse from ebuild ↵Zac Medico2007-06-213-8/+9
| | | | | | writers (trunk r6347) svn path=/main/branches/2.1.2/; revision=6902
* strip .comment by default, add a comment as to what we need before we can do ↵Zac Medico2007-06-211-4/+10
| | | | | | .note, and add safe stripping of relocatable objects (trunk r6416) svn path=/main/branches/2.1.2/; revision=6901
* Pretty up the repoman imports, use cPickle over pickle for performance ↵Zac Medico2007-06-211-3/+13
| | | | | | (trunk r6431) svn path=/main/branches/2.1.2/; revision=6900
* as noted by Josh Saddler on the gentoo-dev mailing list, issue a warning if ↵Zac Medico2007-06-211-0/+6
| | | | | | we try to create a binpkg for something that has IUSE=bindist but was emerged with USE=-bindist (trunk r6895:6897) svn path=/main/branches/2.1.2/; revision=6898
* Add an --ignore-default-opts option that is analogous to the corresponding ↵Zac Medico2007-06-201-3/+8
| | | | | | emerge option. (trunk r6892) svn path=/main/branches/2.1.2/; revision=6893
* Use the the optparse options for --ignore-default-opts since that allows ↵Zac Medico2007-06-201-1/+1
| | | | | | option abreviation to work. (trunk r6890) svn path=/main/branches/2.1.2/; revision=6891
* Show a "world problems" warning for packages that aren't installed, even if ↵Zac Medico2007-06-201-1/+1
| | | | | | they are available. (trunk r6887) svn path=/main/branches/2.1.2/; revision=6888
* For bug #180165, make portageq print a "Permission denied" error when ↵Zac Medico2007-06-203-7/+23
| | | | | | appropriate and make has_version die if portageq has an unexpected exit code. (trunk r6880:6882) svn path=/main/branches/2.1.2/; revision=6885