summaryrefslogtreecommitdiffstats
path: root/pym/portage_util.py
Commit message (Expand)AuthorAgeFilesLines
* Since none of the code is written to handle it, never return a tuple from new...Zac Medico2006-09-041-6/+1
* Make stack_dictlist return an empty dictionary when there is nothing to stack...Zac Medico2006-08-131-3/+1
* Fix stack_dictlist() so that incremental stacking behaves more like it does i...Zac Medico2006-08-111-12/+13
* Only ignore ENOENT in getconfig() so that more important errors don't go unno...Zac Medico2006-07-311-1/+3
* Catch ParseError from getconfig during env_update for bug #142157.Zac Medico2006-07-311-1/+1
* Stack /etc/profile.env inside portage.config so that it doesn't stop variable...Zac Medico2006-07-291-0/+2
* Fix unsafe deletion of a dictionary item during iteration.Zac Medico2006-07-261-1/+4
* Do the portage_checksum import in local scope because of circular dependency.Zac Medico2006-07-211-1/+1
* Move new_protect_filename from the core portage module to portage_util.Zac Medico2006-07-211-0/+51
* Remove grabdict_package and grabfile_package from the core portage module sin...Zac Medico2006-07-211-0/+1
* Move the ConfigProtect class to the portage_util module.Zac Medico2006-07-161-0/+39
* Move normalize_path into portage_util.Zac Medico2006-07-151-0/+7
* Wrap common write_atomic exceptions for easier error handling.Zac Medico2006-07-091-4/+16
* Sort filenames for predictable results.Zac Medico2006-06-231-1/+3
* Test the basename for starting with "." instead of the full path.Zac Medico2006-06-231-5/+4
* Fix a typo from r3611 (file != files).Zac Medico2006-06-231-1/+1
* ignore .files in /etc/portage recursionAlec Warner2006-06-231-0/+1
* Import missing PermissionDenied class. Thanks to marienz for reporting (and ...Zac Medico2006-06-161-1/+2
* Wrap more exceptions in ensure_dirs().Zac Medico2006-06-121-2/+8
* Wrap more exceptions when applying permissions. Thanks to marienz for report...Zac Medico2006-06-111-3/+16
* make elog mail module always set the 'From' header for rfc2822 complianceMarius Mauch2006-06-101-1/+1
* Add noiselevel=-1 to writemsg calls in portage_util.py for errors that should...Zac Medico2006-05-271-9/+16
* Override LazyItemsDict.update() so that it works correctly with other instanc...Zac Medico2006-04-151-2/+10
* Add singleton support to LazyItemsDict to make it easier to use with arbitrar...Zac Medico2006-04-151-4/+20
* Add an initial_items parameter to the LazyItemsDict constructor in order to f...Zac Medico2006-04-141-1/+5
* Create a generic portage_util.LazyItemsDict and use it for lazy initializatio...Zac Medico2006-04-121-0/+27
* Raise exceptions when appropriate in the atomic_ofstream constructor for bug ...Zac Medico2006-04-071-0/+2
* Change == None to is NoneAlec Warner2006-04-071-4/+4
* Move DISTDIR initialization from doebuild to fetch and handle read-only file ...Zac Medico2006-04-031-4/+6
* Add a reusable ensure_dirs() function and use it for DISTDIR initialization.Zac Medico2006-03-301-0/+20
* The return value from apply_permissions now indicates whether or not the perm...Zac Medico2006-03-301-1/+7
* Automatically follow symlinks in the atomic_ofstream constructor. See bug #12...Zac Medico2006-03-291-1/+13
* Catch a possible OSError from the stat call in atomic_ofstream.close().Zac Medico2006-03-191-0/+5
* Add a generic apply_recursive_permissions function and use is for $DISTDIR/cv...Zac Medico2006-03-181-1/+42
* Fix typo in variable name from last revision.Zac Medico2006-03-171-1/+1
* Fix the apply_permissions XOR logic so that mask removes mode bits correctly.Zac Medico2006-03-171-2/+2
* Fix permissions functions so that error messages tell exactly which call failed.Zac Medico2006-03-171-28/+48
* One more 'mode & 07777' in apply_permissions.Zac Medico2006-03-141-0/+2
* Make that 'mode & 07777' for the previous commit.Zac Medico2006-03-141-2/+2
* Use 'mode & 0777' to protect ourselves from unwanted mode bits in apply_permi...Zac Medico2006-03-141-5/+8
* Make mode=-1 the default parameter for apply_permissions in order to distingu...Zac Medico2006-03-141-3/+5
* Make the apply_permissions function default to exact matching of mode bits an...Zac Medico2006-03-141-9/+19
* Wrap possible exceptions raised by stat call in apply_secpass_permissions.Zac Medico2006-03-141-1/+9
* Add a new OperationNotPermitted exception and use it to wrap apply_permission...Zac Medico2006-03-141-17/+23
* Make portage_util.apply_stat_permissions() wrap apply_secpass_permissions ins...Zac Medico2006-03-131-2/+2
* Add a new portage_util.apply_secpass_permissions() function that intelligentl...Zac Medico2006-03-131-1/+33
* use getattr instead of hasattr for detection of base class destructor (recomm...Zac Medico2006-02-091-3/+3
* add new atomic_ofstream class for safer writesZac Medico2006-02-091-6/+88
* cPickle import protection; fall back to pickle if cPickle is unavailable.Brian Harring2006-02-081-2/+7
* - added writemsg_stdout function and make portage use it internallyNed Ludd2006-01-011-3/+10