summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
...
* Split out a reusable Manifest._parseDigests() method.Zac Medico2006-03-271-4/+10
| | | | svn path=/main/trunk/; revision=3017
* move some elog defaults into make.globals, add new vars for mail from and ↵Marius Mauch2006-03-262-21/+30
| | | | | | subject (bug #116637), change default location for mod_save logfiles to PORT_LOGDIR/elog (bug #124165) svn path=/main/trunk/; revision=3014
* 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 AuxfileFilter to ignore all files in svn or cvs dirsMarius Mauch2006-03-261-1/+1
| | | | svn path=/main/trunk/; revision=3011
* 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
* Add files/ prefix for AUX files in manifest1 entries; fix digest.unused ↵v2.1_pre7Marius Mauch2006-03-251-1/+10
| | | | | | check partially by checking all DIST entries against all SRC_URI entries of a package (instead of per ebuild checks) svn path=/main/trunk/; revision=3002
* 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
* Make ebuild digest reuse existing checksumsMarius Mauch2006-03-252-3/+7
| | | | svn path=/main/trunk/; revision=2997
* Make ebuild digest a bit more verboseMarius Mauch2006-03-251-1/+7
| | | | svn path=/main/trunk/; revision=2996
* FileNotFoundException should be used with the filenameMarius Mauch2006-03-251-1/+1
| | | | svn path=/main/trunk/; revision=2995
* PORTAGE_WORKDIR_MODE is octalMarius Mauch2006-03-241-1/+1
| | | | svn path=/main/trunk/; revision=2994
* add missing manifest moduleMarius Mauch2006-03-241-0/+333
| | | | svn path=/main/trunk/; revision=2992
* Add manifest2 support.Marius Mauch2006-03-243-175/+113
| | | | svn path=/main/trunk/; revision=2990
* Fix crappy error handling for PORTAGE_WORKDIR_MODEMarius Mauch2006-03-241-5/+12
| | | | svn path=/main/trunk/; revision=2989
* Add a portage_debug module and python-trace feature for --debug mode.Zac Medico2006-03-231-0/+116
| | | | svn path=/main/trunk/; revision=2979
* When the post preinst shell tasks fail, write a message to stderr and return ↵Zac Medico2006-03-231-1/+3
| | | | | | it's exit status so that die calls (inside preinst_selinux_labels for example) can work correctly. svn path=/main/trunk/; revision=2974
* Write a message to stderr indicating when install_qa_check fails. See bug ↵Zac Medico2006-03-231-1/+4
| | | | | | #126442. svn path=/main/trunk/; revision=2973
* Fix sandbox feature (broken since r2947).Zac Medico2006-03-201-1/+3
| | | | svn path=/main/trunk/; revision=2963
* Move CacheError from the block of python imports to the block of portage ↵Marien Zwart2006-03-201-2/+2
| | | | | | imports, fix spelling in error message. svn path=/main/trunk/; revision=2960
* Compare new digest data with old digest data and rewrite the new digest only ↵Zac Medico2006-03-191-18/+16
| | | | | | if they differ. Thanks to AllanonJL for reporting this issue. svn path=/main/trunk/; revision=2951
* Catch a possible OSError from the stat call in atomic_ofstream.close().Zac Medico2006-03-191-0/+5
| | | | svn path=/main/trunk/; revision=2950
* Reset the selinux security context before returning from spawn (regression ↵Zac Medico2006-03-181-7/+9
| | | | | | from r2834). See bug #126711. svn path=/main/trunk/; revision=2947
* Fix typo from the last revision.Zac Medico2006-03-181-1/+1
| | | | svn path=/main/trunk/; revision=2946
* Stop swallowing IOError and TypeError exceptions in portdbapi.gvisible(). ↵Zac Medico2006-03-181-2/+6
| | | | | | Write instances of PortageException to stderr. Thanks to marienz for reporting. svn path=/main/trunk/; revision=2945
* Prevent an IOError with errno != ENOENT from being swallowed in ↵Zac Medico2006-03-181-5/+5
| | | | | | flat_hash._setitem(). svn path=/main/trunk/; revision=2944
* Minor speedup for findname2, suggested by Brian HarringAlec Warner2006-03-181-10/+12
| | | | svn path=/main/trunk/; revision=2941
* add short options for --one-shot and --fetch-all-uri to --help output. ↵Kito2006-03-181-2/+2
| | | | | | Closes Bug #126626 svn path=/main/trunk/; revision=2939
* Replace hard coded number 2 in cache modules with errno.ENOENT.Zac Medico2006-03-182-11/+7
| | | | svn path=/main/trunk/; revision=2938
* Change os.makedirs to makedirs (typo from r2934).Zac Medico2006-03-181-1/+1
| | | | svn path=/main/trunk/; revision=2936
* Fix a typo from the last revision.Zac Medico2006-03-181-1/+1
| | | | svn path=/main/trunk/; revision=2935
* Use one makedirs function for all directory creations inside prepare_build_dirs.Zac Medico2006-03-181-67/+33
| | | | svn path=/main/trunk/; revision=2934
* Use loops to consolidate directory cleaning and creation in prepare_build_dirs.Zac Medico2006-03-181-57/+46
| | | | svn path=/main/trunk/; revision=2932
* Fix PORTAGE_WORKDIR_MODE parsing so that the validated value is stored in ↵Zac Medico2006-03-181-2/+5
| | | | | | mysettings. svn path=/main/trunk/; revision=2930
* Catch a possible SyntaxError from the eval function when parsing ↵Zac Medico2006-03-181-1/+1
| | | | | | PORTAGE_WORKDIR_MODE. Thanks to solar for reporting. svn path=/main/trunk/; revision=2929
* Use apply_recursive_permissions for DISTCC_DIR.Zac Medico2006-03-181-7/+4
| | | | svn path=/main/trunk/; revision=2928
* Use apply_recursive_permissions for CCACHE_DIR. Also fix a typo in error ↵Zac Medico2006-03-181-26/+35
| | | | | | handling for CONFCACHE_DIR from r2912. svn path=/main/trunk/; revision=2927
* Use apply_recursive_permissions for CONFCACHE_DIR.Zac Medico2006-03-181-19/+5
| | | | svn path=/main/trunk/; revision=2926
* Add a generic apply_recursive_permissions function and use is for ↵Zac Medico2006-03-182-22/+45
| | | | | | $DISTDIR/cvs-src. svn path=/main/trunk/; revision=2925
* For better handling of $DISTDIR/cvs-src permissions, use os.walk instead of ↵Zac Medico2006-03-171-7/+21
| | | | | | spawning chgrp and chmod. svn path=/main/trunk/; revision=2922
* Fix error handling for $DISTDIR/cvs-src creation and permissions in doebuild.Zac Medico2006-03-171-21/+27
| | | | svn path=/main/trunk/; revision=2919
* Fix typo in variable name from last revision.Zac Medico2006-03-171-1/+1
| | | | svn path=/main/trunk/; revision=2918
* Fix the apply_permissions XOR logic so that mask removes mode bits correctly.Zac Medico2006-03-171-2/+2
| | | | svn path=/main/trunk/; revision=2917
* Improve error handling in prepare_build_dirs for PORT_LOGDIR. Fix doebuild ↵Zac Medico2006-03-171-23/+40
| | | | | | 'logfile' which has caused broken logging since r2894. svn path=/main/trunk/; revision=2915
* Error handling in prepare_build_dirs for DISTCC_DIR.Zac Medico2006-03-171-13/+26
| | | | svn path=/main/trunk/; revision=2914
* Disable confcache when it's not possible to apply correct group permissions ↵Zac Medico2006-03-171-1/+1
| | | | | | to an existing file in CONFCACHE_DIR. svn path=/main/trunk/; revision=2913
* Improve error handling in the CONFCACHE_DIR section of prepare_build_dirs. ↵Zac Medico2006-03-171-35/+40
| | | | | | Thanks to solar for reporting this issue. svn path=/main/trunk/; revision=2912
* Fix permissions functions so that error messages tell exactly which call failed.Zac Medico2006-03-171-28/+48
| | | | svn path=/main/trunk/; revision=2910