From aa643a9c90fd5b26791a987784ba0209bdbd3fb7 Mon Sep 17 00:00:00 2001 From: BlackNoxis Date: Wed, 14 Jan 2015 02:35:34 +0200 Subject: Added all the lang packs --- app-office/do-libreoffice-bump.sh | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 app-office/do-libreoffice-bump.sh (limited to 'app-office/do-libreoffice-bump.sh') diff --git a/app-office/do-libreoffice-bump.sh b/app-office/do-libreoffice-bump.sh new file mode 100755 index 00000000..bf3447cc --- /dev/null +++ b/app-office/do-libreoffice-bump.sh @@ -0,0 +1,26 @@ +#!/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}" -- cgit v1.2.3