summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove the srcroot parameter from env_update because is doesn't work when ↵Zac Medico2006-04-051-13/+3
| | | | | | portage.movefile merges files via os.rename. To do this properly we need to pass in CONTENTS instead. svn path=/main/trunk/; revision=3074
* s/parenreduce/paren_reduce/ comment fix.Jason Stubbs2006-04-031-2/+2
| | | | svn path=/main/trunk/; revision=3065
* Fix a typo from r3058.Zac Medico2006-04-031-1/+1
| | | | svn path=/main/trunk/; revision=3063
* tsk tsk, fix a missing parenthesis :)Alec Warner2006-04-031-1/+1
| | | | svn path=/main/trunk/; revision=3060
* Add a deprecation notice for those who are still using tokenize ( hopefully ↵Alec Warner2006-04-031-1/+3
| | | | | | no one :/ ) svn path=/main/trunk/; revision=3059
* Move DISTDIR initialization from doebuild to fetch and handle read-only file ↵Zac Medico2006-04-031-25/+27
| | | | | | system errors for bug #128506. svn path=/main/trunk/; revision=3058
* fix makelinks logic againMike Frysinger2006-04-011-2/+2
| | | | svn path=/main/trunk/; revision=3048
* Rename local 'root' variable to parent_dir so that it's not confused with ↵Zac Medico2006-04-011-1/+1
| | | | | | portage.root svn path=/main/trunk/; revision=3047
* Fix ROOT handling for timestamps of lib directories. Only run ldconfig when ↵Zac Medico2006-04-011-3/+4
| | | | | | timestamps have changed (the makelinks flag does not force ldconfig unless timestamps have changed). svn path=/main/trunk/; revision=3046
* need to still check makelinksMike Frysinger2006-04-011-1/+1
| | | | svn path=/main/trunk/; revision=3045
* Fix env_update so it runs ldconfig when a lib dir timestamp has changed ↵Zac Medico2006-04-011-19/+27
| | | | | | unless srcroot is not None and no files were installed into libdir. svn path=/main/trunk/; revision=3044
* dont run ldconfig if a package doesnt actually install any librariesMike Frysinger2006-04-011-4/+15
| | | | svn path=/main/trunk/; revision=3043
* Use ensure_dirs for CCACHE_DIR, CONFCACHE_DIR, and DISTCC_DIR.Zac Medico2006-03-301-17/+4
| | | | svn path=/main/trunk/; revision=3041
* Add a reusable ensure_dirs() function and use it for DISTDIR initialization.Zac Medico2006-03-301-24/+1
| | | | svn path=/main/trunk/; revision=3040
* Handle distlocks subdir initialization together with $DISTDIR and ↵Zac Medico2006-03-301-18/+5
| | | | | | $DISTDIR/cvs-src. svn path=/main/trunk/; revision=3038
* Only do recursive permissions on $DISTDIR and $DISTDIR/cvs-src when the top ↵Zac Medico2006-03-291-22/+42
| | | | | | level permissions do not match. Thanks to marienz for reporting. svn path=/main/trunk/; revision=3037
* 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 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
* 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-251-1/+1
| | | | svn path=/main/trunk/; revision=2997
* Make ebuild digest a bit more verboseMarius Mauch2006-03-251-1/+7
| | | | svn path=/main/trunk/; revision=2996
* PORTAGE_WORKDIR_MODE is octalMarius Mauch2006-03-241-1/+1
| | | | svn path=/main/trunk/; revision=2994
* Add manifest2 support.Marius Mauch2006-03-241-168/+99
| | | | 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
* 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
* 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
* Minor speedup for findname2, suggested by Brian HarringAlec Warner2006-03-181-10/+12
| | | | svn path=/main/trunk/; revision=2941
* 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-181-21/+3
| | | | | | $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
* 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