summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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-302-24/+21
| | | | svn path=/main/trunk/; revision=3040
* The return value from apply_permissions now indicates whether or not the ↵Zac Medico2006-03-301-1/+7
| | | | | | permissions needed to be modified. svn path=/main/trunk/; revision=3039
* 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
* Compare distfiles timestamps with the files in PORTAGE_ACTUAL_DISTDIR ↵Zac Medico2006-03-291-1/+1
| | | | | | instead of with the symlinks in DISTDIR. Thanks to Ed Catmur for this patch (bug #127930). svn path=/main/trunk/; revision=3036
* Ignore more system libraries in python-trace mode.Zac Medico2006-03-291-5/+4
| | | | svn path=/main/trunk/; revision=3035
* Automatically follow symlinks in the atomic_ofstream constructor. See bug ↵Zac Medico2006-03-291-1/+13
| | | | | | #127897. svn path=/main/trunk/; revision=3034
* add missing space in quiet col outputMike Frysinger2006-03-291-1/+1
| | | | svn path=/main/trunk/; revision=3033
* Create a single colorize() function in the output module and use it to ↵Zac Medico2006-03-291-44/+21
| | | | | | generate all of the existing color functions. svn path=/main/trunk/; revision=3030
* Recommend PORTAGE_RSYNC_EXTRA_OPTS instead of PORTAGE_RSYNC_OPTSMarius Mauch2006-03-281-1/+1
| | | | svn path=/main/trunk/; revision=3029
* - set sane perms on unpacking. If anybody hates this than they are welcome ↵Ned Ludd2006-03-271-0/+1
| | | | | | to tie it into FEATURES= sfperms svn path=/main/trunk/; revision=3028
* Sort the hashes for manifest2 lines to that output is reproducible.Zac Medico2006-03-271-3/+3
| | | | svn path=/main/trunk/; revision=3026
* sort digest/Manifest files by 1) filetype (v2 only) 2) filename (v1+v2) 3) ↵Marius Mauch2006-03-271-5/+15
| | | | | | hashtype (v1 only) svn path=/main/trunk/; revision=3024
* Compare new digest data with old digest data and rewrite the new digest only ↵Zac Medico2006-03-271-4/+36
| | | | | | if they differ (forward port r2951 from manifest1 to manifest2). svn path=/main/trunk/; revision=3022
* Use write_atomic for updates of old style digest files.Zac Medico2006-03-271-4/+3
| | | | svn path=/main/trunk/; revision=3021
* fix some nasty repoman tricks causing problems (always use absolute paths ↵Marius Mauch2006-03-271-3/+3
| | | | | | with manifest2 code) svn path=/main/trunk/; revision=3020
* Split out a reusable Manifest._createDigestLines1() method.Zac Medico2006-03-271-9/+13
| | | | svn path=/main/trunk/; revision=3019
* fix a typo from the last revision.Zac Medico2006-03-271-1/+1
| | | | svn path=/main/trunk/; revision=3018
* Split out a reusable Manifest._parseDigests() method.Zac Medico2006-03-271-4/+10
| | | | svn path=/main/trunk/; revision=3017
* Allow users in the portage group to fetch. Thanks to truedfx for reporting ↵Zac Medico2006-03-261-5/+12
| | | | | | this regression. svn path=/main/trunk/; revision=3015
* move some elog defaults into make.globals, add new vars for mail from and ↵Marius Mauch2006-03-264-22/+50
| | | | | | 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-253-10/+26
| | | | | | 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-253-33/+47
| | | | | | 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
* Replacing arch specific make.conf files with patches for the fallback ↵Marius Mauch2006-03-2425-4347/+754
| | | | | | | | | make.conf which should be applied in the ebuild. Add a helper script to update patches if the main make.conf is changed. svn path=/main/trunk/; revision=2987
* Create tbz2 package directly in ${PKGDIR}/All to avoid need for temp file ↵Zac Medico2006-03-241-8/+9
| | | | | | (inefficient) and avoid selinux label issues for bug #127374. svn path=/main/trunk/; revision=2986
* Add a portage_debug module and python-trace feature for --debug mode.Zac Medico2006-03-233-0/+124
| | | | 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
* Include the die call itself (including line number) in the printed call ↵Zac Medico2006-03-231-0/+1
| | | | | | stack when an ebuild dies. svn path=/main/trunk/; revision=2972
* Enable bash tracing during sourcing of bashrc for --debug mode. See bug ↵Zac Medico2006-03-221-1/+9
| | | | | | #126442. svn path=/main/trunk/; revision=2971
* Make emerge-webrsync only do metadata-transfer when necessary. Thanks to ↵Zac Medico2006-03-201-2/+6
| | | | | | Patrick Lauer for reporting. svn path=/main/trunk/; revision=2965
* Move has, hasq, and hasv functions to isolated-functions.sh since they do ↵Zac Medico2006-03-202-16/+17
| | | | | | not depend on ebuild.sh. svn path=/main/trunk/; revision=2964
* Fix sandbox feature (broken since r2947).Zac Medico2006-03-201-1/+3
| | | | svn path=/main/trunk/; revision=2963
* Do not split PORTAGE_RSYNC_EXTRA_OPTS and add it directly to rsynccommand in ↵Zac Medico2006-03-201-10/+11
| | | | | | order to preserve (hypothetical) quoted whitespace. svn path=/main/trunk/; revision=2961
* 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
* Miscellaneous fixes and cleanup for the rsync options handling.Zac Medico2006-03-191-43/+71
| | | | svn path=/main/trunk/; revision=2959