summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
* catch ENOENT and ENOTDIR in clean_locks to prevent ugly tracebacks; bug 124164Simon Stelling2006-05-021-4/+12
| | | | svn path=/main/trunk/; revision=3309
* use hasq where appropriateSimon Stelling2006-05-021-5/+4
| | | | svn path=/main/trunk/; revision=3308
* let 'emerge -h world' print a nice help message powered by antarus; bug 67448Simon Stelling2006-05-021-1/+13
| | | | svn path=/main/trunk/; revision=3307
* use escaping code that works for mrxvt too; thanks to nelchael for the ↵Simon Stelling2006-05-021-1/+1
| | | | | | patch; bug 117509 svn path=/main/trunk/; revision=3306
* revert rev 3300 as it has various issues and doesn't fully solve the problemSimon Stelling2006-05-021-3/+0
| | | | svn path=/main/trunk/; revision=3305
* Migrate old digest-* code in portage.fetch() to be Manifest2 compatible.Zac Medico2006-05-021-4/+2
| | | | svn path=/main/trunk/; revision=3304
* fix a typo from the last revisionZac Medico2006-05-021-1/+1
| | | | svn path=/main/trunk/; revision=3303
* Properly join CUSTOM_MIRRORS_FILE with PORTAGE_CONFIG_ROOT in portage.fetch().Zac Medico2006-05-021-1/+2
| | | | svn path=/main/trunk/; revision=3302
* Remove an extra aux_get call in doebuild and combine it with another aux_get ↵Zac Medico2006-05-021-10/+3
| | | | | | call in doebuild_environment. svn path=/main/trunk/; revision=3301
* don't let profile.env overwrite variables that are already set; bug 130229Simon Stelling2006-05-011-0/+5
| | | | svn path=/main/trunk/; revision=3300
* Add a new sqlite cache module (one I wrote) that has acceptable performance.Zac Medico2006-05-011-0/+237
| | | | svn path=/main/trunk/; revision=3299
* Remove sqlite.py because it's performance is unacceptable and it is ↵Zac Medico2006-05-011-67/+0
| | | | | | therefore useless. svn path=/main/trunk/; revision=3298
* replace hardcoded /usr/lib/portage/bin with PORTAGE_BIN_PATH, defaulting to ↵Simon Stelling2006-05-0111-11/+11
| | | | | | the hardcoded value svn path=/main/trunk/; revision=3297
* make portage shut up if --quiet is given; bug 62273Simon Stelling2006-05-0114-123/+155
| | | | svn path=/main/trunk/; revision=3296
* revert my last commit except for the parts i really wanted to commitSimon Stelling2006-05-012-153/+7
| | | | svn path=/main/trunk/; revision=3295
* allow escaping in elog_base() to fix bug 131913Simon Stelling2006-05-013-8/+154
| | | | svn path=/main/trunk/; revision=3294
* Don't skip regenerate() because leads to 'Problem resolving dependencies' ↵Zac Medico2006-05-011-6/+10
| | | | | | from emerge. Thanks to swegener for reporting. svn path=/main/trunk/; revision=3293
* Make sure that emerge really removes noauto from FEATURES for bug #131820.Zac Medico2006-05-012-3/+13
| | | | svn path=/main/trunk/; revision=3292
* Initial PORTAGE_CONFIGROOT support in the portage.config class for bug #73350.Zac Medico2006-05-011-33/+64
| | | | svn path=/main/trunk/; revision=3291
* Add cfg-update to the list of happy config file managers.Alec Warner2006-04-302-5/+5
| | | | svn path=/main/trunk/; revision=3290
* - People have started RESTRICTing "stricter", which we would like to ↵Ned Ludd2006-04-301-9/+9
| | | | | | discourage. bug 131779 (kevquinn) svn path=/main/trunk/; revision=3289
* - be sure to remove o+w bits on debug filesNed Ludd2006-04-301-2/+2
| | | | svn path=/main/trunk/; revision=3288
* Pass a vartree instance into portage.unmerge() to avoid globals.Zac Medico2006-04-301-4/+5
| | | | svn path=/main/trunk/; revision=3286
* Handle the doebuild's unmerge phase before setting up logfile because ↵Zac Medico2006-04-301-4/+4
| | | | | | unmerge doesn't use the log. svn path=/main/trunk/; revision=3285
* Avoid global db usage in doebuild() except when absolutely necessary.Zac Medico2006-04-301-1/+3
| | | | svn path=/main/trunk/; revision=3284
* Update portage config update messages to mention dispatch-conf (in addition ↵Zac Medico2006-04-302-3/+5
| | | | | | to etc-update). Thanks to genstef for reporting this. svn path=/main/trunk/; revision=3283
* Print disfiles file names for bug #131774. I've removed the [ OK ] from ↵Zac Medico2006-04-301-9/+6
| | | | | | okaymsg because the wink makes it redundant. svn path=/main/trunk/; revision=3282
* retain important historical aspects of the checksum messagesMike Frysinger2006-04-301-4/+4
| | | | svn path=/main/trunk/; revision=3281
* Add PORTAGE_BIN_PATH and PORTAGE_PYM_PATH to the enviroment and use them to ↵Zac Medico2006-04-303-7/+14
| | | | | | replace hard coded paths in ebuild.sh and misc-functions.sh. svn path=/main/trunk/; revision=3280