summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* Move some color mappings to ensure that they do not override the user ↵Zac Medico2006-04-051-5/+5
| | | | | | defined color map. svn path=/main/trunk/; revision=3076
* Add color code mappings for 16 colors in rgb format.Zac Medico2006-04-051-12/+32
| | | | svn path=/main/trunk/; revision=3075
* 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
* Add support for user configuration of colors in the output module for bug ↵Zac Medico2006-04-043-1/+48
| | | | | | #125120. Thanks to solar for the patch that this was derived from. svn path=/main/trunk/; revision=3072
* Automatically create FILESDIR if necessary when writing old style digests. ↵Zac Medico2006-04-041-0/+7
| | | | | | Thanks to blubb for reporting. svn path=/main/trunk/; revision=3071
* 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-033-29/+36
| | | | | | system errors for bug #128506. svn path=/main/trunk/; revision=3058
* Make the reading of /proc/<pid>/fd/ impervious to the possible additionJason Stubbs2006-04-021-1/+1
| | | | | | of non-numerically named entries. svn path=/main/trunk/; revision=3055
* Add a portage_exec.get_open_fds() function for bug #128284. Thanks to Brian ↵Zac Medico2006-04-021-1/+8
| | | | | | Harring for this patch. svn path=/main/trunk/; revision=3054
* More exception fixes...Alec Warner2006-04-021-31/+8
| | | | svn path=/main/trunk/; revision=3053
* 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
* Fix manifest2AuxfileFilter so that it correctly filters files such as ↵Zac Medico2006-03-301-1/+7
| | | | | | 2.1_pre7/CVS/Entries. svn path=/main/trunk/; revision=3042
* 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
* 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
* 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
* 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
* 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
* 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