summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Pass a cache instance into metadata_overlay since it doesn't have enough ↵Zac Medico2006-12-231-1/+3
| | | | | | information to construct one itself. svn path=/main/trunk/; revision=5356
* When an unprivileged user runs portage (not in the portage group), use ↵Zac Medico2006-12-221-5/+14
| | | | | | metadata_overlay together with a volatile in-memory cache module in order to implement cache writes. This allows, for example, a user who's not in the portage group to run `ebuild foo.ebuild digest` (issue reported by Charlie Shepherd <masterdriverz@gentoo.org>). svn path=/main/trunk/; revision=5354
* Remove two old functions, appear to be relics from 2.0.X branch, no longer ↵Alec Warner2006-12-221-26/+0
| | | | | | used by portage or gentoolkit or esearch svn path=/main/trunk/; revision=5353
* Use a pipe instead of a temp file for the depend phase.Zac Medico2006-12-221-50/+33
| | | | svn path=/main/trunk/; revision=5350
* Fix the "help" phase so that it works without build dirs.Zac Medico2006-12-221-1/+1
| | | | svn path=/main/trunk/; revision=5347
* Create a backward compatibility mode for dep_check() so that emerge can use ↵Zac Medico2006-12-211-1/+2
| | | | | | it to gracefully deal with installed packages that have invalid atoms or dep syntax. svn path=/main/trunk/; revision=5345
* Use the return value from setdefault to avoid an extra dict lookup.Zac Medico2006-12-211-2/+1
| | | | svn path=/main/trunk/; revision=5344
* For bug #158632, make aux_get caching safe for missing values in cache entries.Zac Medico2006-12-211-3/+4
| | | | svn path=/main/trunk/; revision=5342
* When a removal phase fails, tell the user where the ebuild is and advise ↵Zac Medico2006-12-211-6/+8
| | | | | | them that the ebuild can be removed in order to skip the removal phases. svn path=/main/trunk/; revision=5340
* Add missing newlines to the warning message that's printed when the user has ↵Zac Medico2006-12-201-4/+4
| | | | | | distlocks enabled together with skiprocheck and the filesystem is readonly. svn path=/main/trunk/; revision=5331
* For bug #158608, don't attempt to use distlocks when it's detected that the ↵Zac Medico2006-12-201-17/+13
| | | | | | filesystem is readonly (unless "skiprocheck" is in FEATURES for some strange reason). svn path=/main/trunk/; revision=5330
* For bug #158558, make the unmerge phase do automatic cleanup for broken ↵Zac Medico2006-12-191-1/+6
| | | | | | vardbapi.move_ent() in portage versions before 2.1.2. svn path=/main/trunk/; revision=5328
* For bug #158558, fix broken ebuild rename logic in vardbapi.move_ent().Zac Medico2006-12-191-7/+11
| | | | svn path=/main/trunk/; revision=5327
* Make binarytree.move_ent() properly update PF.Zac Medico2006-12-191-0/+1
| | | | svn path=/main/trunk/; revision=5326
* New elog modules for dismerging messages into a single file/mailMarius Mauch2006-12-191-1/+4
| | | | svn path=/main/trunk/; revision=5325
* Increase cache hits in portdbapi.xmatch().Zac Medico2006-12-191-1/+4
| | | | svn path=/main/trunk/; revision=5323
* Make portdbapi cache SLOT in addition to EAPI and KEYWORDS in order to ↵Zac Medico2006-12-181-22/+26
| | | | | | further optimize dep matching/selection. svn path=/main/trunk/; revision=5315
* Make use_reduce raise an InvalidDependString exception for use? conditionals ↵Zac Medico2006-12-161-18/+19
| | | | | | that aren't followed by parenthesis and add appropriate exception handling in dep_check. svn path=/main/trunk/; revision=5305
* Make dep_check validate all depstring atoms in order to prevent problems ↵Zac Medico2006-12-161-0/+3
| | | | | | from occuring later due to unexpected invalid atoms. svn path=/main/trunk/; revision=5304
* Split ACCEPT_KEYWORDS before entering the loop for better efficiency.Zac Medico2006-12-161-1/+2
| | | | svn path=/main/trunk/; revision=5300
* Make sure eapi is defined in order to prevent a NameError.Zac Medico2006-12-161-0/+1
| | | | svn path=/main/trunk/; revision=5299
* Cache KEYWORDS and EAPI metadata values in order to speed up ↵Zac Medico2006-12-161-9/+15
| | | | | | portdbapi.gvisible() calls. This greatly improves repoman performance (help emerge a little too). svn path=/main/trunk/; revision=5298
* Move the biolerplate cpv_all() implementation from portdbapi to dbapi.Zac Medico2006-12-131-6/+6
| | | | svn path=/main/trunk/; revision=5281
* All portage.fetch() to succeed even if FETCHCOMMAND and RESUMECOMMAND aren't ↵Zac Medico2006-12-111-6/+9
| | | | | | defined. svn path=/main/trunk/; revision=5274
* Make the fetch phase bail out if FETCHCOMMAND or RESUMECOMMAND are missing. ↵Zac Medico2006-12-111-0/+6
| | | | | | Thanks to Flameeyes for reporting. svn path=/main/trunk/; revision=5273
* Ensure that the root of the vdb exists before attempting to lock it. Thanks ↵Zac Medico2006-12-111-0/+2
| | | | | | to Flameeyes for reporting. svn path=/main/trunk/; revision=5267
* Initialize the match cache in the bindbapi constructor.Zac Medico2006-12-101-0/+1
| | | | svn path=/main/trunk/; revision=5254
* Cache the results of fakedbapi.match() calls and clear the cache ↵Zac Medico2006-12-101-0/+16
| | | | | | automatically when necessary. svn path=/main/trunk/; revision=5253
* Use dep_getcpv() inside dep_expand() for code sharing and caching.Zac Medico2006-12-101-15/+5
| | | | svn path=/main/trunk/; revision=5252
* Avoid unnecessary dbapi.cp_list() calls inside cpv_expand().Zac Medico2006-12-101-2/+2
| | | | svn path=/main/trunk/; revision=5249
* Add use.force support to dep_check for repoman especially. Thanks to ↵Zac Medico2006-12-091-1/+5
| | | | | | Flameeyes for reporting and tesing. svn path=/main/trunk/; revision=5239
* Fix a type from the previous commit.Zac Medico2006-12-091-2/+1
| | | | svn path=/main/trunk/; revision=5237
* Fix broken SLOT update logic in fakedbapi.cpv_inject().Zac Medico2006-12-091-3/+7
| | | | svn path=/main/trunk/; revision=5236
* Remove locking from dbapi.aux_update() implementations so that the caller ↵Zac Medico2006-12-091-21/+10
| | | | | | can handle locking instead. svn path=/main/trunk/; revision=5230
* Clean up vardbapi.aux_get().Zac Medico2006-12-091-14/+14
| | | | svn path=/main/trunk/; revision=5229
* s/zip/izip/ some moreZac Medico2006-12-071-3/+3
| | | | svn path=/main/trunk/; revision=5212
* Catch an exception instead of using a redundant os.access call.Zac Medico2006-12-071-2/+2
| | | | svn path=/main/trunk/; revision=5209
* Enable FakeVartree to populate the virtuals so that the vdb doesn't have to ↵Zac Medico2006-12-071-5/+3
| | | | | | be scanned separately. svn path=/main/trunk/; revision=5207
* Share the same config instance between portagetree and portdbapi instances ↵Zac Medico2006-12-071-1/+1
| | | | | | since clone isn't needed here. Also, trigger population of virtuals prior to cloning in emerge. This reduces the number of times the virtuals are populated from 3 to just 1. svn path=/main/trunk/; revision=5206
* Fix the 'TypeError: not all arguments converted during string formatting' ↵Zac Medico2006-12-071-4/+4
| | | | | | for bug #157385. svn path=/main/trunk/; revision=5203
* Fix broken SRC_URI logic in doebuild.Zac Medico2006-12-071-7/+3
| | | | svn path=/main/trunk/; revision=5199
* Fix broken SRC_URI logic from the previous commit.Zac Medico2006-12-071-3/+3
| | | | svn path=/main/trunk/; revision=5198
* For bug #157385, enable portage.digestgen() to fetch any distfiles for which ↵Zac Medico2006-12-071-2/+34
| | | | | | there are no existing digests. svn path=/main/trunk/; revision=5197
* Implement fakedbapi.aux_update().Zac Medico2006-12-061-0/+3
| | | | svn path=/main/trunk/; revision=5178
* Use portage.chdir() instead of os.chdir() in order to avoid an 'OSError: ↵Zac Medico2006-12-041-1/+1
| | | | | | [Errno 2] No such file or directory' if the working directory doesn't exist. Thanks to Caster for reporting. svn path=/main/trunk/; revision=5171
* When portdbapi.aux_get() generates a KeyError in portage.getmaskingstatus(), ↵Zac Medico2006-12-041-1/+6
| | | | | | handle it by reporting "corruption". svn path=/main/trunk/; revision=5166
* Move the global statement out of the try block so that it's clearly in scope ↵Zac Medico2006-12-031-1/+1
| | | | | | for the finally block. svn path=/main/trunk/; revision=5161
* Make portage.digestgen() automatically exempt the depend phase from Manifest ↵Zac Medico2006-12-031-36/+46
| | | | | | checks so that it works for repoman without triggering a digest verification failure. svn path=/main/trunk/; revision=5160
* Skip digest checks when digest is in features.Zac Medico2006-12-021-0/+1
| | | | svn path=/main/trunk/; revision=5159
* Make sure that all depend phases triggered by the digest phase are exempt ↵Zac Medico2006-12-021-34/+33
| | | | | | from digest checks. svn path=/main/trunk/; revision=5157