summaryrefslogtreecommitdiffstats
path: root/bin/emerge
Commit message (Collapse)AuthorAgeFilesLines
* For compatibility with float timestamps in python-2.5, convert st_mtime ↵Zac Medico2006-09-221-2/+2
| | | | | | attributes to long wherever portage expects 1s resolution. svn path=/main/trunk/; revision=4500
* Revert r4495, since conversion from nomerge to merge may put the depgraph ↵Zac Medico2006-09-221-2/+3
| | | | | | into an inconsistent state du to USE flag mismatch. This can be solved by checking all args prior to marking packages as nomerge. svn path=/main/trunk/; revision=4496
* Allow packages specified on the command line to be retroactively upgraded ↵Zac Medico2006-09-221-0/+2
| | | | | | from "nomerge" to "merge" nodes. svn path=/main/trunk/; revision=4494
* Fix another IndexError due to an assumption that digraph nodes split into at ↵Zac Medico2006-09-211-2/+2
| | | | | | least 4 parts. svn path=/main/trunk/; revision=4493
* Prevent --update and/or --deep style behavior when the user hasn't specified ↵Zac Medico2006-09-211-0/+5
| | | | | | them. In these cases a full depgraph isn't desired and we have to ignore the installed deps that are now returned from dep_check. svn path=/main/trunk/; revision=4492
* Prevent an IndexError caused by blocker nodes splitting to 3 items instead of 4.Zac Medico2006-09-211-1/+1
| | | | svn path=/main/trunk/; revision=4491
* Add a comment about old-style virtuals inside depgraph.validate_blockers().Zac Medico2006-09-211-0/+3
| | | | svn path=/main/trunk/; revision=4490
* Remove an inaccurate comment.Zac Medico2006-09-211-4/+2
| | | | svn path=/main/trunk/; revision=4489
* Add a docstring for depgraph.validate_blockers().Zac Medico2006-09-211-0/+5
| | | | svn path=/main/trunk/; revision=4488
* Fix depgraph.validate_blockers() logic so that match_from_list works correctly.Zac Medico2006-09-211-3/+6
| | | | svn path=/main/trunk/; revision=4487
* Thanks to Jason Stubbs for this patch from bug #16365 which invalidates any ↵Zac Medico2006-09-201-17/+51
| | | | | | blocker that is made irrelevant by a package upgrade. svn path=/main/trunk/; revision=4486
* For consistency, pass ignore_soft_deps into digraph.hasallzeros().Zac Medico2006-09-191-1/+1
| | | | svn path=/main/trunk/; revision=4482
* This is a new --tree implementation by Jason Stubbs, from bug #147766.Zac Medico2006-09-191-58/+56
| | | | svn path=/main/trunk/; revision=4479
* Allow packages matched by something in package.provided to be explicitly ↵Zac Medico2006-09-181-5/+6
| | | | | | merged by the user. svn path=/main/trunk/; revision=4475
* Idendify soft deps in emerge --debug output.Zac Medico2006-09-181-0/+2
| | | | svn path=/main/trunk/; revision=4474
* Thanks again to Jason Stubbs for this patch from bug #147766 which ↵Zac Medico2006-09-181-9/+23
| | | | | | represents PDEPEND relationships withing the depgraph as reverse soft dependencies. svn path=/main/trunk/; revision=4473
* Thanks to Jason Stubbs for this patch from bug #147766 which enables ↵Zac Medico2006-09-181-43/+47
| | | | | | creation of a full and complete depgraph, leaving no dependencies unaccounted for. This will allow more accurate merge order and proper detection of circular dependencies! svn path=/main/trunk/; revision=4472
* Ensure that the parent process gets the first fetch when parallel-fetch is ↵Zac Medico2006-09-181-0/+1
| | | | | | enabled. svn path=/main/trunk/; revision=4471
* Close the parallel-fetch log file descriptor when it's no longer needed.Zac Medico2006-09-181-0/+1
| | | | svn path=/main/trunk/; revision=4469
* Use mtimedb.filename == None to disable mtimedb writes (instead of /dev/null).Zac Medico2006-09-171-1/+1
| | | | svn path=/main/trunk/; revision=4468
* Reimplement parallel-fetch so that it simply spawns `emerge --fetch ↵Zac Medico2006-09-171-51/+40
| | | | | | --resume` via portage_exec.spawn. This prevents potential issues with shared file descriptors and unsafe forks as discussed in bug #147516. This patch makes sure that the spawned emerge process does not write to emerge.log or the mtimedb. svn path=/main/trunk/; revision=4467
* For bug #14321, make emerge scan for individual files listed in CONFIG_PROTECT.Zac Medico2006-09-161-10/+24
| | | | svn path=/main/trunk/; revision=4459
* 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