summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add + to the --changelog regex so that dvd+rw-tools works for bug #133288.Zac Medico2006-05-161-1/+1
| | | | svn path=/main/trunk/; revision=3362
* Add some PORTAGE_CONFIGROOT documentation for bug #131925. Thanks to ↵Zac Medico2006-05-161-0/+6
| | | | | | Christian Heim for this patch. svn path=/main/trunk/; revision=3361
* Fix for bug 133363, thanks to <world.root@gmail.com> for reporting.Alec Warner2006-05-151-1/+1
| | | | svn path=/main/trunk/; revision=3360
* 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
* strip leading slash in outputMike Frysinger2006-05-141-3/+3
| | | | svn path=/main/trunk/; revision=3352
* you have to quote $@ or things can breakMike Frysinger2006-05-141-1/+1
| | | | svn path=/main/trunk/; revision=3351
* 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
* Allow `emerge --metadata` and `emerge --regen` for users in the portage ↵Zac Medico2006-05-131-1/+2
| | | | | | group(bug #133157). svn path=/main/trunk/; revision=3346
* s/DEPEND atoms/package atoms/ for better wordingZac Medico2006-05-121-1/+1
| | | | svn path=/main/trunk/; revision=3345
* Make /etc/portage/bashrc relative to PORTAGE_CONFIGROOT.v2.1_rc1Zac Medico2006-05-121-1/+2
| | | | svn path=/main/trunk/; revision=3343
* Add some documentation for /etc/portage/modules and metadata_overlay.Zac Medico2006-05-121-0/+23
| | | | svn path=/main/trunk/; revision=3342
* Revert r3339 because r3301 makes it unnecessary. See bug #133055.Zac Medico2006-05-121-3/+0
| | | | svn path=/main/trunk/; revision=3341
* Minor 1 liner for bug 131657Alec Warner2006-05-111-0/+1
| | | | svn path=/main/trunk/; revision=3340
* 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
* Only adjust priority for PORTAGE_NICENESS on the first run for bug #132739.Zac Medico2006-05-101-0/+2
| | | | svn path=/main/trunk/; revision=3336
* slightly easier test to read for DISTDR/unpack checkMike Frysinger2006-05-091-1/+1
| | | | svn path=/main/trunk/; revision=3335
* 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
* Give a less confusing error message when unpack() arguments begin with ↵Zac Medico2006-05-081-0/+2
| | | | | | ${DISTDIR}. Thanks to Flameeyes for reporting. svn path=/main/trunk/; revision=3333
* 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-082-2/+2
| | | | | | $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
* make rsync variable messages a bit less invitingMarius Mauch2006-05-061-2/+2
| | | | svn path=/main/trunk/; revision=3325
* 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
* Catch a KeyError and notify the user of a missing digest for bug #132373.Zac Medico2006-05-051-7/+10
| | | | svn path=/main/trunk/; revision=3321
* Reimplement the fix for bug #79566 more cleanly (the -* hack seems quite ↵Zac Medico2006-05-051-1/+9
| | | | | | non-intuitive). svn path=/main/trunk/; revision=3320
* Fix some small typos in ebuild.sh for bug #86151. Thanks to Yoshino for ↵Zac Medico2006-05-041-2/+2
| | | | | | this patch. svn path=/main/trunk/; revision=3319
* Make sure that cloned FEATURES are correctly preserved by getting them ↵Zac Medico2006-05-041-6/+8
| | | | | | directly from the backupenv instead of going through the lookuplist (Bug #132196). svn path=/main/trunk/; revision=3318
* Bring back FEATURES="assume-digests" for bug #132182.Zac Medico2006-05-042-14/+22
| | | | svn path=/main/trunk/; revision=3317
* Improve the error message when an eclass is not found and remove unnecesary ↵Zac Medico2006-05-031-3/+2
| | | | | | ERRORMSG variable. svn path=/main/trunk/; revision=3316
* Catch an uncaught CacheCorruption for the traceback from bug #126692.Zac Medico2006-05-031-1/+7
| | | | svn path=/main/trunk/; revision=3313
* readd not-so pointless if statementSimon Stelling2006-05-031-2/+3
| | | | svn path=/main/trunk/; revision=3312
* remove pointless if statementSimon Stelling2006-05-021-3/+2
| | | | svn path=/main/trunk/; revision=3311
* best_version doesn't return different codes depending on whether it found a ↵Simon Stelling2006-05-021-2/+1
| | | | | | match or not, it's has_version; bug 130655 svn path=/main/trunk/; revision=3310