summaryrefslogtreecommitdiffstats
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove a dead hunk of code spotted by antarus.Zac Medico2006-08-091-16/+0
| | | | svn path=/main/trunk/; revision=4208
* Fix rsync code to work with a username@ uri for bug #141185. Thanks to ↵Zac Medico2006-08-061-2/+7
| | | | | | David-John Miller <anoyomouse@petermiller.co.za> for this patch. svn path=/main/trunk/; revision=4179
* Keep USE flags from / and $ROOT separate in the depgraph. See bug #142918.Zac Medico2006-08-061-9/+12
| | | | svn path=/main/trunk/; revision=4177
* Remove unused "cladded" variable reported by antarus.Zac Medico2006-08-061-3/+0
| | | | svn path=/main/trunk/; revision=4176
* Add the date and time of the last sync to emerge --info output. Thanks to ↵Zac Medico2006-08-051-0/+7
| | | | | | Pablo Antonio <pabloa@gmail.com> for the patch from bug #140163. svn path=/main/trunk/; revision=4174
* - emerge -pqv should display USE flags; Bug 128598 - David-John Miller, ↵Ned Ludd2006-08-051-2/+2
| | | | | | anoyomouse@petermiller.co.za svn path=/main/trunk/; revision=4159
* Add additional checks for --pretend and --fetch-all-uri to ensure correct ↵Zac Medico2006-08-051-2/+6
| | | | | | behavior. See bug #140552. svn path=/main/trunk/; revision=4155
* add space before promptMike Frysinger2006-08-051-1/+1
| | | | svn path=/main/trunk/; revision=4154
* Add support for package.use.mask in the profile. It should behave exactly ↵Zac Medico2006-08-041-3/+5
| | | | | | as use.mask currently does except that it allows USE flags to be masked for specific packages rather than for all packages. See bug #96368. svn path=/main/trunk/; revision=4151
* ignore packages that were just fetched from being added to the worldfileMarius Mauch2006-08-041-1/+1
| | | | svn path=/main/trunk/; revision=4150
* Fix the installsources feature so that it works even with splitdebug or ↵Zac Medico2006-08-041-11/+15
| | | | | | nostrip. Thanks to Olivier Crete <tester@gentoo.org> for this patch from bug #136197. svn path=/main/trunk/; revision=4136
* Fix STRIP_MASK logic so that a match results in stripitbaby=0.Zac Medico2006-08-041-1/+1
| | | | svn path=/main/trunk/; revision=4131
* Link the full handbook since it's guaranteed to continue to work as per ↵Zac Medico2006-08-021-2/+2
| | | | | | comment #12 of bug #142225. Also, add a note about the architecture being irrelevant as per comment #10. svn path=/main/trunk/; revision=4087
* Move code that updates depgraph state from select_dep() to a more ↵Zac Medico2006-08-021-11/+7
| | | | | | appropriate location in create(). This fixes a bug in $ROOT handling, where the the $ROOT of the child is used where the $ROOT of the parent should have been (similar to bug #108449). svn path=/main/trunk/; revision=4086
* Remove dojar for bug #108517.Zac Medico2006-08-011-54/+0
| | | | svn path=/main/trunk/; revision=4081
* Don't write to emerge.log when --pretend is enabled for bug #139449.Zac Medico2006-07-311-1/+2
| | | | svn path=/main/trunk/; revision=4068
* When emerge exits to blockers, show a link to the relevant section of the ↵Zac Medico2006-07-311-2/+12
| | | | | | Gentoo Handbook. See bug #142225. svn path=/main/trunk/; revision=4053
* Remove pointless cvs dependent REPOROOTS code. Thanks to Alec Warner ↵Zac Medico2006-07-311-24/+1
| | | | | | <antarus@gentoo.org> for this patch. svn path=/main/trunk/; revision=4049
* Stack /etc/profile.env inside portage.config so that it doesn't stop ↵Zac Medico2006-07-291-2/+0
| | | | | | variables in inappropriate places. See bug #51370. svn path=/main/trunk/; revision=4048
* Use the FetchlistDict to simplify code.Zac Medico2006-07-281-4/+3
| | | | svn path=/main/trunk/; revision=4046
* Pass in the path to the base of the current tree to ensure that the correct ↵Zac Medico2006-07-281-1/+3
| | | | | | fetchlist is used when there are overlays present. svn path=/main/trunk/; revision=4045
* Allow a digest to be created before any distfiles have been fetched for bug ↵Zac Medico2006-07-281-1/+2
| | | | | | #141843. svn path=/main/trunk/; revision=4043
* Add a --force option for `ebuild digest` so that the user doesn't have to ↵Zac Medico2006-07-281-2/+23
| | | | | | manually remove the Manifest and files/digest-* files when upstream changes the identity of distfiles. See bug #141843. svn path=/main/trunk/; revision=4041
* When necessary, always print a list of missing atoms even if --verbose is ↵Zac Medico2006-07-251-3/+4
| | | | | | not enabled. Thanks to Caster <caster@matfyz.cz> for this patch from bug #141643. svn path=/main/trunk/; revision=4022
* Move the self dependency check from digraph.addnode() to depgraph.create() ↵Zac Medico2006-07-251-1/+3
| | | | | | since that's the only place it's currently needed. This patch should not affect emerge behavior. svn path=/main/trunk/; revision=4021
* Add more dependencies to the digraph in order to help prevent strange merge ↵Zac Medico2006-07-251-3/+7
| | | | | | orders for bug #126748. svn path=/main/trunk/; revision=4019
* s/difference/symmetric_difference/ for the last two commits.Zac Medico2006-07-241-2/+2
| | | | svn path=/main/trunk/; revision=4016
* For binary packages, trigger a rebuild with --newuse when IUSE has changed ↵Zac Medico2006-07-241-2/+10
| | | | | | for bug #116955. svn path=/main/trunk/; revision=4015
* Trigger a rebuild with --newuse when IUSE has changed for bug #116955.Zac Medico2006-07-241-1/+4
| | | | svn path=/main/trunk/; revision=4014
* Simplify depgraph.select_dep() logic by using a list of matched packages ↵Zac Medico2006-07-231-31/+32
| | | | | | (instead of separate variables for ebuild and binary packages). svn path=/main/trunk/; revision=4013
* Use portage.best() to simplify package comparison.Zac Medico2006-07-221-6/+2
| | | | svn path=/main/trunk/; revision=3988
* Just add the providers to the protected set without bothering to check if ↵Zac Medico2006-07-221-6/+5
| | | | | | they're in the vdb. svn path=/main/trunk/; revision=3987
* Make depclean account for old-style virtuals so that it doesn't remove the ↵Zac Medico2006-07-221-1/+8
| | | | | | providers. svn path=/main/trunk/; revision=3986
* Fix broken if/elif statement.Zac Medico2006-07-201-2/+2
| | | | svn path=/main/trunk/; revision=3972
* Fix a broken reference to portage.portdb.Zac Medico2006-07-201-1/+2
| | | | svn path=/main/trunk/; revision=3971
* Make user_special() return 1 if none of the patterns in ↵Zac Medico2006-07-191-2/+1
| | | | | | /etc/etc-update.special are matched. svn path=/main/trunk/; revision=3953
* add support to prevent auto-processing for user-special files that match a ↵Marius Mauch2006-07-191-2/+16
| | | | | | pattern in /etc/etc-update.special svn path=/main/trunk/; revision=3936
* use eval to allow shell expansion in config fileMarius Mauch2006-07-191-5/+7
| | | | svn path=/main/trunk/; revision=3935
* Only call portageq onceMarius Mauch2006-07-191-3/+8
| | | | svn path=/main/trunk/; revision=3934
* update mtime after replacing config filesMarius Mauch2006-07-191-0/+2
| | | | svn path=/main/trunk/; revision=3932
* add notice about remaining updates on exitMarius Mauch2006-07-191-1/+7
| | | | svn path=/main/trunk/; revision=3931
* add option to discard config updatesMarius Mauch2006-07-191-3/+25
| | | | svn path=/main/trunk/; revision=3930
* Show full path when auto-mergingMarius Mauch2006-07-191-1/+1
| | | | svn path=/main/trunk/; revision=3929
* ensure we have the necessary accessMarius Mauch2006-07-191-0/+2
| | | | svn path=/main/trunk/; revision=3928
* Ensure a sane umask for repoman.Zac Medico2006-07-181-1/+2
| | | | svn path=/main/trunk/; revision=3919
* fix up doman and prepman so that they work with the new .keep files in rev 3917Simon Stelling2006-07-182-2/+2
| | | | svn path=/main/trunk/; revision=3918
* make .keep files package-dependant to fix bug 102436Simon Stelling2006-07-181-2/+2
| | | | svn path=/main/trunk/; revision=3917
* Use a set instead of a list for better efficiency.Zac Medico2006-07-181-3/+2
| | | | svn path=/main/trunk/; revision=3916
* Simplify generation of the cleanlist for depclean.Zac Medico2006-07-181-26/+8
| | | | svn path=/main/trunk/; revision=3915
* Fix depclean so that it cleans unneeded slots (unless they are exempted by ↵Zac Medico2006-07-171-6/+17
| | | | | | the system or world sets). See bug #140591. svn path=/main/trunk/; revision=3914