summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Raise a CommandNotFound exception when necessary, to ease troubleshooting. ↵Zac Medico2007-02-211-2/+2
| | | | | | Thanks to marienz for reporting. svn path=/main/trunk/; revision=6021
* For bug #167795, try avoid the population routine when possible, so that ↵Zac Medico2007-02-201-0/+11
| | | | | | FEATURES=buildpkg doesn't always force population. svn path=/main/trunk/; revision=6019
* As requested by vapier, don't show the merge list in --quiet mode unless ↵Zac Medico2007-02-201-1/+2
| | | | | | it's explicitly requested via --ask or --pretend. svn path=/main/trunk/; revision=6017
* Optimize order for --tree display of circular dependencies.Zac Medico2007-02-191-1/+12
| | | | svn path=/main/trunk/; revision=6014
* Make digraph._merge_order_bias() operate on a single digraph that's passed in.Zac Medico2007-02-191-5/+5
| | | | svn path=/main/trunk/; revision=6012
* For bug #167450, optimize leaf node selection by ordering nodes from highest ↵Zac Medico2007-02-191-0/+11
| | | | | | to lowest overall reference count. svn path=/main/trunk/; revision=6010
* Automatically enable --tree mode when displaying nodes with circular deps.Zac Medico2007-02-191-0/+1
| | | | svn path=/main/trunk/; revision=6008
* For bug #166564, make a circular dependency panic more user friendly by ↵Zac Medico2007-02-191-8/+15
| | | | | | displaying the USE flags that are enabled on nodes that are part of dependency cycles and display a note hinting that circular dependencies can often be avoided by temporarily disabling USE flags. svn path=/main/trunk/; revision=6006
* Don't exclude . since that excludes the entire contents of some tar files.Zac Medico2007-02-181-1/+1
| | | | svn path=/main/trunk/; revision=6004
* When calling tar, always exclud . in order to preserver ↵Zac Medico2007-02-181-6/+6
| | | | | | PORTAGE_WORKDIR_MODE. Thanks to Brian Harring in bug #167544. svn path=/main/trunk/; revision=6002
* For bug #166880, always display the merge list header.Zac Medico2007-02-181-1/+1
| | | | svn path=/main/trunk/; revision=6000
* For bug #166880, always display the merge list (allowing --tree to be obeyed ↵Zac Medico2007-02-181-3/+3
| | | | | | in any case). svn path=/main/trunk/; revision=5998
* For bug #167450, optimize merge order by delaying the merge of root nodes.Zac Medico2007-02-181-2/+12
| | | | svn path=/main/trunk/; revision=5996
* set.remove() returns None, so can't use it in a function callMarius Mauch2007-02-181-1/+1
| | | | svn path=/main/trunk/; revision=5995
* Move preserve-libs and collision-protect code from treewalk() into their own ↵Marius Mauch2007-02-181-117/+131
| | | | | | functions svn path=/main/trunk/; revision=5994
* extend check for internal references, should remove all libs that are only ↵Marius Mauch2007-02-181-6/+25
| | | | | | used internally now svn path=/main/trunk/; revision=5993
* Move reverse NEEDED cache into CACHE_PATH and use a more descriptive nameMarius Mauch2007-02-181-2/+2
| | | | svn path=/main/trunk/; revision=5992
* For bug #163990, warn about binary packages with invalid categories and do ↵Zac Medico2007-02-181-0/+18
| | | | | | not allow them to be installed. svn path=/main/trunk/; revision=5990
* For bug #163990, warn about ebuilds with invalid categories and do not allow ↵Zac Medico2007-02-181-1/+6
| | | | | | them to be installed. svn path=/main/trunk/; revision=5988
* For bug #166785, check for invalid categories in the world file.Zac Medico2007-02-181-3/+16
| | | | svn path=/main/trunk/; revision=5986
* Fix package.provided breakage from the fix for bug #166939.Zac Medico2007-02-171-0/+4
| | | | svn path=/main/trunk/; revision=5984
* Remove unnecessary import that triggers DEPRECATION NOTICE.Zac Medico2007-02-171-1/+0
| | | | svn path=/main/trunk/; revision=5983
* For bug #166939, make --nodeps work like a normal package for new-style ↵Zac Medico2007-02-171-17/+21
| | | | | | virtuals. svn path=/main/trunk/; revision=5982
* Replace compat symlinks with a new compat module as the symlink solution ↵Marius Mauch2007-02-1725-23/+73
| | | | | | prevents reuse of state information (requested by ferringb) svn path=/main/trunk/; revision=5981
* Remove portage_exec.py as subversion is stupid and can't convert it in one stepMarius Mauch2007-02-171-1/+0
| | | | svn path=/main/trunk/; revision=5980
* For full backwards compat (with symlinks or other weird stuff) import ↵Marius Mauch2007-02-171-3/+3
| | | | | | everything into the main namespace svn path=/main/trunk/; revision=5979
* Move bin/emerge to pym/emerge/__init__.py to restore old import behavior as ↵Marius Mauch2007-02-172-5371/+5378
| | | | | | the load_source solution doesn't work properly svn path=/main/trunk/; revision=5978
* Make emerge importable again without relying on module search path orderMarius Mauch2007-02-171-0/+5
| | | | svn path=/main/trunk/; revision=5977
* Print hostname in xterm title if sheridan is available in the environmentMarius Mauch2007-02-171-4/+5
| | | | svn path=/main/trunk/; revision=5976
* Ignore compiled files.Marius Mauch2007-02-171-3/+89
| | | | | | | | | | | | | Add new feature 'preserve-libs' that injects files into $D that - belong to a package instance that is about to be autocleaned - are not installed by the new package instance - are listed in at least one NEEDED file in vdb - are not just used by other files of the package instance As a side-effect a new file /var/db/pkg/.NEEDED is created that contains a reversed map of the NEEDED files found in a packages dbdir. svn path=/main/trunk/; revision=5975
* Print filename when displaying package.mask commentsMarius Mauch2007-02-172-23/+25
| | | | svn path=/main/trunk/; revision=5974
* Add support for RSYNC_EXTRA_OPTS to webrsyncMarius Mauch2007-02-171-2/+2
| | | | svn path=/main/trunk/; revision=5973
* Add missing quotes.Zac Medico2007-02-151-1/+1
| | | | svn path=/main/trunk/; revision=5970
* Fix CONFIG_PROTECT_MASK support. Thanks to piavlo <piavka@cs.bgu.ac.il> for ↵Zac Medico2007-02-151-1/+2
| | | | | | this patch from bug #166837. svn path=/main/trunk/; revision=5969
* Optimize merge order calculation for --tree output when necessary.Zac Medico2007-02-141-1/+2
| | | | svn path=/main/trunk/; revision=5967
* For bug #158100, use an exact reversal of the actual merge order for --tree ↵Zac Medico2007-02-141-0/+5
| | | | | | output. It's more efficient than doing 2 order calculations. svn path=/main/trunk/; revision=5965
* Fix broken imports.Zac Medico2007-02-131-3/+5
| | | | svn path=/main/trunk/; revision=5963
* Detect potential issues with mtime granlarity in env_update() and sleep if ↵Zac Medico2007-02-131-1/+13
| | | | | | necessary. Thanks to Brian Harring for reporting. svn path=/main/trunk/; revision=5961
* Fix missing imports.Zac Medico2007-02-131-3/+3
| | | | svn path=/main/trunk/; revision=5960
* tweak PORT_LOGDIR comments so as to not give the wrong impression about the ↵Mike Frysinger2007-02-131-1/+2
| | | | | | default value svn path=/main/trunk/; revision=5959
* In the event of a circular dependency panic, eliminate root nodes in order ↵Zac Medico2007-02-121-0/+9
| | | | | | to reduce the noise level to a minimum. svn path=/main/trunk/; revision=5956
* Make subpackage naming consistentMarius Mauch2007-02-1111-106/+114
| | | | svn path=/main/trunk/; revision=5955
* import best() from portage.versionsZac Medico2007-02-111-2/+2
| | | | svn path=/main/trunk/; revision=5954
* Use the real symbols in import statements, not the references in __init__.pyMarius Mauch2007-02-115-28/+35
| | | | svn path=/main/trunk/; revision=5953
* Make xterm titles work even when color is disabled. Thanks to Joachim ↵Zac Medico2007-02-101-1/+1
| | | | | | Kaeber <joachim.kaeber@web.de> in bug #166255. svn path=/main/trunk/; revision=5950
* Add missing VDB_PATH to fix vardbapi.aux_get() breakage.Zac Medico2007-02-101-1/+1
| | | | svn path=/main/trunk/; revision=5949
* Fix vardb.cpv_all() breakage.Zac Medico2007-02-101-2/+1
| | | | svn path=/main/trunk/; revision=5948
* Fix missing stat import.Zac Medico2007-02-101-1/+1
| | | | svn path=/main/trunk/; revision=5947
* Break a recursive loop.Zac Medico2007-02-101-1/+1
| | | | svn path=/main/trunk/; revision=5946
* Use os.path.realpath to handle symlinks properly.Zac Medico2007-02-1016-16/+16
| | | | svn path=/main/trunk/; revision=5945