summaryrefslogtreecommitdiff
path: root/pym
Commit message (Expand)AuthorAgeFilesLines
* Fix the varexpand quotes tests since quotes are no longer removed by this fun...Zac Medico2007-05-131-2/+2
* Add TODO note about support for blocks within slots. Thanks to Brian Harring...Zac Medico2007-05-121-6/+5
* Make sure USE=test is properly enabled when the test phase is forced via the ...Zac Medico2007-05-091-0/+2
* fix spacing in loadersAlec Warner2007-05-091-3/+3
* For bug #177591, increase shell compatibility by preserving quotes in varexpa...Zac Medico2007-05-081-2/+4
* antarus fears it, and fears it oftenAlec Warner2007-05-081-6/+6
* imports are one module per line, remove type module in favor of the new hotne...Alec Warner2007-05-081-9/+14
* Honestly if they are missing sys, that error message probably won't help any ...Alec Warner2007-05-081-6/+1
* validators++Alec Warner2007-05-082-11/+15
* Prevent blockers that are only partially resolvable by merge order from accid...Zac Medico2007-05-071-1/+10
* Use shlex for better splitting of PORTAGE_RSYNC_OPTS and PORTAGE_RSYNC_EXTRA_...Zac Medico2007-05-061-9/+15
* Use shlex for better splitting of FETCHCOMMAND.Zac Medico2007-05-061-4/+4
* Use varexpand to expand FETCHCOMMAND and RESUMECOMMAND.Zac Medico2007-05-061-6/+7
* For bug #171259, fix vercmp so that implicit _p0 is less than explicit _p0. ...Zac Medico2007-05-051-3/+5
* Add missing base class.Zac Medico2007-05-051-1/+1
* Use match_from_list in order to potentially avoid more blocks.Zac Medico2007-05-051-10/+10
* For bug #175058, comment #15, expand all possible variables in each argument.Zac Medico2007-05-051-3/+3
* For bug #176765, when a new package is blocked by another one that is being r...Zac Medico2007-05-031-3/+17
* Fix eend so that it works properly on a standard BSD console. Thanks to Uber...Zac Medico2007-05-021-0/+3
* Handle KeyError when the ebuild is corrupt.Zac Medico2007-04-301-1/+5
* Fix -* handling in gvisible to match incremental semanticsMarius Mauch2007-04-302-10/+14
* - add new echo module for people who don't want any real loggingMarius Mauch2007-04-308-5/+60
* For bug #175058, avoid potential quoting issues by spawning FETCHCOMMAND with...Zac Medico2007-04-291-6/+9
* For bug #176384, adjust config according to options of the command being resu...Zac Medico2007-04-281-0/+9
* Fix up missing mymergelist variable from the previous commit.Zac Medico2007-04-281-5/+6
* For bug #176305, validate the resume merge list before attempting to verify t...Zac Medico2007-04-281-12/+13
* Always ensure permissions in DISTCC_DIR in order to try to prevent potential ...Zac Medico2007-04-261-1/+1
* For bug #176139, only symlink the distfiles that are required according the c...Zac Medico2007-04-261-1/+1
* For bug #175781, add a higher preference priority for choices where all match...Zac Medico2007-04-241-1/+15
* Also validate RESTRICT inside doebuild().Zac Medico2007-04-201-1/+1
* Also validate SRC_URI inside doebuild().Zac Medico2007-04-201-1/+1
* For bug #175344, validate LICENSE and PROVIDE inside doebuild().Zac Medico2007-04-201-2/+15
* For bug #175344, handle a potential InvalidDependString exception when parsin...Zac Medico2007-04-201-2/+8
* For bug #175344, use cp_list instead of xmatch in order to avoid dep_expand c...Zac Medico2007-04-201-1/+1
* Add CATEGORY to blacklisted variables since it can interfere with CATEGORY gu...Zac Medico2007-04-131-5/+3
* Use catpkgsplit instead of pkgsplit for consistency with usage elsewhere.Zac Medico2007-04-131-2/+2
* Use a config instance that's not locked/immutable.Zac Medico2007-04-131-2/+2
* Efficiently recycle partial valid vdb cache when possible. This reduces disk...Zac Medico2007-04-101-4/+7
* Don't load FEATURES in load_infodir() because FEATURES from the build host sh...Zac Medico2007-04-091-0/+4
* Cache NEEDED in order to optimize update_library_map() calls.Zac Medico2007-04-091-1/+1
* Only apply permissions to ccache, confcache, and distcc dirs when they are cr...Zac Medico2007-04-081-7/+6
* Provide a default value to the getattr call.Zac Medico2007-04-051-1/+1
* Make sure XARGS has a default value.Zac Medico2007-04-051-0/+1
* Don't force OS detection in the portage.data module.Zac Medico2007-04-051-4/+2
* Don't set os.environ["USERLAND"] inside portage.data and rely on USERLAND fro...Zac Medico2007-04-053-12/+4
* Punt the sorted_versions() function in favor of list.sort(vercmp).Zac Medico2007-04-051-32/+7
* For bug #173184, handle the CommandNotFound that is produced during uninstall...Zac Medico2007-04-021-4/+9
* I consulted the python oracle and it told me enumerate was better, so go team...Alec Warner2007-04-011-11/+9
* drop line_count in favor of izip and count(), itertools FOR THE WIN baby.Alec Warner2007-03-312-20/+45
* After talking to marienz, decide that 1 class is better than 4, also realize ...Alec Warner2007-03-312-109/+39