summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Undoing previous testRobin H. Johnson2007-02-231-1/+0
| | | | svn path=/main/trunk/; revision=6054
* Testing CIA commit logs, will undo in a moment.Robin H. Johnson2007-02-231-0/+1
| | | | svn path=/main/trunk/; revision=6053
* spawn rsync without a shell.Zac Medico2007-02-231-1/+3
| | | | svn path=/main/trunk/; revision=6051
* Remove quotes since rsync doesn't accept them (and there is no shell to ↵Zac Medico2007-02-221-3/+3
| | | | | | remove them since we use spawn() for rsync now). svn path=/main/trunk/; revision=6048
* For bug #167668, use an rsync "hide" filter rule to exclude ↵Zac Medico2007-02-222-1/+2
| | | | | | **/files/digest-* and delete them on the receiver. svn path=/main/trunk/; revision=6047
* Don't bother to parse ${FILESDIR}/digest-* when manifest1_compat is disabled.Zac Medico2007-02-221-3/+3
| | | | svn path=/main/trunk/; revision=6045
* For bug #167667, add support for ${PORTDIR}/manifest1_obsolete and ↵Zac Medico2007-02-221-3/+51
| | | | | | automatically remove ${FILESDIR}/digest-* from cvs when appropriate. svn path=/main/trunk/; revision=6042
* For bug #167667, use the existence of ${PORTDIR}/manifest1_obsolete to ↵Zac Medico2007-02-222-2/+6
| | | | | | trigger the disabling of manifest1/digest file generation. This toggle is repo/overlay specific, allowing a specific overlay to drop manifest1 buy adding the manifest1_obsolete file. svn path=/main/trunk/; revision=6041
* Make sure that ${A} in initialized in case pkg_nofetch() needs to be called. ↵Zac Medico2007-02-221-0/+1
| | | | | | Thanks to Peper for reporting. svn path=/main/trunk/; revision=6039
* Fix "NameError: global name 'myfilelist' is not defined" when ↵Zac Medico2007-02-221-2/+2
| | | | | | collision-protect is enabled. svn path=/main/trunk/; revision=6038
* Add some sanity checks for file list handling when repolevel < 3.Zac Medico2007-02-221-0/+12
| | | | svn path=/main/trunk/; revision=6036
* Fix broken file list handling for FEATUES=sign when only the Manifest has ↵Zac Medico2007-02-221-0/+6
| | | | | | changed. svn path=/main/trunk/; revision=6035
* Fix more broken commitmessagefile handling.Zac Medico2007-02-221-2/+7
| | | | svn path=/main/trunk/; revision=6033
* Use startdir instead of mydir since mydir has a trailing slash which ↵Zac Medico2007-02-221-3/+3
| | | | | | triggers normalization issues with the dirname function. svn path=/main/trunk/; revision=6031
* Avoid a TypeError when commitmessagefile is None.Zac Medico2007-02-221-1/+1
| | | | svn path=/main/trunk/; revision=6029
* Fix stardir and repodir logic from the previous commit.Zac Medico2007-02-211-5/+3
| | | | svn path=/main/trunk/; revision=6027
* For consistency, replace multiple os.getcwd() calls with the "mydir" variable.Zac Medico2007-02-211-4/+4
| | | | svn path=/main/trunk/; revision=6024
* s/x/xs/ to fix a typo in a variable name.Zac Medico2007-02-211-1/+1
| | | | svn path=/main/trunk/; revision=6023
* 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