forked from pool/yast2-trans-allpacks
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/yast2-trans-allpacks?expand=0&rev=2
This commit is contained in:
parent
a4d00d9264
commit
68e2c0fda1
@ -12,16 +12,17 @@ reqs=$(pdb query --filter \
|
|||||||
# # echo $reqs
|
# # echo $reqs
|
||||||
|
|
||||||
# check whether all wanted packages are available in stable (noarch)
|
# check whether all wanted packages are available in stable (noarch)
|
||||||
if [ -d /work/SRC/noarch ]; then
|
dist_dir=/mounts/dist/next-head-i586/suse/noarch
|
||||||
|
if [ -d $dist_dir ]; then
|
||||||
for f in $reqs; do
|
for f in $reqs; do
|
||||||
[ -d /work/SRC/noarch/$f ] || missing="$missing $f"
|
[ -f $dist_dir/$f.rpm ] || missing="$missing $f.rpm"
|
||||||
done
|
done
|
||||||
else
|
else
|
||||||
echo "warning: /work/SRC/noarch does not exist; skipping package check"
|
echo "warning: $dist_dir does not exist; skipping package check"
|
||||||
fi
|
fi
|
||||||
# report result
|
# report result
|
||||||
if [ -n "$missing" ]; then
|
if [ -n "$missing" ]; then
|
||||||
echo "missing package in /work/SRC/noach :"
|
echo "missing package in $dist_dir :"
|
||||||
echo " \"$missing\""
|
echo " \"$missing\""
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Mar 2 10:12:09 CET 2009 - ke@suse.de
|
||||||
|
|
||||||
|
- list-trans-packs.sh: Check available packages on /mounts/dist/...
|
||||||
|
- Update Requires:
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 21 14:26:56 CEST 2008 - ke@suse.de
|
Wed May 21 14:26:56 CEST 2008 - ke@suse.de
|
||||||
|
|
||||||
|
@ -20,12 +20,12 @@
|
|||||||
|
|
||||||
Name: yast2-trans-allpacks
|
Name: yast2-trans-allpacks
|
||||||
Version: 2.15.0
|
Version: 2.15.0
|
||||||
Release: 100
|
Release: 101
|
||||||
License: LGPL v2.1 or later
|
License: LGPL v2.1 or later
|
||||||
Group: System/YaST
|
Group: System/YaST
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Prefix: /usr
|
Prefix: /usr
|
||||||
Requires: yast2-trans-af yast2-trans-ar yast2-trans-bg yast2-trans-bn yast2-trans-bs yast2-trans-ca yast2-trans-cs yast2-trans-cy yast2-trans-da yast2-trans-de yast2-trans-el yast2-trans-en_GB yast2-trans-en_US yast2-trans-es yast2-trans-et yast2-trans-fa yast2-trans-fi yast2-trans-fr yast2-trans-gl yast2-trans-gu yast2-trans-hi yast2-trans-hr yast2-trans-hu yast2-trans-id yast2-trans-it yast2-trans-ja yast2-trans-jv yast2-trans-ka yast2-trans-km yast2-trans-ko yast2-trans-lo yast2-trans-lt yast2-trans-mk yast2-trans-mr yast2-trans-nb yast2-trans-nl yast2-trans-pa yast2-trans-pl yast2-trans-pt yast2-trans-pt_BR yast2-trans-ro yast2-trans-ru yast2-trans-si yast2-trans-sk yast2-trans-sl yast2-trans-sr yast2-trans-sv yast2-trans-ta yast2-trans-th yast2-trans-tr yast2-trans-uk yast2-trans-vi yast2-trans-wa yast2-trans-xh yast2-trans-zh_CN yast2-trans-zh_TW yast2-trans-zu
|
Requires: yast2-trans-af yast2-trans-ar yast2-trans-bg yast2-trans-bn yast2-trans-bs yast2-trans-ca yast2-trans-cs yast2-trans-cy yast2-trans-da yast2-trans-de yast2-trans-el yast2-trans-en_GB yast2-trans-en_US yast2-trans-es yast2-trans-et yast2-trans-fa yast2-trans-fi yast2-trans-fr yast2-trans-gl yast2-trans-gu yast2-trans-hi yast2-trans-hr yast2-trans-hu yast2-trans-id yast2-trans-it yast2-trans-ja yast2-trans-jv yast2-trans-ka yast2-trans-km yast2-trans-ko yast2-trans-ku yast2-trans-lo yast2-trans-lt yast2-trans-mk yast2-trans-mr yast2-trans-nb yast2-trans-nl yast2-trans-pa yast2-trans-pl yast2-trans-pt yast2-trans-pt_BR yast2-trans-ro yast2-trans-ru yast2-trans-si yast2-trans-sk yast2-trans-sl yast2-trans-sr yast2-trans-sv yast2-trans-sw yast2-trans-ta yast2-trans-th yast2-trans-tr yast2-trans-uk yast2-trans-vi yast2-trans-wa yast2-trans-xh yast2-trans-zh_CN yast2-trans-zh_TW yast2-trans-zu
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
Summary: Internal: Require all YaST Translation Packages (Empty)
|
Summary: Internal: Require all YaST Translation Packages (Empty)
|
||||||
Source: list-trans-packs.sh
|
Source: list-trans-packs.sh
|
||||||
@ -54,6 +54,9 @@ rm -rf "$RPM_BUILD_ROOT"
|
|||||||
%doc README
|
%doc README
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Mar 02 2009 ke@suse.de
|
||||||
|
- list-trans-packs.sh: Check available packages on /mounts/dist/...
|
||||||
|
- Update Requires:
|
||||||
* Wed May 21 2008 ke@suse.de
|
* Wed May 21 2008 ke@suse.de
|
||||||
- list-trans-packs.sh: Fix typo.
|
- list-trans-packs.sh: Fix typo.
|
||||||
- Add yast2-trans-th; reported by Steffen Winterfeld.
|
- Add yast2-trans-th; reported by Steffen Winterfeld.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user