summaryrefslogtreecommitdiff
path: root/app-office/do-libreoffice-bump.sh
diff options
context:
space:
mode:
Diffstat (limited to 'app-office/do-libreoffice-bump.sh')
-rwxr-xr-xapp-office/do-libreoffice-bump.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/app-office/do-libreoffice-bump.sh b/app-office/do-libreoffice-bump.sh
deleted file mode 100755
index bf3447cc..00000000
--- a/app-office/do-libreoffice-bump.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-
-FROM_PV="4.2.5"
-TO_PV="4.2.6"
-FAILED_LANGS=""
-DONE_LANGS=""
-for item in `find -name libreoffice-l10n-*${FROM_PV}*.ebuild`; do
-
- echo $item
- newfile=${item/${FROM_PV}/${TO_PV}}
- cp "${item}" "${newfile}" || exit 1
-
- # do manifest
- ebuild "${newfile}" manifest
- if [ "$?" != "0" ]; then
- FAILED_LANGS="${FAILED_LANGS} ${newfile}"
- rm "${newfile}"
- else
- DONE_LANGS="${DONE_LANGS} ${newfile}"
- git add "${newfile}"
- fi
-
-done
-
-echo "FAILED => ${FAILED_LANGS}"
-echo "DONE => ${DONE_LANGS}"