summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* Fix -* handling in gvisible to match incremental semanticsMarius Mauch2007-04-302-10/+14
| | | | svn path=/main/trunk/; revision=6459
* - add new echo module for people who don't want any real loggingMarius Mauch2007-04-308-5/+60
| | | | | | | | - add copyright header in elog modules and enable keyword substitution - enable save_summary and echo modules in make.globals svn path=/main/trunk/; revision=6458
* For bug #175058, avoid potential quoting issues by spawning FETCHCOMMAND ↵Zac Medico2007-04-291-6/+9
| | | | | | without a shell. svn path=/main/trunk/; revision=6456
* For bug #176384, adjust config according to options of the command being ↵Zac Medico2007-04-281-0/+9
| | | | | | resumed. svn path=/main/trunk/; revision=6454
* Fix up missing mymergelist variable from the previous commit.Zac Medico2007-04-281-5/+6
| | | | svn path=/main/trunk/; revision=6446
* For bug #176305, validate the resume merge list before attempting to verify ↵Zac Medico2007-04-281-12/+13
| | | | | | the ebuild manifests. svn path=/main/trunk/; revision=6444
* Always ensure permissions in DISTCC_DIR in order to try to prevent potential ↵Zac Medico2007-04-261-1/+1
| | | | | | permission problems for non-root users who are in the portage group (userpriv, etc.). svn path=/main/trunk/; revision=6440
* For bug #176139, only symlink the distfiles that are required according the ↵Zac Medico2007-04-261-1/+1
| | | | | | current USE settings. svn path=/main/trunk/; revision=6438
* For bug #175781, add a higher preference priority for choices where all ↵Zac Medico2007-04-241-1/+15
| | | | | | matching slots are installed (not just any slot). svn path=/main/trunk/; revision=6432
* Also validate RESTRICT inside doebuild().Zac Medico2007-04-201-1/+1
| | | | svn path=/main/trunk/; revision=6427
* Also validate SRC_URI inside doebuild().Zac Medico2007-04-201-1/+1
| | | | svn path=/main/trunk/; revision=6425
* For bug #175344, validate LICENSE and PROVIDE inside doebuild().Zac Medico2007-04-201-2/+15
| | | | svn path=/main/trunk/; revision=6423
* For bug #175344, handle a potential InvalidDependString exception when ↵Zac Medico2007-04-201-2/+8
| | | | | | parsing PROVIDE. svn path=/main/trunk/; revision=6419
* For bug #175344, use cp_list instead of xmatch in order to avoid dep_expand ↵Zac Medico2007-04-201-1/+1
| | | | | | calls. svn path=/main/trunk/; revision=6417
* Add CATEGORY to blacklisted variables since it can interfere with CATEGORY ↵Zac Medico2007-04-131-5/+3
| | | | | | guessing inside doebuild. svn path=/main/trunk/; revision=6386
* Use catpkgsplit instead of pkgsplit for consistency with usage elsewhere.Zac Medico2007-04-131-2/+2
| | | | svn path=/main/trunk/; revision=6384
* Use a config instance that's not locked/immutable.Zac Medico2007-04-131-2/+2
| | | | svn path=/main/trunk/; revision=6383
* Efficiently recycle partial valid vdb cache when possible. This reduces ↵Zac Medico2007-04-101-4/+7
| | | | | | disk load when switching between versions of portage that cache different keys. svn path=/main/trunk/; revision=6360
* Don't load FEATURES in load_infodir() because FEATURES from the build host ↵Zac Medico2007-04-091-0/+4
| | | | | | shouldn't be interpreted asFEATURES on the client system. Thanks to Thanks to Chri svn path=/main/trunk/; revision=6358
* Cache NEEDED in order to optimize update_library_map() calls.Zac Medico2007-04-091-1/+1
| | | | svn path=/main/trunk/; revision=6356
* Only apply permissions to ccache, confcache, and distcc dirs when they are ↵Zac Medico2007-04-081-7/+6
| | | | | | created in order to avoid interference with whatever the user's preferred permissions are. Thanks to Diego Pettenò <flameeyes@gmail.com> for reporting. svn path=/main/trunk/; revision=6354
* Provide a default value to the getattr call.Zac Medico2007-04-051-1/+1
| | | | svn path=/main/trunk/; revision=6344
* Make sure XARGS has a default value.Zac Medico2007-04-051-0/+1
| | | | svn path=/main/trunk/; revision=6343
* Don't force OS detection in the portage.data module.Zac Medico2007-04-051-4/+2
| | | | svn path=/main/trunk/; revision=6342
* Don't set os.environ["USERLAND"] inside portage.data and rely on USERLAND ↵Zac Medico2007-04-053-12/+4
| | | | | | from the profile instead (bail out if necessary when USERLAND is unset). svn path=/main/trunk/; revision=6341
* Punt the sorted_versions() function in favor of list.sort(vercmp).Zac Medico2007-04-051-32/+7
| | | | svn path=/main/trunk/; revision=6339
* For bug #173184, handle the CommandNotFound that is produced during ↵Zac Medico2007-04-021-4/+9
| | | | | | uninstallation of prelink. svn path=/main/trunk/; revision=6332
* I consulted the python oracle and it told me enumerate was better, so go ↵Alec Warner2007-04-011-11/+9
| | | | | | team enumerate svn path=/main/trunk/; revision=6330
* drop line_count in favor of izip and count(), itertools FOR THE WIN baby.Alec Warner2007-03-312-20/+45
| | | | svn path=/main/trunk/; revision=6329
* After talking to marienz, decide that 1 class is better than 4, also realize ↵Alec Warner2007-03-312-109/+39
| | | | | | that UserDict has most of the dict methods exposed, so drop them. Also add a LoaderError Exception. Still to do? add a validation callable into the loader to validate data. svn path=/main/trunk/; revision=6328
* Fix missing import.Zac Medico2007-03-311-0/+1
| | | | svn path=/main/trunk/; revision=6325
* For bug #172571, use socket.AF_INET as the default family for ↵Zac Medico2007-03-281-1/+1
| | | | | | socket.getaddrinfo(). svn path=/main/trunk/; revision=6321
* spaces -> tabsZac Medico2007-03-281-1/+1
| | | | svn path=/main/trunk/; revision=6318
* spaces -> tabsZac Medico2007-03-281-3/+3
| | | | svn path=/main/trunk/; revision=6317
* Correctly pull the metadata again when the node is converted.Zac Medico2007-03-281-5/+6
| | | | svn path=/main/trunk/; revision=6307
* Convert "ebuild" and "binary" "nomerge" nodes into "installed" nodes for ↵Zac Medico2007-03-281-0/+3
| | | | | | greater consistency in the depgraph. svn path=/main/trunk/; revision=6305
* Continue to support profile masking at least until bug #170697 is settled.Zac Medico2007-03-261-0/+13
| | | | svn path=/main/trunk/; revision=6292
* minor name changes for bin tests, svn propset keywords Id stuffAlec Warner2007-03-262-3/+3
| | | | svn path=/main/trunk/; revision=6291
* fix broken PortageModule classesAlec Warner2007-03-261-1/+3
| | | | svn path=/main/trunk/; revision=6290
* fix tests for PortageModulesFileAlec Warner2007-03-261-4/+7
| | | | svn path=/main/trunk/; revision=6289
* clean up some init functions, add PortageModules classAlec Warner2007-03-261-6/+39
| | | | svn path=/main/trunk/; revision=6288
* fix some tests, break othersAlec Warner2007-03-263-4/+39
| | | | svn path=/main/trunk/; revision=6287
* Fix insecure tempfile usageAlec Warner2007-03-263-6/+11
| | | | svn path=/main/trunk/; revision=6286
* fix grammar in error outputMike Frysinger2007-03-251-1/+1
| | | | svn path=/main/trunk/; revision=6285
* Verify the Manifest first even if there's only one package (prior to the ↵Zac Medico2007-03-251-1/+0
| | | | | | fetch phase). svn path=/main/trunk/; revision=6283
* Do the "*" check as early as possible in config.getMissingLicenses().Zac Medico2007-03-251-3/+4
| | | | svn path=/main/trunk/; revision=6282
* split the loader classes into their own file, split the recursive filename ↵Alec Warner2007-03-252-167/+168
| | | | | | grabbing out into it's own function svn path=/main/trunk/; revision=6281
* completely rewrite file bits, use Loader classes to push loading ↵Alec Warner2007-03-251-72/+197
| | | | | | functionality down svn path=/main/trunk/; revision=6280
* Fix the rest of the testsAlec Warner2007-03-253-7/+7
| | | | svn path=/main/trunk/; revision=6279
* Verify all ebuild manifests before building anything now so that the user is ↵Zac Medico2007-03-241-0/+29
| | | | | | notified of failure as soon as possible. svn path=/main/trunk/; revision=6277