bce656b287
OBS-URL: https://build.opensuse.org/package/show/system:install:head/package-translations?expand=0&rev=19
53 lines
1.4 KiB
Bash
53 lines
1.4 KiB
Bash
#!/bin/bash
|
|
|
|
test -f package-translations.spec || { "cwd must contain package-translations.spec"; exit 1; }
|
|
|
|
if test -d "$MY_LCN_PACK_CHECKOUT"; then
|
|
echo "Updating $MY_LCN_PACK_CHECKOUT"
|
|
svn up $MY_LCN_PACK_CHECKOUT
|
|
else
|
|
echo "No \$MY_LCN_PACK_CHECKOUT set, will checkout temporarly"
|
|
svn export https://svn.berlios.de/svnroot/repos/opensuse-i18n/trunk/packages
|
|
export MY_LCN_PACK_CHECKOUT=$PWD/packages
|
|
fi
|
|
|
|
rm -rf mo
|
|
tar xf package-translations.tar.bz2
|
|
mv mo mo.old
|
|
mkdir mo
|
|
for file in $MY_LCN_PACK_CHECKOUT/*/po; do
|
|
lang=`echo $file | sed -e "s,/po,,; s,.*/,,"`
|
|
echo $file $lang
|
|
msgcat --use-first $file/*.po | msgfmt -o mo/package-translations-$lang.mo -
|
|
done
|
|
if diff -ru mo.old mo; then
|
|
echo "no changes"
|
|
rm -rf mo mo.old
|
|
exit 1
|
|
else
|
|
rm -f package-translations.tar.bz2
|
|
tar cfj package-translations.tar.bz2 mo
|
|
rm -rf mo mo.old
|
|
fi
|
|
|
|
NAME=package-translations
|
|
{
|
|
echo "-------------------------------------------------------------------"
|
|
timestamp=$(LC_ALL=POSIX TZ=Europe/Berlin date)
|
|
timestamp2=$(LC_ALL=POSIX TZ=Europe/Berlin date +"%Y-%m-%d")
|
|
user=$(osc whois | cut -d\" -f3)
|
|
user=$(echo $user)
|
|
echo "$timestamp - $user"
|
|
echo
|
|
echo "- automated update on $timestamp2"
|
|
echo
|
|
if head -n 6 $NAME.changes | grep -q "automated update" ; then
|
|
tail -n +6 $NAME.changes
|
|
else
|
|
cat $NAME.changes
|
|
fi
|
|
} > $NAME.changes.new
|
|
mv $NAME.changes.new $NAME.changes
|
|
|
|
exit 0
|