summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Improve support for slot deps atoms given on the command line. ↵Zac Medico2007-07-301-2/+5
| | | | | | (branches/2.1.2 r6731) svn path=/main/branches/2.1.2.9/; revision=7442
* Don't complain when is missing unless manifest1 compatibility is enabled. ↵Zac Medico2007-07-301-112/+50
| | | | | | (branches/2.1.2 r6717) svn path=/main/branches/2.1.2.9/; revision=7441
* Instead of calling sys.exit() when aux_get() fails inside getfetchlist(), ↵Zac Medico2007-07-301-2/+4
| | | | | | convert the KeyError to an InvalidDependString exception since callers already handle it. (branches/2.1.2 r6715) svn path=/main/branches/2.1.2.9/; revision=7440
* Don't repeatedly invoke the depend phase for ebuilds that are already known ↵Zac Medico2007-07-301-0/+4
| | | | | | to be broken. (branches/2.1.2 r6714) svn path=/main/branches/2.1.2.9/; revision=7439
* For bug #149397, raise an InvalidDependString exception if a USE has no ↵Zac Medico2007-07-301-0/+2
| | | | | | basename. (branches/2.1.2 r6713) svn path=/main/branches/2.1.2.9/; revision=7438
* Only check ChangeLog if we're dealing with an ebuild (bug #170604) ↵Zac Medico2007-07-301-1235/+411
| | | | | | (branches/2.1.2 r6702) svn path=/main/branches/2.1.2.9/; revision=7437
* For bug #172886, catch GetoptError. (branches/2.1.2 r6701)Zac Medico2007-07-300-0/+0
| | | | svn path=/main/branches/2.1.2.9/; revision=7436
* Make dep_zapdeps() pull SLOT from the correct dbapi instance when it falls ↵Zac Medico2007-07-301-1009/+585
| | | | | | back to the vdb. (branches/2.1.2 r6700) svn path=/main/branches/2.1.2.9/; revision=7435
* For bug #139670, update the dohtml docs to show all supported file ↵Zac Medico2007-07-301-2/+2
| | | | | | extensions. Thanks to Arfrever Frehtes Taifersar Arahesis for this patch. (trunk r7432) svn path=/main/branches/2.1.2/; revision=7433
* For bug #137483, move the `emerge --help config` docs to the emerge man ↵Zac Medico2007-07-303-46/+40
| | | | | | page. Thanks to Arfrever Frehtes Taifersar Arahesis for this patch. (trunk r7430) svn path=/main/branches/2.1.2/; revision=7431
* For bug #187016, and env.d to the default USE_ORDER. (trunk r7426:7428)Zac Medico2007-07-293-4/+12
| | | | svn path=/main/branches/2.1.2/; revision=7429
* For pty logging, handle the EAGAIN error that is thrown from fcntl when the ↵Zac Medico2007-07-291-2/+10
| | | | | | slave end of the pty is closed on FreeBSD. (trunk r7424) svn path=/main/branches/2.1.2/; revision=7425
* For bug #186876, fall back it os.pipe() if pty.openpty() fails. (trunk r7422)Zac Medico2007-07-281-3/+10
| | | | svn path=/main/branches/2.1.2/; revision=7423
* When the fetch phase fails inside doebuild(), create an eerror log since the ↵v2.1.3Zac Medico2007-07-281-0/+13
| | | | | | mod_echo module might push the original message off of the top of the terminal and prevent the user from being able to see it. (trunk r7419) svn path=/main/branches/2.1.2/; revision=7420
* Handle 2 more cases where elog_process() needs to be called:Zac Medico2007-07-281-0/+14
| | | | | | | | - binary install via pkgmerge() fails before reaching the merge phase (pkg_setup dies) - doebuild() is called for the merge phase but it dies before reaching the merge phase (trunk r7417) svn path=/main/branches/2.1.2/; revision=7418
* For bug #185048, make emerge-webrsync honor http_proxy and ftp_proxy from ↵Zac Medico2007-07-281-2/+2
| | | | | | make.conf. (trunk r7415) svn path=/main/branches/2.1.2/; revision=7416
* For bug #186639, note that /etc/portage/profile/ supports all of the same ↵Zac Medico2007-07-271-2/+3
| | | | | | file types that /etc/make.profile/ does, except parent. (trunk r7413) svn path=/main/branches/2.1.2/; revision=7414
* For bug #186639, add more clarification about the relationship between ↵Zac Medico2007-07-271-3/+5
| | | | | | /etc/make.profile/ and /etc/portage/profile/. (trunk r7411) svn path=/main/branches/2.1.2/; revision=7412
* For bug #186480, while we transition to repository lables, avoid ? spam in ↵Zac Medico2007-07-271-1/+5
| | | | | | the repository display by ignoring a missing repository label for an installed package. svn path=/main/branches/2.1.2/; revision=7409
* For bug #186826, always show --newuse flags that trigger reinstallation even ↵Zac Medico2007-07-271-16/+24
| | | | | | when not in --verbose mode. (trunk r7407) svn path=/main/branches/2.1.2/; revision=7408
* For --buildpkgonly, say "built" instead of "merged" in the "These are the ↵Zac Medico2007-07-271-0/+2
| | | | | | packages that would be <action>" message. (trunk r7405) svn path=/main/branches/2.1.2/; revision=7406
* use ${MAKE:-make} rather than make in einstall() (trunk r7396)Zac Medico2007-07-271-2/+2
| | | | svn path=/main/branches/2.1.2/; revision=7404
* For bug #186610, use `find <path>` to scan for config updates since `cd ↵Zac Medico2007-07-261-5/+5
| | | | | | <path>` could fail and cause the cwd to be scanned. (trunk r7402) svn path=/main/branches/2.1.2/; revision=7403
* When setting the size of the pty for logging, check if stdout isatty rather ↵Zac Medico2007-07-261-2/+1
| | | | | | than stdin. (trunk r7400) svn path=/main/branches/2.1.2/; revision=7401
* Merge the portage.spawn() implementation with pty logging from trunk:Zac Medico2007-07-252-31/+82
| | | | | | | | | - Sending output through the pty device makes logging compatible with sesandbox and the default selinux security policy (see bug #162404). - Having a pty device for stdout makes $PAGER behave nicely for things like check_license() from eutils.eclass. svn path=/main/branches/2.1.2/; revision=7395
* Add droppriv keyword for the depend phase (last one). (trunk r7387)Zac Medico2007-07-241-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=7388
* Add droppriv keyword for the depend phase. (trunk r7385)Zac Medico2007-07-241-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=7386
* Fix make.conf.example rejects. (trunk r7383)Zac Medico2007-07-242-12/+13
| | | | svn path=/main/branches/2.1.2/; revision=7384
* For bug #186337, show an ewarn message if FEATURES=installsources is enabled ↵Zac Medico2007-07-242-0/+14
| | | | | | but debugedit is not installed. Also document installsources and splitdebug in make.conf.example. (trunk r7381) svn path=/main/branches/2.1.2/; revision=7382
* Add FEATURES=fakeroot support which causes install and package phases to run ↵Zac Medico2007-07-245-24/+50
| | | | | | inside fakeroot when a non-root user runs the ebuild command. Thanks to swegener for the initial patch. (trunk r7379) svn path=/main/branches/2.1.2/; revision=7380
* Add sfperms and strict to the default FEATURES since they're already in the ↵Zac Medico2007-07-231-1/+1
| | | | | | base profile's make.defaults. (trunk r7377) svn path=/main/branches/2.1.2/; revision=7378
* Enable FEATURES=userfetch by default. (trunk r7375)Zac Medico2007-07-231-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=7376
* Drop privileges in the "depend" phase regardless of FEATURES and RESTRICT ↵Zac Medico2007-07-231-10/+12
| | | | | | since that phase should never need special privileges. Thanks to swegener for the initial patch. (trunk r7373) svn path=/main/branches/2.1.2/; revision=7374
* For bug #184774, put lha's -q option last since otherwise the option parser ↵Zac Medico2007-07-221-1/+1
| | | | | | now requires level 0, 1, or 2 to be specified. (trunk r7358) svn path=/main/branches/2.1.2/; revision=7359
* Fix the reverse dependency display for --prune when there is now real ↵Zac Medico2007-07-221-0/+5
| | | | | | parent. (trunk r7351) svn path=/main/branches/2.1.2/; revision=7352
* Make --update imply --oneshot since people often us it to update things when ↵Zac Medico2007-07-221-1/+3
| | | | | | they don't want to add them to world. Thanks to jakub for the suggestion. (trunk r7349) svn path=/main/branches/2.1.2/; revision=7350
* Document --depclean and --prune enhancements. (trunk r7345)Zac Medico2007-07-222-22/+40
| | | | svn path=/main/branches/2.1.2/; revision=7348
* Prevent a potential KeyError when removing world from the digraph for ↵Zac Medico2007-07-221-1/+2
| | | | | | --prune display. (trunk r7344) svn path=/main/branches/2.1.2/; revision=7347
* Make --prune pull in the system set since that could pull in some slots that ↵Zac Medico2007-07-221-0/+3
| | | | | | wouldn't be pulled in otherwise. (trunk r7343) svn path=/main/branches/2.1.2/; revision=7346
* For bug #169500, detect when the cvs server puts /Attic/ inside the $Header ↵Zac Medico2007-07-211-0/+17
| | | | | | path and automatically correct it. (trunk r7340) svn path=/main/branches/2.1.2/; revision=7341
* For bug #185153, in commit mode do the "Fetching trivial updates" routine ↵Zac Medico2007-07-211-38/+44
| | | | | | before the qa scan. (trunk r7338) svn path=/main/branches/2.1.2/; revision=7339
* Make --prune and --depclean return before calculating dependencies if atoms ↵Zac Medico2007-07-211-0/+9
| | | | | | are given but they don't match any packages. (trunk r7336) svn path=/main/branches/2.1.2/; revision=7337
* Prune really uses all installed instead of world. It's not a real reverse ↵Zac Medico2007-07-211-0/+3
| | | | | | dependency so don't display it as such. (trunk r7334) svn path=/main/branches/2.1.2/; revision=7335
* Just show [0] instead of [0=>0] in the repo display. (trunk r7332)Zac Medico2007-07-211-3/+6
| | | | svn path=/main/branches/2.1.2/; revision=7333
* For bug #185930, direct all FETCHCOMMAND output to stdout. (trunk r7330)Zac Medico2007-07-211-0/+8
| | | | svn path=/main/branches/2.1.2/; revision=7331
* Hint about --nodeps if --prune doesn't find anything to prune. Also enable ↵Zac Medico2007-07-211-1/+7
| | | | | | reverse dependency display for global depclean. (trunk r7327) svn path=/main/branches/2.1.2/; revision=7328
* When digest verification of a distfile fails, rename instead of unlinking it ↵Zac Medico2007-07-211-5/+18
| | | | | | in case it's a large download and the user wants to salvage it due to a bad digest. (trunk r7325) svn path=/main/branches/2.1.2/; revision=7326
* If the fetcher reported success and the file is too small, don't attempt to ↵Zac Medico2007-07-201-2/+10
| | | | | | resume. Upstream probably changed the distfile and we need to show a digest verification failure so the user gets a clue. (trunk r7321) svn path=/main/branches/2.1.2/; revision=7322
* For bug #185504, document profiles/repo_name. (trunk r7319)Zac Medico2007-07-201-0/+6
| | | | svn path=/main/branches/2.1.2/; revision=7320
* Document --prune and --depclean enhancements. (trunk r7317)Zac Medico2007-07-201-0/+6
| | | | svn path=/main/branches/2.1.2/; revision=7318