summaryrefslogtreecommitdiffstats
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
* Recognize git-2.eclass as a live eclass.Zac Medico2011-02-141-0/+1
|
* egencache: --preserve-comments allow missing fileZac Medico2011-02-131-4/+26
| | | | This will fix bug #354687.
* egencache: don't ignore as much with --tolerantZac Medico2011-02-131-3/+4
| | | | | | Errors returned from --update-use-local-desc and --update-changelogs are no longer ignored with --tolerant. This will fix part of bug #354687.
* default_src_test: handle EAPI 4 emake failureZac Medico2011-02-061-4/+10
| | | | This will fix bug #353897.
* die: include $EBUILD_PHASE in messageZac Medico2011-01-301-1/+5
| | | | | When a helper binary dies automatically in EAPI 4 and later, we don't get a stack trace, so at least report the phase that failed.
* isolated-functions.sh: fix syntax error for dieZac Medico2011-01-301-2/+4
| | | | | | | | Fix die so that dump_trace is not called when the main script is a helper binary. This prevents the following error message when a helper dies automatically in EAPI 4: isolated-functions.sh: line 61: p -= : syntax error: operand expected (error token is "-= ")
* repoman: add check for using offset vars with helpersFabian Groffen2011-01-301-0/+1
| | | | | | | New check: NoOffsetWithHelpers. Checks whether helper functions, such as dodir and insinto, are used with offset variables either referring to the installation image (D, ED), the alternate root location (ROOT, EROOT), or the offset prefix (EPREFIX).
* Tweak PollScheduler signal handling.Zac Medico2011-01-151-3/+7
|
* Add PollScheduler.terminate() for interruption.Zac Medico2011-01-151-1/+24
| | | | | This allows PollScheduler instances to do basic cleanup and terminate gracefully when SIGINT or SIGTERM signals are received.
* When killed by signal, return 128 + signum.Zac Medico2011-01-155-19/+21
| | | | | This is the same convention that bash uses for returncodes of processes that are killed by signals.
* emerge-webrsync: update for current gpg keyZac Medico2011-01-141-1/+1
|
* econf: check confgure --help for --disable-dep...Zac Medico2011-01-121-1/+3
| | | | This is the new behavior, for bug #211529.
* ebuild.sh: skip QA_* init in "depend" phaseZac Medico2011-01-091-20/+21
|
* emerge-webrsync: eat trailing newlinesMike Frysinger2011-01-051-3/+3
| | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* emerge-webrsync: add xz supportMike Frysinger2011-01-051-0/+2
| | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* newins in EAPI 4 should actually install the file. Fixes bug 350385.Ulrich Mueller2011-01-021-3/+5
|
* egencache: handle ImportError for ExpatErrorZac Medico2010-12-311-5/+10
|
* dyn_clean: remove .pretendedZac Medico2010-12-311-1/+1
|
* unpack: handle echo failure in unzip pipeZac Medico2010-12-291-1/+1
| | | | This will fix bug #338744.
* bash: as a general rule, use read -rZac Medico2010-12-297-12/+12
| | | | This solves cases like bug #350045.
* doins: use read -rUlrich Müller2010-12-291-1/+1
| | | | This will fix bug #350045.
* doebuild: fix bug #349273Zac Medico2010-12-211-1/+1
| | | | | | | | | Since commit 75d3130fc8293fff68389b8fed44b8d47a0abe80, doebuild() for the 'setup' phase triggers the actionmap_deps code path in order to call the 'pretend' phase as a dependency. This path previously assumed a portdbapi instance, which may not hold for some api consumers such as entropy. Therefore, fix the code path to work with other dbapi types.
* Substitute bash builtin >> for touch command.Zac Medico2010-12-195-22/+39
| | | | | It should be faster to use the bash builtin, and also allows us to avoid issues with touch breakage (like in bug #348640).
* repoman: ignore deprecated profiles.desc entriesZac Medico2010-12-181-0/+3
|
* repoman: handle ElementTree.ParseErrorZac Medico2010-12-171-1/+1
|
* etc-update: eliminate duplicate example configsZac Medico2010-12-131-1/+5
|
* etc-update: tweak style in do_distconf()Anthony Basile2010-12-131-10/+2
|
* etc-update: replace 'seq' with pure bashv2.2.0_alpha8Zac Medico2010-12-121-3/+6
|
* etc-update: add option to save example configAnthony Basile2010-12-121-0/+33
| | | | This will fix bug #348561.
* quickpkg: may -> might rewordMike Frysinger2010-12-071-2/+2
| | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* ebuild.sh: only run pretend once for ebuild(1)Zac Medico2010-12-051-1/+9
|
* EAPI 4: Support MERGE_TYPE (bug #347351)Zac Medico2010-12-031-1/+2
|
* fix QA_EXECSTACK spelling for QA_PREBUILTZac Medico2010-12-021-1/+1
| | | | | Thanks to Sébastien Fabbro <bicatali@gentoo.org> for reporting in bug #346847.
* whitelist proxy vars and don't save themZac Medico2010-11-261-1/+1
|
* repoman: fix broken masking checkv2.2.0_alpha5Zac Medico2010-11-241-1/+1
| | | | This has been broken since 9ed6332f2015e41f072f897764f550c5574ea96f.
* repoman: enable dep check with empty KEYWORDSZac Medico2010-11-221-12/+50
| | | | | | Since no KEYWORDS are set, and those are normally used to decide which profiles to check, we use an empty profile with effective ACCEPT_KEYWORDS set to **.
* repoman: add wxwidgets.eclassnotused (bug 305469)Ryan Hill2010-11-131-0/+11
|
* Use a temporary workaround for bug #344845.Zac Medico2010-11-121-1/+5
|
* dyn_spec: account for empty $FILESDIRZac Medico2010-10-291-1/+3
| | | | This should fix bug 342721.
* debug-print: don't stat $T during depend phasev2.2.0_alpha2Zac Medico2010-10-271-1/+1
|
* ebuild: move SANDBOX_ON=0 setting laterZac Medico2010-10-271-3/+3
|
* Only addwrite for tmp dirs if sandbox is enabled.Zac Medico2010-10-271-1/+1
| | | | This should fix bug #307729.
* repoman: use slice to avoid IndexErrorZac Medico2010-10-271-1/+1
|
* repoman: optimize svn keywords handlingZac Medico2010-10-271-4/+7
|
* repoman: avoid possible IndexError with svn propsZac Medico2010-10-271-1/+2
|
* debug-print-function: output like older portageZac Medico2010-10-271-1/+1
|
* debug-print: permission fixesZac Medico2010-10-271-4/+7
|
* ebuild: account for symlink in /var/db/pkg pathZac Medico2010-10-271-1/+1
|
* ebuild(1): fix breakage for /var/db/pkg ebuildsZac Medico2010-10-261-3/+5
|
* Simplify retval checks in has_version() and best_version().Michał Górny2010-10-241-10/+4
|