summaryrefslogtreecommitdiffstats
path: root/bin/ebuild-helpers
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers.Ulrich Mueller2010-08-284-4/+4
|
* Implement controllable compression and docompress, bug #273633.Ulrich Mueller2010-08-286-3/+16
|
* ecompressdir: use proper exit valueJonathan Callen2010-08-271-1/+1
|
* Update docs, comments, and messages to refer to make.globals inZac Medico2010-08-191-3/+2
| | | | /usr/share/portage/config/ instead of /etc/make.globals.
* * In helpers_die arguments, display ${0##*/} instead of $0 since $0Zac Medico2010-08-1831-74/+74
| | | | | | is needlessly long. * When calling helpers_die from a function, use ${FUNCNAME[0]} in arguments instead of $0.
* Source isolated-functions.sh for helpers_die function.Zac Medico2010-08-171-1/+3
|
* Use /usr/bin/python when PORTAGE_PYTHON variable is empty.Arfrever Frehtes Taifersar Arahesis2010-08-142-2/+2
| | | | It avoids some errors during upgrade from older Portage versions.
* Ensure that all Python processes use the same version of Python.Arfrever Frehtes Taifersar Arahesis2010-08-142-10/+6
|
* Remove message about race conditions in die, solved by EbuildIpcDaemon.Zac Medico2010-08-131-5/+1
|
* Fix some comments.Arfrever Frehtes Taifersar Arahesis2010-08-132-2/+2
|
* Make utilities die on failure in EAPI 4, bug 273651Dror Levin2010-08-1232-56/+141
|
* Source isolated-functions.sh for vecho definition. Thanks to Martin MOKREJŠZac Medico2010-04-221-1/+3
| | | | <mmokrejs@fold.natur.cuni.cz> for reporting.
* Bug #316311 - Prefer -i18n option of doman to filename language suffixZac Medico2010-04-201-3/+5
| | | | (EAPI 4). Thanks to Ulrich Müller <ulm@g.o> for this patch from bug #303919.
* Add back executable bits, accidentally removed in previous commit.Zac Medico2010-03-2449-0/+0
|
* Remove all svn $Id keywords.Zac Medico2010-03-2449-49/+0
|
* Fix it so an empty directory given to doins -r does not trigger failure.Zac Medico2010-01-061-7/+6
| | | | svn path=/main/trunk/; revision=15172
* Bug #299248 - Fix doins return code handling to make sure it always failsZac Medico2010-01-041-3/+20
| | | | | | | when appropriate. Thanks to Jonathan Callen <abcd@g.o> for the initial patch. svn path=/main/trunk/; revision=15158
* Combine 2 shift calls into one.v2.2_rc59Zac Medico2009-12-131-2/+1
| | | | svn path=/main/trunk/; revision=15059
* Bug #296554 - Add decompression support to ecompress (similar to ecompressdirZac Medico2009-12-131-0/+57
| | | | | | | behavior) since dodoc can call ecompress with stuff that's already compressed in some way. svn path=/main/trunk/; revision=15058
* Add EAPI 3_pre2 to conditinals so the EAPI 4 stuff is disabled.Zac Medico2009-12-112-2/+2
| | | | svn path=/main/trunk/; revision=15035
* Move ebuild helpers to account for rename of EAPI 3 to 4.Zac Medico2009-12-083-0/+0
| | | | svn path=/main/trunk/; revision=14966
* Bump EAPI conditionals to account for rename of EAPI 3 to 4. Thanks toZac Medico2009-12-082-2/+2
| | | | | | Jonathan Callen <abcd@g.o> for this patch. svn path=/main/trunk/; revision=14965
* Use find with -print0 for absolute safety.Zac Medico2009-10-231-2/+2
| | | | svn path=/main/trunk/; revision=14707
* Bug #289967 - Update installsources rsync code for >=debugedit-4.4.6-r2.Zac Medico2009-10-231-9/+23
| | | | | | Thanks to Peter Alfredsen <loki_val@g.o> for this patch. svn path=/main/trunk/; revision=14706
* Bug #273636 - Add doins and newins support for symlink preservation inZac Medico2009-10-172-7/+30
| | | | | | | EAPI 3. Thanks to Jonathan Callen <abcd@g.o> for the initial patch (I added EAPI conditionals in order to share code between all EAPIs). svn path=/main/trunk/; revision=14625
* Use a shell script wrapper for EPYTHON handling.Zac Medico2009-10-111-1/+11
| | | | svn path=/main/trunk/; revision=14585
* Use a shell script for dohtml instead of a function, for xargs compatibility.Zac Medico2009-10-111-0/+11
| | | | svn path=/main/trunk/; revision=14582
* Rename dohtml to dohtml.py. Next commit will add a shell script wrapper forZac Medico2009-10-111-191/+0
| | | | | | EPYTHON handling. svn path=/main/trunk/; revision=14581
* Support print() function with Python 2 in some files.Arfrever Frehtes Taifersar Arahesis2009-09-201-0/+2
| | | | svn path=/main/trunk/; revision=14291
* Update syntax of calls to print() for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-201-16/+16
| | | | | | (2to3-3.1 -f print -nw ${FILES}) svn path=/main/trunk/; revision=14290
* Support QA_DT_HASH_${ARCH} and QA_PRESTRIPPED_${ARCH} (bug #271416).Arfrever Frehtes Taifersar Arahesis2009-08-211-0/+2
| | | | svn path=/main/trunk/; revision=14114
* Add 'return False' which was missing from the previous commit.Arfrever Frehtes Taifersar Arahesis2009-08-171-0/+1
| | | | svn path=/main/trunk/; revision=14076
* Print a warning when nonexistent files have been passed to dohtml.Arfrever Frehtes Taifersar Arahesis2009-08-171-1/+3
| | | | svn path=/main/trunk/; revision=14075
* Add dohard and doset helper which die for EAPI 3. TODO: Make the dieZac Medico2009-04-243-0/+14
| | | | | | | | 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. svn path=/main/trunk/; revision=13389
* Set executable.Zac Medico2009-04-241-0/+0
| | | | svn path=/main/trunk/; revision=13388
* Use ret|=1 instead of ++ret, to avoid possible overflow.Zac Medico2009-04-211-1/+1
| | | | svn path=/main/trunk/; revision=13383
* Add new dodoc implementation for EAPI 3. Thanks to to Tiziano MüllerZac Medico2009-04-211-0/+50
| | | | | | <dev-zero@g.o> for this patch. svn path=/main/trunk/; revision=13382
* Make portage.bsd_chflags correspond to FEATURES=chflags so that it can beZac Medico2009-04-131-2/+2
| | | | | | used for related conditionals in shell code. svn path=/main/trunk/; revision=13342
* Bug #264245 - Revert i|=1 from r13242 since that breaks the array indexing ↵Zac Medico2009-04-021-1/+1
| | | | | | code here. svn path=/main/trunk/; revision=13279
* In order to eliminate the possibility of integer overflay, replace things likeZac Medico2009-03-2912-17/+17
| | | | | | ((ret+=$?)) with ((ret|=$?)). Thanks to zong_sharo for the suggestion. svn path=/main/trunk/; revision=13242
* When copying symlink targets to temp files, use a private temp dir insideZac Medico2009-03-271-2/+7
| | | | | | $T instead of using $T directly. svn path=/main/trunk/; revision=13202
* For consistency in output with other helpers, check for file existenceZac Medico2009-03-271-1/+3
| | | | | | before calling install. svn path=/main/trunk/; revision=13201
* Fix domo and doexe to return non-zero if there are any errors. Thanks toZac Medico2009-03-252-1/+14
| | | | | | zong_sharo for reporting. svn path=/main/trunk/; revision=13182
* Also add an einfo binary.Zac Medico2009-03-121-0/+1
| | | | svn path=/main/trunk/; revision=13066
* Bug #262096 - Add separate eerror, elog, eqawarn, and ewarn binaries forZac Medico2009-03-124-0/+11
| | | | | | | use by non-bash programs running inside the ebuild environment, such as sandbox. svn path=/main/trunk/; revision=13065
* Use ${x##*/} instead of calling basename.Zac Medico2009-03-121-1/+1
| | | | svn path=/main/trunk/; revision=13064
* Move ebuild helpers into an ebuild-helpers subdirectory.Zac Medico2009-03-1246-0/+1516
svn path=/main/trunk/; revision=13063