Commit 4ade2bd6 authored by Vitaly Lipatov's avatar Vitaly Lipatov

update pkgrepls: add gnutls to alt.p7

parent c3a1ecd0
......@@ -48,14 +48,18 @@ add_32bit_requires()
echo "$i"
done | xargs -n 1000 echo
elif [ "$DISTRNAME" = "SUSE" ] || [ "$DISTRNAME" = "SLED" ] || [ "$DISTRNAME" = "SLES" ]; then
if [ $DISTRVERSION != "42" ] && ! version_more_version $DISTRVERSION 15 ; then
# i386 on SUSE or SLED : # add -32bit to all lib packages
if version_more_version $DISTRVERSION 15 && [ $DISTRVERSION != "42" ] ; then
# i386 on SUSE or SLED : # add -32bit to all lib packages exclude -devel
for i in $* ; do
rhas "$GREP" "^lib" && ! rhas "$i" "-32bit$" && ! rhas "$i" "-devel$" && echo "$i-32bit" && continue
rhas "$GREP" "^lib" && ! rhas "$i" "-devel$" && ! rhas "$i" "-32bit$" && echo "$i-32bit" && continue
echo "$i"
done | xargs -n 1000 echo
else
echo "$@"
# i386 on SUSE or SLED : # add -32bit to all lib packages
for i in $* ; do
rhas "$GREP" "^lib" && ! rhas "$i" "-32bit$" && echo "$i-32bit" && continue
echo "$i"
done | xargs -n 1000 echo
fi
else
echo "$@"
......
......@@ -14,3 +14,6 @@ qt5-base-devel|qt5-base-devel libEGL-devel
libmozjs17-devel|libmozjs17-devel
libsystemd-devel|libsystemd-devel
libgnutls26|libgnutls26
libgnutls28|libgnutls26
libgnutls30|libgnutls26
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment