summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* For bug #177591, increase shell compatibility by preserving quotes in ↵Zac Medico2007-05-091-2/+4
| | | | | | varexpand() since quote removal is handled by shlex. (trunk r6504:6505) svn path=/main/branches/2.1.2/; revision=6510
* Make sure USE=test is properly enabled when the test phase is forced via the ↵Zac Medico2007-05-091-0/+2
| | | | | | ebuild command. Thanks to Caster for reporting. (trunk r6507:6508) svn path=/main/branches/2.1.2/; revision=6509
* Use shlex for better splitting of FETCHCOMMAND. (trunk r6489:6490)Zac Medico2007-05-061-4/+4
| | | | svn path=/main/branches/2.1.2/; revision=6491
* Use varexpand to expand FETCHCOMMAND and RESUMECOMMAND. (trunk r6486:6487)Zac Medico2007-05-061-6/+7
| | | | svn path=/main/branches/2.1.2/; revision=6488
* For bug #171259, fix vercmp so that implicit _p0 is less than explicit _p0. ↵Zac Medico2007-05-051-3/+5
| | | | | | Thanks to TGL <degrenier@easyconnect.fr> for the patch. (trunk r6484:6485) svn path=/main/branches/2.1.2/; revision=6486
* For bug #175058, comment #15, expand all possible variables in each ↵Zac Medico2007-05-051-3/+3
| | | | | | argument. (trunk r6477:6478) svn path=/main/branches/2.1.2/; revision=6479
* Fix eend so that it works properly on a standard BSD console. Thanks to ↵Zac Medico2007-05-021-0/+3
| | | | | | UberLord. (trunk r6466:6467) svn path=/main/branches/2.1.2/; revision=6468
* For bug #175058, avoid potential quoting issues by spawning FETCHCOMMAND ↵Zac Medico2007-04-291-6/+9
| | | | | | without a shell. (trunk r6455:6456) svn path=/main/branches/2.1.2/; revision=6457
* Always ensure permissions in DISTCC_DIR in order to try to prevent potential ↵v2.1.2.5Zac Medico2007-04-261-1/+1
| | | | | | permission problems for non-root users who are in the portage group (userpriv, etc.). (trunk r6439:6440) svn path=/main/branches/2.1.2/; revision=6441
* For bug #176139, only symlink the distfiles that are required according the ↵Zac Medico2007-04-261-1/+1
| | | | | | current USE settings. (trunk r6437:6438) svn path=/main/branches/2.1.2/; revision=6439
* 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). (trunk r6431:6432) svn path=/main/branches/2.1.2/; revision=6433
* Also validate RESTRICT inside doebuild(). (trunk r6426:6427)Zac Medico2007-04-201-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=6428
* Also validate SRC_URI inside doebuild(). (trunk r6424:6425)Zac Medico2007-04-201-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=6426
* For bug #175344, validate LICENSE and PROVIDE inside doebuild(). (trunk ↵Zac Medico2007-04-201-2/+15
| | | | | | r6422:6423) svn path=/main/branches/2.1.2/; revision=6424
* Add CATEGORY to blacklisted variables since it can interfere with CATEGORY ↵Zac Medico2007-04-131-5/+3
| | | | | | guessing inside doebuild. (trunk r6385:6386) svn path=/main/branches/2.1.2/; revision=6387
* Use catpkgsplit instead of pkgsplit for consistency with usage elsewhere. ↵Zac Medico2007-04-131-2/+2
| | | | | | (trunk r6383:6384) svn path=/main/branches/2.1.2/; revision=6385
* 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. (trunk r6359:6360) svn path=/main/branches/2.1.2/; revision=6361
* 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/branches/2.1.2/; revision=6359
* 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. (trunk r6353:6354) svn path=/main/branches/2.1.2/; revision=6355
* For bug #173184, handle the CommandNotFound that is produced during ↵Zac Medico2007-04-021-4/+9
| | | | | | uninstallation of prelink. (trunk r6331:6332) svn path=/main/branches/2.1.2/; revision=6333
* Fix missing import. (trunk r6324:6325)Zac Medico2007-03-311-0/+1
| | | | svn path=/main/branches/2.1.2/; revision=6326
* For bug #170178, remove all hardcoded references to '/usr/lib/portage'. ↵Zac Medico2007-03-272-3/+4
| | | | | | (trunk r6202:6203) svn path=/main/branches/2.1.2/; revision=6293
* Clean up and simplify preference selection logic for bug #171840. (trunk ↵Zac Medico2007-03-231-47/+26
| | | | | | r6268:6269) svn path=/main/branches/2.1.2/; revision=6270
* For bug #171840, consider all choices for slot intersection and promote ↵Zac Medico2007-03-231-3/+7
| | | | | | those that have upgrades relative to other choices. (trunk r6266:6267) svn path=/main/branches/2.1.2/; revision=6268
* Ignore non-existent directories for bug #171809. This is required for ↵Zac Medico2007-03-231-1/+9
| | | | | | readonly mode. (trunk r6264:6265) svn path=/main/branches/2.1.2/; revision=6266
* Fix a utime call to prevent a timestamp collision for bug #171117. (trunk ↵Zac Medico2007-03-161-2/+2
| | | | | | r6216:6217) svn path=/main/branches/2.1.2/; revision=6218
* For bug #171117, ensure that the new and old config have different ↵Zac Medico2007-03-161-1/+7
| | | | | | timestamps (for the benefit of programs like rsync that need distiguishable timestamps to detect file changes). Thanks to Ben Bennett <sink@limey.net> for reporting. (trunk r6214:6215) svn path=/main/branches/2.1.2/; revision=6216
* Automatically convert ROOT and PORTAGE_CONFIGROOT to absolute paths when ↵Zac Medico2007-03-161-4/+4
| | | | | | necessary since relative paths lead to problems. (trunk r6209:6211) svn path=/main/branches/2.1.2/; revision=6214
* Remove the KVERS environment variable since it's code that creates it is ↵v2.1.2.1Zac Medico2007-03-041-4/+0
| | | | | | broken anyway (only sets KVERS="." in the general case). (trunk r6165:6166) svn path=/main/branches/2.1.2/; revision=6167
* Pass waiting_msg into recursive lockfile() calls. (trunk r6155:6156)Zac Medico2007-03-031-2/+5
| | | | svn path=/main/branches/2.1.2/; revision=6157
* Add missing sys import. (trunk r6145:6146)Zac Medico2007-03-031-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=6147
* For bug #138840, show a more informative message when waiting for a ↵Zac Medico2007-03-032-27/+43
| | | | | | distfiles lock due to parallel-fetch. Thanks to David Watzke <david@watzke.cz> for the initial patch. (trunk r6142:6143) svn path=/main/branches/2.1.2/; revision=6144
* Fix types.InstanceType test which is failing now for some reason. (trunk ↵Zac Medico2007-03-031-1/+1
| | | | | | r6136:6137) svn path=/main/branches/2.1.2/; revision=6140
* Fix the rest of the broken except statement syntax. (trunk r6120:6121)Zac Medico2007-03-011-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=6122
* For bug #168823, fix broken except statement syntax that prevents the ↵Zac Medico2007-03-011-1/+1
| | | | | | ValueError from being caught as intended. (trunk r6101:6102) svn path=/main/branches/2.1.2/; revision=6103
* Clean up os.environ["USERLAND"] pollution from the portage_data module so ↵Zac Medico2007-02-241-1/+8
| | | | | | that it doesn't interfere with repoman. (trunk r6067:6068) svn path=/main/branches/2.1.2/; revision=6069
* Make verify_all() return an "insufficient data" error if there is not at ↵Zac Medico2007-02-232-0/+22
| | | | | | least one supported hash type. Make fetch() bail out when this error occurs. (trunk r6054:6056) svn path=/main/branches/2.1.2/; revision=6057
* Don't bother to parse ${FILESDIR}/digest-* when manifest1_compat is ↵Zac Medico2007-02-221-3/+3
| | | | | | disabled. (trunk r6044:6045) svn path=/main/branches/2.1.2/; revision=6046
* For bug #167667, use the existence of ${PORTDIR}/manifest1_obsolete to ↵Zac Medico2007-02-222-2/+6
| | | | | | trigger the disabling of manifest1/digest file generation. This toggle is repo/overlay specific, allowing a specific overlay to drop manifest1 by adding the manifest1_obsolete file. (trunk r6040:6041) svn path=/main/branches/2.1.2/; revision=6043
* Make sure that ${A} in initialized in case pkg_nofetch() needs to be called. ↵Zac Medico2007-02-221-0/+1
| | | | | | Thanks to Peper for reporting. (trunk r6038:6039) svn path=/main/branches/2.1.2/; revision=6040
* Raise a CommandNotFound exception when necessary, to ease troubleshooting. ↵Zac Medico2007-02-211-2/+2
| | | | | | Thanks to marienz for reporting. (trunk r6020:6021) svn path=/main/branches/2.1.2/; revision=6022
* For bug #167795, try avoid the population routine when possible, so that ↵Zac Medico2007-02-201-0/+11
| | | | | | FEATURES=buildpkg doesn't always force population. (trunk r6018:6019) svn path=/main/branches/2.1.2/; revision=6020
* For bug #163990, warn about binary packages with invalid categories and do ↵Zac Medico2007-02-181-0/+18
| | | | | | not allow them to be installed. (trunk r5989:5990) svn path=/main/branches/2.1.2/; revision=5991
* For bug #163990, warn about ebuilds with invalid categories and do not allow ↵Zac Medico2007-02-181-1/+6
| | | | | | them to be installed. (trunk r5987:5988) svn path=/main/branches/2.1.2/; revision=5989
* Detect potential issues with mtime granlarity in env_update() and sleep if ↵Zac Medico2007-02-161-1/+13
| | | | | | necessary. Thanks to Brian Harring for reporting. (trunk r5960:5961) svn path=/main/branches/2.1.2/; revision=5972
* Make xterm titles work even when color is disabled. Thanks to Joachim ↵Zac Medico2007-02-121-1/+1
| | | | | | Kaeber <joachim.kaeber@web.de> in bug #166255. (trunk r5949:5950) svn path=/main/branches/2.1.2/; revision=5958
* Synchronize required hash code in all relevant places. (trunk r5924)Zac Medico2007-02-073-8/+13
| | | | svn path=/main/branches/2.1.2/; revision=5925
* For bug #165783, handle a potential InvalidDependString exception inside ↵Zac Medico2007-02-071-4/+10
| | | | | | doebuild(). (trunk r5920) svn path=/main/branches/2.1.2/; revision=5921
* For bug #165783, handle a potential InvalidDependString exception inside ↵Zac Medico2007-02-071-3/+9
| | | | | | digestgen(). (trunk r5916) svn path=/main/branches/2.1.2/; revision=5917
* For backward compatibility with api consumers, _dep_check_strict behavior ↵Zac Medico2007-02-071-2/+3
| | | | | | will be explicitly enabled as necessary. Thanks to Brian <dol-sen@telus.net> for reporting issues with porthole and equery. (trunk r5907) svn path=/main/branches/2.1.2/; revision=5911