summaryrefslogtreecommitdiffstats
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
...
* remove pointless line that just ruins the displayMike Frysinger2006-07-061-1/+0
| | | | svn path=/main/trunk/; revision=3800
* 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
* Make a backup of ACCEPT_KEYWORDS when repoman changes it for each profile. ↵Zac Medico2006-07-051-0/+2
| | | | | | This prevents it from being discarded by config.reset() and was the root cause of bug #132601. The cloning that was added in r3791 is a safeguard to prevent problems like this. svn path=/main/trunk/; revision=3792
* Fix repoman breakage due to the fact that portage.portagetree now creates ↵Zac Medico2006-07-051-7/+9
| | | | | | it's own portdbapi instance. Repoman will now use a single portdbapi instance instead of one for each arch. The arch specific config instances are swapped in on the fly. Hopefully this fixes bug #132601. svn path=/main/trunk/; revision=3790
* 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
* Ignore hidden directories (such as .svn) when building the scanlist.Zac Medico2006-07-021-2/+2
| | | | svn path=/main/trunk/; revision=3760
* Commit the mtimedb prior to restart via excve for bug #138837.Zac Medico2006-07-021-0/+1
| | | | svn path=/main/trunk/; revision=3759
* Add support for arch.list in overlays (bug #137975).Zac Medico2006-07-021-7/+6
| | | | svn path=/main/trunk/; revision=3752
* Add support for licenses in overlays (bug #137975).Zac Medico2006-07-021-1/+3
| | | | svn path=/main/trunk/; revision=3751
* Add overlay support for use.local.desc in repoman.Zac Medico2006-07-021-0/+12
| | | | svn path=/main/trunk/; revision=3750
* Fix import issues reported by pyflakes.Zac Medico2006-07-021-4/+4
| | | | svn path=/main/trunk/; revision=3749
* Add a new parse_use_local_desc() function.Zac Medico2006-07-021-11/+25
| | | | svn path=/main/trunk/; revision=3748
* 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
* Allow portage.getmaskingreason() to operate without global variables.Zac Medico2006-07-011-1/+2
| | | | svn path=/main/trunk/; revision=3727
* Allow portage.getmaskingstatus() to operate without global variables.Zac Medico2006-07-011-1/+2
| | | | svn path=/main/trunk/; revision=3726
* Go ahead and dump a full traceback without having to enable --debug. ↵Zac Medico2006-07-011-5/+3
| | | | | | There's no sense in hiding valuable traceback info like that. svn path=/main/trunk/; revision=3724
* Fix unmerge version spacing for bug #138611.Zac Medico2006-06-301-4/+4
| | | | svn path=/main/trunk/; revision=3722
* Remove redundant "portdb" parameters since pordbapi instances are accessible ↵Zac Medico2006-06-301-14/+15
| | | | | | via the "trees" paramters. There is currently only one global pordbapi instance but eventually there will be separate instances for / and $ROOT. svn path=/main/trunk/; revision=3720
* Pass trees into dep_check and dep_zapdeps calls in order to avoid dependance ↵Zac Medico2006-06-301-1/+1
| | | | | | on global variables. svn path=/main/trunk/; revision=3719
* Fix pkgmerge() to work without dependance on global variables.Zac Medico2006-06-301-1/+4
| | | | svn path=/main/trunk/; revision=3717
* Pass a config instance into the bindbapi and fakedbapi constructors in order ↵Zac Medico2006-06-301-2/+2
| | | | | | to avoid dependance on globals for dep_expand() calls. svn path=/main/trunk/; revision=3716
* Pass missing parameters to doebuild in order to avoid dependance on globals.Zac Medico2006-06-301-2/+5
| | | | svn path=/main/trunk/; revision=3715
* Pass portdbapi instances into doebuild in order to avoid dependance on globals.Zac Medico2006-06-301-2/+3
| | | | svn path=/main/trunk/; revision=3712
* Fix accidental replacement from r3705.Zac Medico2006-06-301-1/+1
| | | | svn path=/main/trunk/; revision=3708
* Make use of the new mtimdb.commit() method.Zac Medico2006-06-301-3/+4
| | | | svn path=/main/trunk/; revision=3707
* Replace global references to the mtimedb with local references.Zac Medico2006-06-301-49/+50
| | | | svn path=/main/trunk/; revision=3705
* Pass ldpath mtimes into the unmerge operations.Zac Medico2006-06-301-8/+15
| | | | svn path=/main/trunk/; revision=3704
* Trigger env_update() after each unmerge operation.Zac Medico2006-06-301-13/+0
| | | | svn path=/main/trunk/; revision=3703
* Remove a pointless "if" statement.Zac Medico2006-06-301-4/+1
| | | | svn path=/main/trunk/; revision=3702
* Pass parameters into env_update() so that it doesn't depend on global variables.Zac Medico2006-06-301-2/+7
| | | | svn path=/main/trunk/; revision=3699