summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* I meant to ignore an IndexError here, in case mysettings["PORTDIR_OVERLAY"] ↵v2.1_rc4v2.1_rc3v2.1Zac Medico2006-06-091-1/+1
| | | | | | becomes corrupted and the split has an unexpected number of elements for some reason. svn path=/main/trunk/; revision=3476
* Use ${BASH_SOURCE[0]} instead of $_ because the former is more dependable ↵Zac Medico2006-06-081-1/+1
| | | | | | for preventing endless exec loops (see bug #135470). Testing shows that this corrects the problem for the libtool ebuild when sed is used to generate ltmain.shT. svn path=/main/trunk/; revision=3475
* Break out of the loop asap.Zac Medico2006-06-081-0/+1
| | | | svn path=/main/trunk/; revision=3474
* When an ebuild from overlay fails, display a message indicating which ↵Zac Medico2006-06-081-0/+13
| | | | | | overlay it came from (bug #136031). Thanks to genstef for the initial patch. svn path=/main/trunk/; revision=3473
* Add some documentation for /etc/make.profile/profile.bashrc.Zac Medico2006-06-081-0/+6
| | | | svn path=/main/trunk/; revision=3472
* Delete incomplete resume data before exiting due to blockers. This prevents ↵Zac Medico2006-06-081-0/+4
| | | | | | a 'mergelist' KeyError from occurring if the user attempts to run `emerge --resume` immediately afterwards. Thanks to axxo for reporting. svn path=/main/trunk/; revision=3471
* Move hard coding of /etc/env.d in CONFIG_PROTECT_MASK from ↵Zac Medico2006-06-082-4/+1
| | | | | | portage.config.__getitem__() to make.globals. Thanks to pauldv for reporting. svn path=/main/trunk/; revision=3470
* Revert r3468 because this type of functionality belongs in profile.bashrc or ↵Zac Medico2006-06-081-17/+0
| | | | | | an eclass. svn path=/main/trunk/; revision=3469
* support for FEATURES=debug-buildMike Frysinger2006-06-071-0/+17
| | | | svn path=/main/trunk/; revision=3468
* Call the bogus lchown() once so that the warning is seen asap.Zac Medico2006-06-071-0/+1
| | | | svn path=/main/trunk/; revision=3467
* If lchown is unavailable for some unexpected reason, make all lchown calls ↵Zac Medico2006-06-071-4/+7
| | | | | | print a warning message (bug #135398). svn path=/main/trunk/; revision=3466
* Also bump the counter for the "merge" phase since it calls spawnebuild (bug ↵Zac Medico2006-06-071-2/+3
| | | | | | #135856). svn path=/main/trunk/; revision=3465
* Make sure that each new build attempt gets it's own unique log file for bug ↵Zac Medico2006-06-071-0/+10
| | | | | | #135856. svn path=/main/trunk/; revision=3464
* Fix getgccversion() logic so that it works properly with eselect compiler ↵Zac Medico2006-06-061-4/+6
| | | | | | for bug #108393. Thanks to eradicator for help with this patch. svn path=/main/trunk/; revision=3463
* Store the original suid bits when suidctl is enabled for bug #135639. ↵Zac Medico2006-06-051-1/+1
| | | | | | Thanks to splite-gentoo@sigint.cs.purdue.edu for this patch. svn path=/main/trunk/; revision=3462
* Put LIVEVCS.stable in qawarnings for now since it's new and hasn't been ↵Zac Medico2006-06-051-1/+2
| | | | | | thoroughly discussed. svn path=/main/trunk/; revision=3461
* Add python 2.3 compatibility code for the set builtin.Zac Medico2006-06-051-0/+2
| | | | svn path=/main/trunk/; revision=3460
* Fix getgccversion() logic for bug #108393. Thanks to eradicator for ↵Zac Medico2006-06-051-45/+16
| | | | | | suggesting this logic. svn path=/main/trunk/; revision=3459
* add LIVEVCS.stable to man repomanAlec Warner2006-06-041-0/+3
| | | | svn path=/main/trunk/; revision=3458
* Add live VCS check to repoman, fix misspellingAlec Warner2006-06-041-2/+14
| | | | svn path=/main/trunk/; revision=3457
* When generating digests, print a digest.assumed QA warning if necessary in ↵Zac Medico2006-06-041-1/+23
| | | | | | order to prevent confusion. Thanks to jakub for suggesting this. svn path=/main/trunk/; revision=3456
* Raise a ParseError if the profile has a parent file containing a nonexistant ↵Zac Medico2006-06-041-0/+3
| | | | | | parent. svn path=/main/trunk/; revision=3455
* Raise a ParseError if the profile has a parent file containing anything ↵Zac Medico2006-06-041-1/+7
| | | | | | other than 1 parent. svn path=/main/trunk/; revision=3454
* Revert lazy loading of autouse because it is both broken and useless.Zac Medico2006-06-041-3/+2
| | | | svn path=/main/trunk/; revision=3453
* Escape the shell parameter expansions in the PORTAGE_ELOG_COMMAND example ↵Zac Medico2006-06-041-1/+1
| | | | | | for bug #135429. svn path=/main/trunk/; revision=3452
* Restore the old behavior of performing global updates when portage is ↵Zac Medico2006-06-041-0/+2
| | | | | | reloaded after `emerge --sync` for bug #135446. svn path=/main/trunk/; revision=3451
* Fix emerge's overlay display so that it works properly with overlay paths ↵Zac Medico2006-06-031-3/+6
| | | | | | that contain symlinks. This is necessary due to pordbapi's internal use of cannonical paths. Thanks to kevquinn for reporting. svn path=/main/trunk/; revision=3450
* In portageq, catch a KeyError and print a message to stderr. If the ↵Zac Medico2006-06-021-0/+3
| | | | | | KeyError is raised, portageq prints a help message which leads to bug #135278. svn path=/main/trunk/; revision=3449
* Update make.conf.example for x86-fbsd with patch from Flameeyes for bug #135241.Zac Medico2006-06-021-4/+5
| | | | svn path=/main/trunk/; revision=3448
* Fix unpack so that it works with 7z archives for bug #135134. Thanks to ↵Zac Medico2006-06-011-0/+8
| | | | | | Paul Bredbury <brebs@sent.com> for the initial patch. svn path=/main/trunk/; revision=3447
* Wrap at 80 columns for bug #135132.Zac Medico2006-06-011-5/+6
| | | | svn path=/main/trunk/; revision=3446
* Fix --buildpkgonly so that the "clean" phase is run afterwards. In other ↵Zac Medico2006-06-011-0/+3
| | | | | | cases, "clean" is triggered automatically after the package is merged. svn path=/main/trunk/; revision=3445
* Document RESTRICT="confcache" and add a reference econf in the ↵Zac Medico2006-06-012-1/+4
| | | | | | FEATURES="confcache" docs. svn path=/main/trunk/; revision=3444
* Fix quoting for bug 109739Alec Warner2006-06-011-2/+2
| | | | svn path=/main/trunk/; revision=3443
* Use python to lookup the user and group corresponding to PORTAGE_INST_UID ↵Zac Medico2006-05-301-1/+4
| | | | | | and PORTAGE_INST_GID since tarsync doesn't support numeric arguments for the user and group. See bug #134885. svn path=/main/trunk/; revision=3442
* Add some helpful troubleshooting tips to the depclean warning message.Zac Medico2006-05-301-0/+6
| | | | svn path=/main/trunk/; revision=3441
* Fix prepstrip so that it properly distiguishes between stripped and ↵Zac Medico2006-05-301-1/+12
| | | | | | unstripped binaries for bug #133420. Thanks to robbat2 for this patch. svn path=/main/trunk/; revision=3440
* everybody hates repoman failing on modular X, so make it a warningSimon Stelling2006-05-291-1/+2
| | | | svn path=/main/trunk/; revision=3439
* 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-283-3/+13
| | | | svn path=/main/trunk/; revision=3437
* Update the default USE_ORDER setting in the man page. Thanks to jakub for ↵Zac Medico2006-05-281-1/+1
| | | | | | reporting. svn path=/main/trunk/; revision=3436
* Update FEATURES docs for 'assume-digests' and 'digest'. Thanks to robbat2 ↵Zac Medico2006-05-282-3/+15
| | | | | | for reporting. svn path=/main/trunk/; revision=3434
* 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 fatal emerge errors so that ↵Zac Medico2006-05-271-13/+23
| | | | | | important errors are printed even when --quiet is used. svn path=/main/trunk/; revision=3427
* Fix emerge's userquery() so that it rejects empty responses when the enter ↵Zac Medico2006-05-271-1/+1
| | | | | | key is pressed for bug #134466. svn path=/main/trunk/; revision=3426
* 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