#!/bin/sh TMPSIG=$(mktemp) TMPLNK=$(mktemp) TMPSIG1=$(mktemp -t XXXXXXXX.2000) TMPSIG2=$(mktemp -t XXXXXXXX.2017) TMPSIG3=$(mktemp -t XXXXXXXX.2018) TMPSIG4=$(mktemp -t XXXXXXXX.2019) cd /home/rpmbuild/site/rpms for dep in fedora/{26,27,28,29,30}/*/{i386,x86_64} enterprise/{6,7,8}/*/{i386,x86_64,armhfp} do arch=${dep##*/} LST="" if [ -d $dep/repodata -a $dep -nt $dep/repodata -a ! -f $dep/.closed ] then echo "== Nouveaux RPM dans $dep ==" if [ $arch = x86_64 ] then find $dep -name \*.rpm -a -newer $dep/repodata -print >>$TMPSIG else find $dep -name \*.noarch.rpm -a -newer $dep/repodata -print >>$TMPLNK find $dep -name \*.i?86.rpm -a -newer $dep/repodata -print >>$TMPSIG fi fi done find SRPMS -name \*.rpm -a -newer SRPMS/repodata -print >>$TMPSIG if [ -s $TMPSIG ]; then echo "À signer:"; sort < $TMPSIG grep fc26 $TMPSIG > $TMPSIG2 grep fc27 $TMPSIG >> $TMPSIG2 grep fc28 $TMPSIG > $TMPSIG3 grep fc29 $TMPSIG >> $TMPSIG3 grep el8 $TMPSIG >> $TMPSIG3 grep fc30 $TMPSIG > $TMPSIG4 grep src.rpm $TMPSIG >> $TMPSIG4 if [ -s $TMPSIG4 ]; then echo "== Signature des $(cat $TMPSIG4 | wc -l) nouveaux RPM (2019) ==" if rpmsign --define '_gpg_path /home/remi/.gnupg2019' --define "_gpg_name Remi's RPM repository" --addsign $(cat $TMPSIG4) then echo done. else exit 1 fi fi if [ -s $TMPSIG3 ]; then echo "== Signature des $(cat $TMPSIG3 | wc -l) nouveaux RPM (2018) ==" if rpmsign --define '_gpg_path /home/remi/.gnupg2018' --define "_gpg_name Remi's RPM repository" --addsign $(cat $TMPSIG3) then echo done. else exit 1 fi fi if [ -s $TMPSIG2 ]; then echo "== Signature des $(cat $TMPSIG2 | wc -l) nouveaux RPM (2017) ==" if rpmsign --define '_gpg_path /home/remi/.gnupg2017' --define "_gpg_name Remi's RPM repository" --addsign $(cat $TMPSIG2) then echo done. else exit 1 fi fi grep -v fc26 $TMPSIG | grep -v fc27 | grep -v fc28 | grep -v fc29 | grep -v fc30 | grep -v src.rpm | grep -v el8 > $TMPSIG1 if [ -s $TMPSIG1 ]; then echo "== Signature des $(cat $TMPSIG1 | wc -l) nouveaux RPM (old) ==" if rpmsign --define '_gpg_path /home/remi/.gnupgrpm' --define "_gpg_name Remi Collet" --addsign $(cat $TMPSIG1) then echo done. else exit 1 fi fi else echo "Rien à signer." fi if [ -s $TMPLNK ] then echo "== Création des liens (noarch) ==" cat $TMPLNK | while read dest do srce=${dest/\/ppc64/\/x86_64} srce=${srce/\/ppc/\/x86_64} srce=${srce/\/i386/\/x86_64} srce=${srce/\/armhfp/\/x86_64} ln -f $srce $dest && echo $dest done else echo "Rien à lier." fi for dep in SRPMS fedora/{26,27,28,29,30}/*/{i386,x86_64} enterprise/{6,7,8}/*/{i386,x86_64,armhfp} do if [ -d $dep/repodata -a $dep -nt $dep/repodata -a ! -f $dep/.closed ] then echo "== Actualisation de $dep ==" pushd $dep mkrepo nocheck touch repodata popd #else echo "== $dep est à jour ==" fi done