summaryrefslogtreecommitdiffstats
path: root/bin/ebuild-helpers
Commit message (Collapse)AuthorAgeFilesLines
* 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