summaryrefslogtreecommitdiffstats
path: root/bin/emerge
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Move the world file trimming out of dblink.unmerge() since the world file is ↵Zac Medico2006-07-131-2/+28
| | | | | | package set territory and therefore doesn't belong inside dblink. svn path=/main/trunk/; revision=3868
* Remove the unmerge_overlapping() function since unmerge() now works properly ↵Zac Medico2006-07-131-68/+2
| | | | | | in the case where ROOT!=/ thanks to the fix for bugs #137446 and #131319. svn path=/main/trunk/; revision=3854
* Split depgraph.merge() to a separate MergeTask class.Zac Medico2006-07-131-2/+20
| | | | svn path=/main/trunk/; revision=3844
* Allow emerge --info to show per-package settings for bug #95741. Thanks to ↵Zac Medico2006-07-101-3/+67
| | | | | | npmccallum for the initial patch. svn path=/main/trunk/; revision=3834
* Don't call emergelog() from the parallel-fetch process for bug #88837.Zac Medico2006-07-101-1/+3
| | | | svn path=/main/trunk/; revision=3833
* Use a list comprehension to simplify the code for bug #55871.Zac Medico2006-07-101-4/+3
| | | | svn path=/main/trunk/; revision=3831
* Move all the config adjustments that require the config instance to be ↵Zac Medico2006-07-101-57/+58
| | | | | | unlocked into a new adjust_config() function. This allows the function to be applied to both of the major config instances that exist when $ROOT != /. svn path=/main/trunk/; revision=3830
* If category expansion fails against the portage tree, remove the null/ ↵Zac Medico2006-07-101-0/+6
| | | | | | prefix so that it may be given another chance to expand against the binary package tree in select_dep(). See bug #135834. svn path=/main/trunk/; revision=3829
* Start at the end of the list so that the index works properly after items ↵Zac Medico2006-07-101-1/+1
| | | | | | are deleted. svn path=/main/trunk/; revision=3828
* Allow binary packages to be installed with --usepkg even when there is no ↵Zac Medico2006-07-101-2/+3
| | | | | | ebuild in tree (but not when there is a matching ebuild in the tree that is masked). See bugs #135834 and #55871. svn path=/main/trunk/; revision=3827
* Use dbapi to unify config.setinst() call in depgraph.select_dep().Zac Medico2006-07-091-4/+2
| | | | svn path=/main/trunk/; revision=3820
* Use the abstract dbapi.aux_get() interface to unify retrieval of IUSE in ↵Zac Medico2006-07-091-4/+1
| | | | | | depgraph.create(). svn path=/main/trunk/; revision=3819
* Use the abstract dbapi.aux_get() interface to unify retrieval of dependency ↵Zac Medico2006-07-091-32/+19
| | | | | | strings in depgraph.create(). svn path=/main/trunk/; revision=3818
* Use a cmpsplit() function to simplify package comparisons in ↵Zac Medico2006-07-081-6/+6
| | | | | | depgraph.select_dep(). svn path=/main/trunk/; revision=3817
* Remove the merging=2 case to simplify merge/nomerge logic.Zac Medico2006-07-081-3/+1
| | | | svn path=/main/trunk/; revision=3816
* Fix indentation mistake from the last commit.Zac Medico2006-07-081-3/+3
| | | | svn path=/main/trunk/; revision=3815
* Use set.intersection() to simplify --newuse comparison.Zac Medico2006-07-081-10/+11
| | | | svn path=/main/trunk/; revision=3814
* Clean up getportageversion() profile logic and fix a ValueError that occurs ↵Zac Medico2006-07-061-10/+12
| | | | | | when profile is None. svn path=/main/trunk/; revision=3798
* Move the ARCH sanity check from the depgraph constructor to a new ↵Zac Medico2006-07-061-12/+18
| | | | | | validate_ebuild_environment() function and call it before any action that requires an ebuild environment (including search, which may result in metadata generation). So, --sync, --metadata, and --info are currently the only actions that are allowed without ARCH being defined. svn path=/main/trunk/; revision=3796
* Freeze all pordbapi instances.Zac Medico2006-07-051-1/+3
| | | | svn path=/main/trunk/; revision=3789
* Run global updates asap and then reload the whole config to make sure ↵Zac Medico2006-07-051-3/+6
| | | | | | everything is consistent. svn path=/main/trunk/; revision=3788
* Match blockers against the correct $ROOT for bug #108449.Zac Medico2006-07-051-4/+6
| | | | svn path=/main/trunk/; revision=3787
* Pass existing trees into load_emerge_config() so that the existing portdbapi ↵Zac Medico2006-07-051-4/+4
| | | | | | instances will be cleaned up by portage.create_trees(). svn path=/main/trunk/; revision=3786
* Allow the loading of a completely separate config for / and ↵Zac Medico2006-07-051-97/+101
| | | | | | PORTAGE_CONFIGROOT. This fixes bug #137446. svn path=/main/trunk/; revision=3785
* Fix more $ROOT references for bug #137446.Zac Medico2006-07-041-6/+14
| | | | svn path=/main/trunk/; revision=3784
* Fix $ROOT references in the depgraph class for bug #137446.Zac Medico2006-07-041-91/+89
| | | | svn path=/main/trunk/; revision=3783
* Remove color from "none" reported by vapier.Zac Medico2006-07-031-2/+2
| | | | svn path=/main/trunk/; revision=3781
* Remove commented code cruft.Zac Medico2006-07-031-10/+0
| | | | svn path=/main/trunk/; revision=3780
* Do some basic validation of the mtimedb resume data so that assumptions can ↵Zac Medico2006-07-031-0/+10
| | | | | | be made later. svn path=/main/trunk/; revision=3779
* When displaying the resume merge list, don't show the skipped package when ↵Zac Medico2006-07-031-2/+14
| | | | | | --skipfirst is enabled. See bug #121106. svn path=/main/trunk/; revision=3778
* Commit the mtimedb for --skipfirst so that if the user aborts the first ↵Zac Medico2006-07-031-0/+1
| | | | | | package, the next --skipfirst will go on to the next package instead of doing the same one again. This patch simply reverts to the behavior that existed before. svn path=/main/trunk/; revision=3777
* Commit the mtimedb prior to restart via excve for bug #138837.Zac Medico2006-07-021-0/+1
| | | | svn path=/main/trunk/; revision=3759
* Use GOOD, BAD, and WARN color classes where appropriate. Thanks to Damien ↵Zac Medico2006-07-011-12/+12
| | | | | | THEBAULT <damien.thebault@laposte.net> for this patch from bug #138600. svn path=/main/trunk/; revision=3745
* Use the BAD and GOOD color classes to remove hard coded colors from the ↵Zac Medico2006-07-011-18/+21
| | | | | | depclean warning message. svn path=/main/trunk/; revision=3744
* Add a new MERGE_LIST_PROGRESS color class and remove hard coded yellow/green.Zac Medico2006-07-011-1/+4
| | | | svn path=/main/trunk/; revision=3743
* - multi-package emerge now prints the sequence highlighting count and cpv to ↵Ned Ludd2006-07-011-1/+1
| | | | | | visually stand out in wondercolors... svn path=/main/trunk/; revision=3742
* Trigger post_emerge() after the relevent actions and commit the mtimedb there.Zac Medico2006-07-011-9/+10
| | | | svn path=/main/trunk/; revision=3734
* Pass a config instance into movefile() to avoid dependence on global variables.Zac Medico2006-07-011-1/+1
| | | | svn path=/main/trunk/; revision=3733
* In order to ensure that emerge doesn't use any of portage's legacy global ↵Zac Medico2006-07-011-10/+47
| | | | | | variables, run emerge with portage.init_legacy_globals() disabled. svn path=/main/trunk/; revision=3732
* Pass a more dbapi instances into doebuild to avoid dependence on global ↵Zac Medico2006-07-011-4/+10
| | | | | | variables. svn path=/main/trunk/; revision=3729
* Pass a portdbapi instance into doebuild to avoid dependence on global variables.Zac Medico2006-07-011-2/+2
| | | | svn path=/main/trunk/; revision=3728