diff options
| -rwxr-xr-x | Documentation/maintainers/bump_new_revision.sh | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Documentation/maintainers/bump_new_revision.sh b/Documentation/maintainers/bump_new_revision.sh index ca07b129498..18b9ea0fe11 100755 --- a/Documentation/maintainers/bump_new_revision.sh +++ b/Documentation/maintainers/bump_new_revision.sh @@ -17,7 +17,15 @@ get_packages_from_slot() { echo ${SLOTFILE} # debug # remove empty lines, another slots and comments, replace slot by # version.ebuild - sed -e '/^[@#]/d;/^$/d;\@kde-base/@!d;s/^>=//g;s/^~//g;s/-4\..\.50$//g;s/-9999$//g' \ + sed -e '/^[@#]/d' \ + -e '/^$/d' \ + -e '\@kde-base/@!d' \ + -e 's/^>=//g' \ + -e 's/^~//g' \ + -e 's/^<//g' \ + -e 's/-4\..\.50$//g' \ + -e 's/-4\.1.\.50$//g' \ + -e 's/-9999$//g' \ ${SLOTFILE} >> ${TMPFILE} done } |
