summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* Fix quoting for bug 109739Alec Warner2006-06-011-2/+2
| | | | svn path=/main/trunk/; revision=3443
* Use the well know selinux_aux functions for bug #134743.Zac Medico2006-05-291-10/+1
| | | | svn path=/main/trunk/; revision=3438
* Revert patch for r3426 for bug 134466 and add warnings to docs.Zac Medico2006-05-281-1/+5
| | | | svn path=/main/trunk/; revision=3437
* Ignore ENOENT errors that are expected to occur in portage.fetch().Zac Medico2006-05-271-4/+10
| | | | svn path=/main/trunk/; revision=3433
* Remove dependence on a patched version of libselinux for bug #122517.Zac Medico2006-05-272-4/+21
| | | | svn path=/main/trunk/; revision=3430
* Add noiselevel=-1 to writemsg calls in portage_util.py for errors that ↵Zac Medico2006-05-271-9/+16
| | | | | | shouldn't happen so that messages are printed even when --quiet is used. svn path=/main/trunk/; revision=3429
* Add noiselevel=-1 to writemsg calls in portage.py for errors that shouldn't ↵Zac Medico2006-05-271-114/+190
| | | | | | happen so that messages are printed even when --quiet is used. svn path=/main/trunk/; revision=3428
* Add noiselevel=-1 to writemsg calls for legitimate errors in merge and ↵Zac Medico2006-05-271-6/+6
| | | | | | unmerge phases so that important errors are printed even when --quiet is used. svn path=/main/trunk/; revision=3425
* Add noiselevel=-1 to writemsg calls for legitimate errors in ↵Zac Medico2006-05-271-8/+10
| | | | | | portage.digestcheck() so that important errors are printed even when --quiet is used. svn path=/main/trunk/; revision=3424
* Add noiselevel=-1 to writemsg calls for legitimate errors in doebuild so ↵Zac Medico2006-05-271-28/+36
| | | | | | that important errors are printed even when --quiet is used. svn path=/main/trunk/; revision=3423
* Make sure that fetch errors are reported even when --quiet is being used.Zac Medico2006-05-271-2/+6
| | | | svn path=/main/trunk/; revision=3422
* Only print a warning if absolutely necessary when adjusting distfiles ↵Zac Medico2006-05-271-1/+2
| | | | | | permissions for bug #112612. svn path=/main/trunk/; revision=3421
* Add some additional error handling for OperationNotPermitted and ↵Zac Medico2006-05-261-0/+2
| | | | | | ReadOnlyFileSystem exceptions (bug #112612). svn path=/main/trunk/; revision=3418
* Fix the last revision so it also works for files copied from local fsmirrors.Zac Medico2006-05-261-1/+3
| | | | svn path=/main/trunk/; revision=3417
* If necessary, apply appropriate permissions to previously fetched files for ↵Zac Medico2006-05-261-0/+3
| | | | | | bug #112612. svn path=/main/trunk/; revision=3416
* Reset DISTDIR to it's original value before returning from doebuild() in ↵Zac Medico2006-05-261-9/+17
| | | | | | order to prevent unexpected values for DISTDIR later on. svn path=/main/trunk/; revision=3415
* Fix a bug that causes hashes of random types (mostly SHA1, from my ↵Zac Medico2006-05-221-1/+1
| | | | | | experience) to be erroneously discarded due to dictionary assignment instead up update. svn path=/main/trunk/; revision=3390
* Fix userfetch so that it works regardless of whether or not userpriv is ↵Zac Medico2006-05-221-3/+17
| | | | | | enabled for bug #133995. I've used portage_exec.spawn_bash() here because portage.spawn() should really only be used for actual ebuild phases in doebuild() and spawnebuild(). svn path=/main/trunk/; revision=3387
* Don't include a redundant size field with the other hashes when creating ↵Zac Medico2006-05-211-0/+1
| | | | | | manifest2 entries. Thanks to solar for reporting. svn path=/main/trunk/; revision=3383
* Validate the CATEGORY data in portage.config.load_infodir() and print a ↵Zac Medico2006-05-211-3/+11
| | | | | | warning message if corruption is detected. svn path=/main/trunk/; revision=3382
* Add --nocolor to emerge's short help for bug #133734. Thanks to ↵Zac Medico2006-05-191-1/+1
| | | | | | gabebw@gmail.com for this patch. svn path=/main/trunk/; revision=3377
* Fix repoman to grab categores, arch.list, and package.mask from the proper ↵Zac Medico2006-05-171-4/+7
| | | | | | locations when scanning an overlay. Thanks to mcummings for reporting. svn path=/main/trunk/; revision=3368
* Fix portage.getmaskingreason() so that it properly stacks all available ↵Zac Medico2006-05-161-1/+16
| | | | | | package.mask files for bug #104000. svn path=/main/trunk/; revision=3365
* Fix a typo from r3357.Zac Medico2006-05-151-1/+1
| | | | svn path=/main/trunk/; revision=3359
* Add back the rstrip(os.path.sep) which is needed in the case where ROOT=/ ↵Zac Medico2006-05-151-2/+4
| | | | | | (regression from r3356). svn path=/main/trunk/; revision=3358
* Revert the performance optimization from r3355 in favor of maximum robustness.Zac Medico2006-05-151-1/+2
| | | | svn path=/main/trunk/; revision=3357
* Ensure that ${ROOT} is normalized for bug #90444.Zac Medico2006-05-151-2/+2
| | | | svn path=/main/trunk/; revision=3356
* Remove unnecessary and time consuming normpath call for bug #90444.Zac Medico2006-05-151-1/+1
| | | | svn path=/main/trunk/; revision=3355
* Ensure a sane global umask for bug #133307 (regression from r3228).Zac Medico2006-05-141-0/+3
| | | | svn path=/main/trunk/; revision=3354
* Wheel != secpass=1, so kill it. Wheel grants you nothing wrt portage perms.Alec Warner2006-05-141-4/+1
| | | | svn path=/main/trunk/; revision=3353
* Use iteritems() instead of items() because an iterator uses less memory.Zac Medico2006-05-141-1/+1
| | | | svn path=/main/trunk/; revision=3350
* Write raw bytes instead of attempting to encode as utf-8 for bug #133287.Zac Medico2006-05-141-1/+1
| | | | svn path=/main/trunk/; revision=3349
* Make portdbapi._init_cache_dirs() obey self.depcachedir.Zac Medico2006-05-141-2/+1
| | | | svn path=/main/trunk/; revision=3348
* Make portdbapi obey self.depcachedir instead of using ↵Zac Medico2006-05-141-1/+1
| | | | | | portage_const.DEPCACHE_PATH directly. svn path=/main/trunk/; revision=3347
* Make /etc/portage/bashrc relative to PORTAGE_CONFIGROOT.v2.1_rc1Zac Medico2006-05-121-1/+2
| | | | svn path=/main/trunk/; revision=3343
* Revert r3339 because r3301 makes it unnecessary. See bug #133055.Zac Medico2006-05-121-3/+0
| | | | svn path=/main/trunk/; revision=3341
* Fix bug 113055, Binpkg's need SLOT in mysettingsAlec Warner2006-05-111-0/+3
| | | | svn path=/main/trunk/; revision=3339
* Neglect EOFError during mtimedb loading since this error seems to be common ↵Zac Medico2006-05-101-1/+1
| | | | | | when the mtimedb has been corrupted. svn path=/main/trunk/; revision=3338
* remove unused STICKIES variableMike Frysinger2006-05-102-2/+1
| | | | svn path=/main/trunk/; revision=3337
* Use os.path.realpath instead of portage.abssymlink to resolve ↵Zac Medico2006-05-081-1/+1
| | | | | | /etc/make.profile because abssymlink throws an OSError: [Errno 22] Invalid argument exception when repoman passes in an absolute profile path that isn't a symlink. svn path=/main/trunk/; revision=3334
* Prevent a TypeError exception when the /etc/make.profile symlink is broken ↵Zac Medico2006-05-081-12/+10
| | | | | | on nonexistent. svn path=/main/trunk/; revision=3332
* Catch FileNotFound exception and print a message when a file listed in the ↵Zac Medico2006-05-081-0/+3
| | | | | | Manifest could not be found. svn path=/main/trunk/; revision=3331
* Move the fake $HOME that's used for ebuilds from ↵Zac Medico2006-05-081-1/+1
| | | | | | $PORTAGE_TMPDIR/portage/homedir to $PORTAGE_BUILDDIR/homedir so that each build has a unique $HOME for bug #130395. svn path=/main/trunk/; revision=3330
* Fix a potential NameError due to 'cpv' being undefined in the namespace and ↵Zac Medico2006-05-071-3/+5
| | | | | | also fix a potential AttributeError due to an attempt to call reconstruct_eclasses() on a dict object that has already been reconstructed in flat_hash.database._parse_data(). svn path=/main/trunk/; revision=3329
* Properly encode metadata strings as utf-8 in order to avoid ↵Zac Medico2006-05-071-1/+1
| | | | | | | | "UnicodeEncodeError: 'ascii' codec can't encode character" exception when given a unicode string. svn path=/main/trunk/; revision=3328
* Replace inappropriate use of writelines with normal write.Zac Medico2006-05-071-1/+1
| | | | svn path=/main/trunk/; revision=3327
* Fix portage.config handling of ROOT and PORTAGE_CONFIGROOT for bug #132442.Zac Medico2006-05-061-3/+5
| | | | svn path=/main/trunk/; revision=3326
* Catch a KeyError and report a missing digest for bug #132410.Zac Medico2006-05-061-0/+3
| | | | svn path=/main/trunk/; revision=3324
* Remove the uppercase requirement on flat_hash metadata keys so that ↵Zac Medico2006-05-061-3/+1
| | | | | | _eclasses_ will work. This is equivalent to the patch by Brian Harring that went into 2.0.54-r2 for forward compatibility with planned changes in the rsync metadata cache. svn path=/main/trunk/; revision=3323
* Obey self.incrementals in config.regenerate() instead of using ↵Zac Medico2006-05-061-1/+1
| | | | | | portage_const.INCREMENTALS directly. svn path=/main/trunk/; revision=3322