summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix "arguments" spelling. (trunk r13608)v2.1.6.13Zac Medico2009-05-031-1/+1
| | | | svn path=/main/branches/2.1.6/; revision=13609
* Remove EAPI 3 helpers PATH code, unused in this branch.Zac Medico2009-05-031-14/+0
| | | | svn path=/main/branches/2.1.6/; revision=13607
* Bug #268398 - Document econf's automatic die behavior. (trunk r13600)Zac Medico2009-05-031-2/+3
| | | | svn path=/main/branches/2.1.6/; revision=13606
* Simplify DepPriority.__int__() and make it consistent with __str__().Zac Medico2009-05-031-25/+13
| | | | | | (trunk r13599) svn path=/main/branches/2.1.6/; revision=13605
* Make useq() die if called during the "depend" phase in newer EAPIs.Zac Medico2009-05-031-5/+9
| | | | | | (trunk r13598) svn path=/main/branches/2.1.6/; revision=13604
* Skip useq() IUSE QA Notices during the "depend" phase because lots ofZac Medico2009-05-031-1/+5
| | | | | | | | ebuilds/eclasses have stuff in global scope that really belongs somewhere like pkg_setup or src_configure. Thanks to Arfrever for reporting. (trunk r13597) svn path=/main/branches/2.1.6/; revision=13603
* Fix inverted logic in superuser logic for bug #267104. (trunk r13596)Zac Medico2009-05-031-2/+2
| | | | svn path=/main/branches/2.1.6/; revision=13602
* Fix DepPriority.__int__() to return distinguishable values, for use whenZac Medico2009-05-031-0/+37
| | | | | | | | measuring hardness for the circular dependency display. This fixes a problem visible in bug #268038, comment #0, where buildtime dependencies are incorrectly displayed as runtime dependencies. (trunk r13589) svn path=/main/branches/2.1.6/; revision=13601
* Update header for 2.1.6 branch.v2.1.6.12Zac Medico2009-05-011-1/+1
| | | | svn path=/main/branches/2.1.6/; revision=13586
* Bug #267175 - Instead of "poor code kills airplanes", say "install abortedZac Medico2009-05-011-2/+4
| | | | | | | | due to poor programming practices shown above" in order to help the user link the die message to the related "poor programming practices" messages. Thanks to Jeremy Olexa <darkside@g.o> for the suggestion. (trunk r13584) svn path=/main/branches/2.1.6/; revision=13585
* Make elog functions use read -r when splitting lines, so that backslashesZac Medico2009-05-011-11/+11
| | | | | | intended for display will not be eaten. (trunk r13582) svn path=/main/branches/2.1.6/; revision=13583
* Only generate KV when setting up the environment for a real ebuild phase. ThisZac Medico2009-05-011-1/+4
| | | | | | | | should preven "Permission Denied: /usr/src/linux/.config" errors reported by repoman users (repoman may trigger the error when it calls the fetch phase). (trunk r13580) svn path=/main/branches/2.1.6/; revision=13581
* Fix logic error which prevents repos.conf [DEFAULT] section from applyingZac Medico2009-05-011-1/+1
| | | | | | | to repos that don't have their own section. Thanks to Markos Chandras <hwoarang@g.o> for reporting. (trunk r13578) svn path=/main/branches/2.1.6/; revision=13579
* Disable ACCEPT_LICENSE license group expansion and related code since licenseZac Medico2009-04-301-4/+5
| | | | | | | masking isn't supported in the 2.1.6 branch and we don't want it to interfere with check_license() behavior. svn path=/main/branches/2.1.6/; revision=13577
* Remove unnecessary doebuild_environment() call from EbuildFetchonly.execute()Zac Medico2009-04-301-3/+0
| | | | | | since PORTAGE_RESTRICT is calculated by config.setcpv() now. (trunk r13575) svn path=/main/branches/2.1.6/; revision=13576
* In config.setcpv() reuse split USE from built packages instead of splittingZac Medico2009-04-301-3/+2
| | | | | | them again. (trunk r13573) svn path=/main/branches/2.1.6/; revision=13574
* Enable use() qa checks via PORTAGE_IUSE for all ebuild phases and for binaryZac Medico2009-04-301-6/+1
| | | | | | packages since it should work fine now. (trunk r13570) svn path=/main/branches/2.1.6/; revision=13572
* Move PORTAGE_RESTRICT calculation to config.setcpv() (lazy evaluation) andZac Medico2009-04-301-19/+38
| | | | | | fix it to work correctly for pre-built packages. (trunk r13569) svn path=/main/branches/2.1.6/; revision=13571
* Bug #267104 - When appropriate, advise the user that they may set FEATURES=Zac Medico2009-04-301-4/+17
| | | | | | -userfetch in order to use remaining space. (trunk r13567) svn path=/main/branches/2.1.6/; revision=13568
* Fix _lazy_accept_license to discard || from the set of licenses. (trunk r13565)Zac Medico2009-04-301-0/+1
| | | | svn path=/main/branches/2.1.6/; revision=13566
* Add note about repos.conf eclass overrides. (trunk r13561:13563)Zac Medico2009-04-301-0/+6
| | | | svn path=/main/branches/2.1.6/; revision=13564
* Fix ACCEPT_LICENSE handling for binary packages, so that the build-time USEZac Medico2009-04-302-6/+13
| | | | | | settings are used calculate an appropriate ACCEPT_LICENSE value. (trunk r13560) svn path=/main/branches/2.1.6/; revision=13561
* Fix error in calculations from bug #267104. (trunk r13419)Zac Medico2009-04-301-2/+2
| | | | svn path=/main/branches/2.1.6/; revision=13559
* In config.setcpv(), move the code that makes sure "pkg" values override "env"Zac Medico2009-04-301-4/+8
| | | | | | values _after_ the reset() call. (trunk r13418) svn path=/main/branches/2.1.6/; revision=13558
* Generate a pruned version of ACCEPT_LICENSE, by intersection withZac Medico2009-04-301-0/+28
| | | | | | | | LICENSE. This is required since otherwise ACCEPT_LICENSE might be too big (bigger than ARG_MAX), causing execve() calls to fail with E2BIG errors as in bug #262647. (trunk r13417) svn path=/main/branches/2.1.6/; revision=13557
* In config.regenerate(), explicitly include self.backupenv when processingZac Medico2009-04-301-0/+1
| | | | | | incrementals, since it's no longer included in self.configlist. (trunk r13416) svn path=/main/branches/2.1.6/; revision=13556
* Exclude 'backupenv' from config.configlist and lookuplist since it doesn'tZac Medico2009-04-301-13/+12
| | | | | | | | | make size to have it in there when configdict['env'] already serves that purpose. This allows values to be temporarily removed from configdict['env'] and have them not appear in the environment until reset() is called to restore those values from the backupenv. (trunk r13415) svn path=/main/branches/2.1.6/; revision=13555
* Clarify RESTRICT=bindist docs by referring to 'built' packages. Thanks toZac Medico2009-04-301-1/+1
| | | | | | Thomas Sachau <tommy@g.o> for reporting. (trunk r13414) svn path=/main/branches/2.1.6/; revision=13554
* Warn about sed and epatch calls which should be moved from src_unpack toZac Medico2009-04-301-1/+33
| | | | | | | src_prepare. Thanks to Markus Meier <maekke@g.o> for the initial patch. (trunk r13413) svn path=/main/branches/2.1.6/; revision=13553
* Move the here-document code from the EbuildWhitespace check to theZac Medico2009-04-301-26/+26
| | | | | | | run_checks() function, so that all checks ignore the content of here-documents. (trunk r13412) svn path=/main/branches/2.1.6/; revision=13552
* Make EbuildWhitespace ignore here-documents. Thanks to Diego PettenòZac Medico2009-04-301-4/+19
| | | | | | <flameeyes@g.o> for reporting. (trunk r13411) svn path=/main/branches/2.1.6/; revision=13551
* Make xtermTitle() use a global variable to cache the result of the TERM check.Zac Medico2009-04-301-13/+17
| | | | | | (trunk r13410) svn path=/main/branches/2.1.6/; revision=13550
* Bug #267860 - Make JobStatusDisplay respect FEATURES=notitles. (trunk r13409)Zac Medico2009-04-301-3/+6
| | | | svn path=/main/branches/2.1.6/; revision=13549
* Fix the code from bug #267104 to account non-root users. (trunk r13408)Zac Medico2009-04-301-1/+3
| | | | svn path=/main/branches/2.1.6/; revision=13548
* Bug #267810 - Don't sort C/CXX/LDFLAGS in emerge --info output since theseZac Medico2009-04-301-23/+3
| | | | | | variables aren't really sortable in that way. (trunk r13407) svn path=/main/branches/2.1.6/; revision=13547
* Bug #267104 - If the statvfs f_bavail field shows insufficient free space andZac Medico2009-04-301-2/+9
| | | | | | userfetch is not enabled, recalculate using the f_bfree field. (trunk r13406) svn path=/main/branches/2.1.6/; revision=13546
* Put ebuild helpers at the absolute front of the PATH. (trunk r13404)Zac Medico2009-04-301-4/+7
| | | | svn path=/main/branches/2.1.6/; revision=13545
* Bug #71646 - Don't allow the HISTFILE variable into the ebuild environmentZac Medico2009-04-302-2/+2
| | | | | | since it triggers sandbox violations. (trunk r13403) svn path=/main/branches/2.1.6/; revision=13544
* fix e-mail munging and add see also section (trunk r13402)Zac Medico2009-04-301-1/+5
| | | | svn path=/main/branches/2.1.6/; revision=13543
* Add a new EAPI.definition check for cases in which EAPI is defined after anZac Medico2009-04-304-1/+23
| | | | | | | inherit call. Thanks to Markus Meier <maekke@g.o> for the initial patch. (trunk r13401) svn path=/main/branches/2.1.6/; revision=13542
* Add dohard and doset helper which die for EAPI 3. TODO: Make the dieZac Medico2009-04-305-2/+23
| | | | | | | | helper use pipe or socket IPC instead of a signal, to avoid a potential race condition in signal delivery. Thanks to to Tiziano Müller <dev-zero@g.o> for the initial patch. (trunk r13389) svn path=/main/branches/2.1.6/; revision=13541
* Set executable. (trunk r13388)Zac Medico2009-04-301-0/+0
| | | | svn path=/main/branches/2.1.6/; revision=13540
* Automatically define errno.ESTALE if it doesn't exist (like on interix).Zac Medico2009-04-301-0/+3
| | | | | | Thanks to Markus Duft <mduft@g.o> for reporting. (trunk r13387) svn path=/main/branches/2.1.6/; revision=13539
* Fix breakage in PREROOTPATH logic from the EAPI 3 code. (trunk r13386)Zac Medico2009-04-301-0/+1
| | | | svn path=/main/branches/2.1.6/; revision=13538
* Remove ccache and distcc remove_path_entry code since PATH is alwaysZac Medico2009-04-301-3/+0
| | | | | | initialized from scratch so there's no danger of accumulation. (trunk r13385) svn path=/main/branches/2.1.6/; revision=13537
* Use declare -F to check existence of function definitions, instead ofZac Medico2009-04-301-10/+10
| | | | | | type -t, in order to avoid use of subshells. (trunk r13384) svn path=/main/branches/2.1.6/; revision=13536
* Use ret|=1 instead of ++ret, to avoid possible overflow. (trunk r13383)Zac Medico2009-04-301-1/+1
| | | | svn path=/main/branches/2.1.6/; revision=13535
* Add new dodoc implementation for EAPI 3. Thanks to to Tiziano MüllerZac Medico2009-04-301-0/+50
| | | | | | <dev-zero@g.o> for this patch. (trunk r13382) svn path=/main/branches/2.1.6/; revision=13534
* In ebuild_main(), unset ebuild_helpers_path when finished with it, sinceZac Medico2009-04-301-0/+1
| | | | | | bash exposes local variables to 'children'. (trunk r13381) svn path=/main/branches/2.1.6/; revision=13533
* Add ${PORTAGE_BIN_PATH}/ebuild-helpers/3 directory to PATH for EAPI 3. ThanksZac Medico2009-04-301-0/+13
| | | | | | to Tiziano Müller <dev-zero@g.o> for this patch. (trunk r13380) svn path=/main/branches/2.1.6/; revision=13532