summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* Encapsulate type guessing logic in a new Manifest method.Zac Medico2006-04-092-9/+14
| | | | svn path=/main/trunk/; revision=3106
* For compatibility, return a tuple of 3 when an OSError is raised in ↵Zac Medico2006-04-091-1/+1
| | | | | | portage_checksum.verify_all() svn path=/main/trunk/; revision=3105
* Move mf.create out of a loop because it should only need to be called once.Zac Medico2006-04-091-1/+1
| | | | svn path=/main/trunk/; revision=3104
* Supply missing parameters to a checkFileHashes call.Zac Medico2006-04-091-1/+1
| | | | svn path=/main/trunk/; revision=3103
* Remove pym/portage_contents.py because it's not used. Thanks to Brian ↵Zac Medico2006-04-081-161/+0
| | | | | | Harring for noticing. svn path=/main/trunk/; revision=3100
* Remove pym/dcdialog.py because it's not used. Thanks to antarus for noticing.Zac Medico2006-04-081-412/+0
| | | | svn path=/main/trunk/; revision=3099
* Add copyright headers for portage_update and portage_manifest.Zac Medico2006-04-082-0/+7
| | | | svn path=/main/trunk/; revision=3098
* Fix some minor issues with the anydbm cache module. Thanks to Halcyon for ↵Zac Medico2006-04-081-3/+3
| | | | | | reporting. svn path=/main/trunk/; revision=3097
* Protect string indexes during input stripping in dep_getkey and dep_getcpv.Jason Stubbs2006-04-081-11/+7
| | | | | | Bug #129193 svn path=/main/trunk/; revision=3094
* remove reference to a script that doesnt existMike Frysinger2006-04-071-2/+0
| | | | svn path=/main/trunk/; revision=3092
* Optimize manifest2AuxfileFilter handling of ignored directories. Thanks to ↵Zac Medico2006-04-071-3/+1
| | | | | | Brian Harring for the patch. svn path=/main/trunk/; revision=3088
* Raise exceptions when appropriate in the atomic_ofstream constructor for bug ↵Zac Medico2006-04-071-0/+2
| | | | | | #129098. svn path=/main/trunk/; revision=3087
* Speed up portage.config.keys()Alec Warner2006-04-071-6/+1
| | | | svn path=/main/trunk/; revision=3086
* Change == None to is NoneAlec Warner2006-04-076-61/+61
| | | | svn path=/main/trunk/; revision=3085
* emerge info -> emerge --infoSimon Stelling2006-04-061-1/+1
| | | | svn path=/main/trunk/; revision=3080
* Revert FEATURES=noclean behavior so that clean is only skipped after merge. ↵Zac Medico2006-04-051-3/+2
| | | | | | Thanks to azarah for reporting. svn path=/main/trunk/; revision=3077
* 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