summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix manifest/digest generation logic for bug #129737.Zac Medico2006-04-131-24/+11
| | | | svn path=/main/trunk/; revision=3136
* Use LazyItemsDict to avoid a vdb scan during portage import when autouse is ↵Zac Medico2006-04-121-1/+19
| | | | | | enabled. svn path=/main/trunk/; revision=3135
* Use cannonical paths for portdb.portrees to ensure that, given pkgdir, ↵Zac Medico2006-04-121-3/+4
| | | | | | FetchlistDict can determine the correct path for the portage tree. svn path=/main/trunk/; revision=3134
* Create a generic portage_util.LazyItemsDict and use it for lazy ↵Zac Medico2006-04-121-46/+31
| | | | | | initialization portage.db[root] items. svn path=/main/trunk/; revision=3133
* Fix LazyDatabasesDict so that databases only need to be created once.Zac Medico2006-04-111-0/+1
| | | | svn path=/main/trunk/; revision=3131
* Make qmerge imply noclean for bug #129559.Zac Medico2006-04-111-0/+3
| | | | svn path=/main/trunk/; revision=3128
* Implement lazy construction of global databases db[root]["porttree"] and ↵Zac Medico2006-04-111-4/+27
| | | | | | | | db[root]["bintree"] and automatically populate db[root]["bintree"] on access. svn path=/main/trunk/; revision=3127
* Support EBUILD_PHASE during more phases for bug #129244.Zac Medico2006-04-111-0/+2
| | | | svn path=/main/trunk/; revision=3126
* Support EBUILD_PHASE during package and rpm phases for bug #129244.Zac Medico2006-04-111-0/+2
| | | | svn path=/main/trunk/; revision=3125
* Remove dead code from portage.digestcheck().Zac Medico2006-04-111-86/+0
| | | | svn path=/main/trunk/; revision=3124
* Remove the "db" parameter from digestcheck() because it's not needed.Zac Medico2006-04-111-3/+1
| | | | svn path=/main/trunk/; revision=3123
* Remove the "db" parameter from digestParseFile() because it's not needed.Zac Medico2006-04-111-3/+2
| | | | svn path=/main/trunk/; revision=3122
* Remove the "db" parameter from digestgen() because it's not needed.Zac Medico2006-04-111-4/+1
| | | | svn path=/main/trunk/; revision=3121
* Fix FetchlistDict.keys() so it does the same porttrees trick as __getitem__.Zac Medico2006-04-111-1/+8
| | | | svn path=/main/trunk/; revision=3120
* Fix FetchlistDict so usage of global portdb leaves portdb.porttrees intact.Zac Medico2006-04-111-7/+11
| | | | svn path=/main/trunk/; revision=3119
* Ensure that binarytree.populate is called even when the first access isJason Stubbs2006-04-101-0/+7
| | | | | | via binarytree.dbapi.{aux_get,match}. svn path=/main/trunk/; revision=3117
* Add docstrings for FetchlistDict.Zac Medico2006-04-101-1/+9
| | | | svn path=/main/trunk/; revision=3114
* Simplify the porttrees logic for FetchlistDict.Zac Medico2006-04-101-5/+2
| | | | svn path=/main/trunk/; revision=3113
* Remove db and mysettings from Manifest and replace them with a mapping ↵Zac Medico2006-04-101-3/+23
| | | | | | object that provides access to fetch lists for each cpv. svn path=/main/trunk/; revision=3111
* Pass DISTDIR into the Manifest constructor instead of getting it from ↵Zac Medico2006-04-101-25/+26
| | | | | | mysettings because mysettings will be eliminated soon. svn path=/main/trunk/; revision=3110
* Remove dead code from portage.digestParseFile().Zac Medico2006-04-091-30/+0
| | | | svn path=/main/trunk/; revision=3107
* Encapsulate type guessing logic in a new Manifest method.Zac Medico2006-04-091-9/+1
| | | | svn path=/main/trunk/; revision=3106
* Move mf.create out of a loop because it should only need to be called once.Zac Medico2006-04-091-1/+1
| | | | svn path=/main/trunk/; revision=3104
* Protect string indexes during input stripping in dep_getkey and dep_getcpv.Jason Stubbs2006-04-081-11/+7
| | | | | | Bug #129193 svn path=/main/trunk/; revision=3094
* remove reference to a script that doesnt existMike Frysinger2006-04-071-2/+0
| | | | svn path=/main/trunk/; revision=3092
* Speed up portage.config.keys()Alec Warner2006-04-071-6/+1
| | | | svn path=/main/trunk/; revision=3086
* Change == None to is NoneAlec Warner2006-04-071-52/+52
| | | | svn path=/main/trunk/; revision=3085
* Revert FEATURES=noclean behavior so that clean is only skipped after merge. ↵Zac Medico2006-04-051-3/+2
| | | | | | Thanks to azarah for reporting. svn path=/main/trunk/; revision=3077
* Remove the srcroot parameter from env_update because is doesn't work when ↵Zac Medico2006-04-051-13/+3
| | | | | | portage.movefile merges files via os.rename. To do this properly we need to pass in CONTENTS instead. svn path=/main/trunk/; revision=3074
* s/parenreduce/paren_reduce/ comment fix.Jason Stubbs2006-04-031-2/+2
| | | | svn path=/main/trunk/; revision=3065
* Fix a typo from r3058.Zac Medico2006-04-031-1/+1
| | | | svn path=/main/trunk/; revision=3063
* tsk tsk, fix a missing parenthesis :)Alec Warner2006-04-031-1/+1
| | | | svn path=/main/trunk/; revision=3060
* Add a deprecation notice for those who are still using tokenize ( hopefully ↵Alec Warner2006-04-031-1/+3
| | | | | | no one :/ ) svn path=/main/trunk/; revision=3059
* Move DISTDIR initialization from doebuild to fetch and handle read-only file ↵Zac Medico2006-04-031-25/+27
| | | | | | system errors for bug #128506. svn path=/main/trunk/; revision=3058
* fix makelinks logic againMike Frysinger2006-04-011-2/+2
| | | | svn path=/main/trunk/; revision=3048
* Rename local 'root' variable to parent_dir so that it's not confused with ↵Zac Medico2006-04-011-1/+1
| | | | | | portage.root svn path=/main/trunk/; revision=3047
* Fix ROOT handling for timestamps of lib directories. Only run ldconfig when ↵Zac Medico2006-04-011-3/+4
| | | | | | timestamps have changed (the makelinks flag does not force ldconfig unless timestamps have changed). svn path=/main/trunk/; revision=3046
* need to still check makelinksMike Frysinger2006-04-011-1/+1
| | | | svn path=/main/trunk/; revision=3045
* Fix env_update so it runs ldconfig when a lib dir timestamp has changed ↵Zac Medico2006-04-011-19/+27
| | | | | | unless srcroot is not None and no files were installed into libdir. svn path=/main/trunk/; revision=3044
* dont run ldconfig if a package doesnt actually install any librariesMike Frysinger2006-04-011-4/+15
| | | | svn path=/main/trunk/; revision=3043
* Use ensure_dirs for CCACHE_DIR, CONFCACHE_DIR, and DISTCC_DIR.Zac Medico2006-03-301-17/+4
| | | | svn path=/main/trunk/; revision=3041
* Add a reusable ensure_dirs() function and use it for DISTDIR initialization.Zac Medico2006-03-301-24/+1
| | | | svn path=/main/trunk/; revision=3040
* Handle distlocks subdir initialization together with $DISTDIR and ↵Zac Medico2006-03-301-18/+5
| | | | | | $DISTDIR/cvs-src. svn path=/main/trunk/; revision=3038
* Only do recursive permissions on $DISTDIR and $DISTDIR/cvs-src when the top ↵Zac Medico2006-03-291-22/+42
| | | | | | level permissions do not match. Thanks to marienz for reporting. svn path=/main/trunk/; revision=3037
* Clean up code for creation of CCACHEDIR, CONFCACHEDIR, and DISTCC_DIR. ↵Zac Medico2006-03-261-64/+66
| | | | | | Prevent excessive recursive stat calls for bug #127563. svn path=/main/trunk/; revision=3013
* for collision-protect also check that only versions with the same slot can ↵Marius Mauch2006-03-261-2/+4
| | | | | | overwrite each others files svn path=/main/trunk/; revision=3012
* Fix traceback for bug #127573. Thanks to illuminata for reporting and ↵Zac Medico2006-03-251-1/+1
| | | | | | antarus for the patch. svn path=/main/trunk/; revision=3006
* Add lazy loading of virtuals in portage.do_vartree() for backward compatibility.Zac Medico2006-03-251-2/+22
| | | | svn path=/main/trunk/; revision=3004
* Load virtuals on demand in order to avoid needless vdb scanning during a ↵Zac Medico2006-03-251-30/+44
| | | | | | simple 'import portage'. Virtuals are loaded during import, for initialization of portage.settings, only when autouse is enabled (though autouse is disabled by default). svn path=/main/trunk/; revision=2999
* only reuse distfile checksums if the file doesn't existMarius Mauch2006-03-251-1/+1
| | | | svn path=/main/trunk/; revision=2998