summaryrefslogtreecommitdiffstats
path: root/bin/emerge
Commit message (Collapse)AuthorAgeFilesLines
* Revert r4403 since dep_check needs a config instance for the $ROOT where the ↵Zac Medico2006-09-041-8/+1
| | | | | | dependencies will be installed. svn path=/main/trunk/; revision=4406
* For emerge dep_check calls, use a config instance that has the correct state ↵Zac Medico2006-09-041-1/+8
| | | | | | and the correct $ROOT. svn path=/main/trunk/; revision=4403
* Make code from the last 2 commits conditional on merging == 0 and ↵Zac Medico2006-09-021-0/+2
| | | | | | vardbapi.cpv_exists(mykey). svn path=/main/trunk/; revision=4380
* Update the depgraph's USE flag cache so that's it's consistent with ↵Zac Medico2006-09-021-0/+1
| | | | | | installed packages. svn path=/main/trunk/; revision=4379
* When creating the depgraph, use the correct USE flags for packages that are ↵Zac Medico2006-09-021-0/+1
| | | | | | already installed. svn path=/main/trunk/; revision=4378
* Display flags that have been removed from IUSE as (-flag%) instead of !flag% ↵Zac Medico2006-08-271-2/+5
| | | | | | and display newly added masked flags without the % symbol in order to avoid ambiguity. See bug #144661. svn path=/main/trunk/; revision=4350
* For --newuse, ignore masked/forced flags when comparing IUSE. See bug #144661.Zac Medico2006-08-271-2/+10
| | | | svn path=/main/trunk/; revision=4349
* For --newuse, ignore masked/forced flags when comparing IUSE. See bug #144661.Zac Medico2006-08-271-5/+11
| | | | svn path=/main/trunk/; revision=4348
* Remove a redundant conditional from the last commit.Zac Medico2006-08-261-3/+1
| | | | svn path=/main/trunk/; revision=4347
* Show the * symbol in addition to the % symbol when the flags state ↵Zac Medico2006-08-261-1/+6
| | | | | | transitions from nonexistent -> enabled or vice versa. svn path=/main/trunk/; revision=4346
* Recommend `emerge --update --deep world` prior to depclean in order to make ↵Zac Medico2006-08-261-0/+7
| | | | | | sure that all dependencies are satisfied. See bug #145078. svn path=/main/trunk/; revision=4344
* Display flags that have been removed from IUSE as !flag% for bug #144661.Zac Medico2006-08-241-11/+16
| | | | svn path=/main/trunk/; revision=4322
* Make depclean more friendly about unresolved atoms. Thanks to jstubbs for ↵Zac Medico2006-08-201-16/+21
| | | | | | this patch from bug #144486. svn path=/main/trunk/; revision=4312
* Add a depclean warning message, once again, because it's never completely safe.Zac Medico2006-08-161-0/+11
| | | | svn path=/main/trunk/; revision=4270
* This is a new and improved depclean implementation. Thanks to jstubbs for ↵Zac Medico2006-08-161-86/+51
| | | | | | this patch from bug #67179. svn path=/main/trunk/; revision=4267
* Update the virtuals even if the package already exists in the fakedbapi ↵Zac Medico2006-08-141-2/+1
| | | | | | since it may be necessary if the package is being remerged. svn path=/main/trunk/; revision=4254
* Revert most of r4086 because it broke circular bootstrap dependencies for ↵Zac Medico2006-08-141-7/+26
| | | | | | things like gwydion-dylan and ghc. Thanks to araujo for reporting the breakage. svn path=/main/trunk/; revision=4253
* For consistent results, sort the contents when generating the info directory ↵Zac Medico2006-08-131-1/+3
| | | | | | index. See bug #142652. svn path=/main/trunk/; revision=4239
* Add support for use.force and package.use.force in profiles.Zac Medico2006-08-111-0/+2
| | | | svn path=/main/trunk/; revision=4214
* Display masked USE flags as (-flag) instead of ( -flag ) to save space.Zac Medico2006-08-101-13/+15
| | | | svn path=/main/trunk/; revision=4212
* Use ( -flag ) to indicate flags that have been forced off via use.mask.Zac Medico2006-08-091-11/+30
| | | | svn path=/main/trunk/; revision=4211
* 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
* 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 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
* 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
* 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
* 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
* 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
* Add ipv6 --sync support for bug #37124. Thanks to Bernhard Schmidt ↵Zac Medico2006-07-161-2/+16
| | | | | | <berni@birkenwald.de> for the initial patch. svn path=/main/trunk/; revision=3908
* Fix broken --usepkg masking logic for bug #140694.Zac Medico2006-07-161-2/+2
| | | | svn path=/main/trunk/; revision=3907
* Use calculations to center --info header titles.Zac Medico2006-07-151-6/+9
| | | | svn path=/main/trunk/; revision=3881
* As suggested by vapier, only show the "System Settings" banner when myfiles ↵Zac Medico2006-07-151-2/+3
| | | | | | is not empty. svn path=/main/trunk/; revision=3879
* disable regular expressions for search by defaultMarius Mauch2006-07-151-7/+8
| | | | svn path=/main/trunk/; revision=3876
* Fix gid typo from the last commit.Zac Medico2006-07-131-1/+1
| | | | svn path=/main/trunk/; revision=3869