summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Shvetsov <alexxy@gentoo.org>2012-11-16 20:51:50 +0400
committerAlexey Shvetsov <alexxy@gentoo.org>2012-11-16 20:51:50 +0400
commit8c3346b35567d9c56377b0f4df4c122a673353db (patch)
tree4a1baa6ccc9601b111bf4f23d6905b62bf9d8e1c
parent0ce8875209376ec3f64c2f66b6990073409e2746 (diff)
downloadkde-8c3346b35567d9c56377b0f4df4c122a673353db.tar.gz
kde-8c3346b35567d9c56377b0f4df4c122a673353db.tar.bz2
kde-8c3346b35567d9c56377b0f4df4c122a673353db.zip
[Documentation] Fix bumptool
Signed-off-by: Alexey Shvetsov <alexxy@gentoo.org>
-rwxr-xr-xDocumentation/maintainers/bump_new_revision.sh10
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
}