]> git.pld-linux.org Git - packages/rpm-build-macros.git/blobdiff - dokuwiki-find-lang.sh
Add rename notice
[packages/rpm-build-macros.git] / dokuwiki-find-lang.sh
old mode 100644 (file)
new mode 100755 (executable)
index add8412..8965583
@@ -1,9 +1,19 @@
 #!/bin/sh
+PROG=${0##*/}
+if [ $# = 2 ]; then
+       # for using same syntax as rpm own find-lang
+       RPM_BUILD_ROOT=$1
+       shift
+fi
 dir=$RPM_BUILD_ROOT/usr/share/dokuwiki
 langfile=$1
+tmp=$(mktemp) || exit 1
+rc=0
 
-> $langfile
-find $dir -type d -name lang | while read dir; do
+find $dir -type d -name lang > $tmp
+
+echo '%defattr(644,root,root,755)' > $langfile
+while read dir; do
        echo "%dir ${dir#$RPM_BUILD_ROOT}" >> $langfile
        for dir in $dir/*; do
                lang=${dir##*/}
@@ -21,11 +31,35 @@ find $dir -type d -name lang | while read dir; do
                id-ni)
                        lang=id_NI
                ;;
+               ca-valencia)
+                       lang=ca@valencia
+               ;;
+               hu-formal)
+                       lang=hu
+               ;;
+               de-informal)
+                       lang=de
+               ;;
+               zh-cn)
+                       lang=zh_CN
+               ;;
                *-*)
-                       echo >&2 "Need mapping for $lang!"
-                       exit 1
+                       echo >&2 "ERROR: Need mapping for $lang!"
+                       rc=1
                ;;
                esac
-               echo "%lang($lang) ${dir#$RPM_BUILD_ROOT}" >> $langfile
+               if [ "$lang" = "en" ]; then
+                       echo "${dir#$RPM_BUILD_ROOT}" >> $langfile
+               else
+                       echo "%lang($lang) ${dir#$RPM_BUILD_ROOT}" >> $langfile
+               fi
        done
-done
+done < $tmp
+
+if [ "$(grep -Ev '(^%defattr|^$)' $langfile | wc -l)" -le 0 ]; then
+       echo >&2 "$PROG: Error: international files not found!"
+       rc=1
+fi
+
+rm -f $tmp
+exit $rc
This page took 0.095803 seconds and 4 git commands to generate.