diff options
author | Remi Collet <remi@remirepo.net> | 2019-01-17 10:07:29 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-01-17 10:07:29 +0100 |
commit | d40bd182b73fb694cf92d36bd8fec9e4296744bf (patch) | |
tree | e65f792932011a2c50075e9201e517285546ac68 /mkallrepo | |
parent | 5d8da9e8dfaa4d88f128934461d639687da26d57 (diff) |
EL8 stuff
Diffstat (limited to 'mkallrepo')
-rwxr-xr-x | mkallrepo | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -8,7 +8,7 @@ TMPSIG3=$(mktemp) cd /home/rpmbuild/site/rpms -for dep in fedora/{24,25,26,27,28,29}/*/{i386,x86_64} enterprise/{6,7}/*/{i386,x86_64,armhfp} +for dep in fedora/{24,25,26,27,28,29}/*/{i386,x86_64} enterprise/{6,7,8}/*/{i386,x86_64,armhfp} do arch=${dep##*/} @@ -37,6 +37,7 @@ if [ -s $TMPSIG ]; then grep fc28 $TMPSIG > $TMPSIG3 grep fc29 $TMPSIG >> $TMPSIG3 + grep el8 $TMPSIG >> $TMPSIG3 grep src.rpm $TMPSIG >> $TMPSIG3 if [ -s $TMPSIG3 ]; then @@ -53,7 +54,7 @@ if [ -s $TMPSIG ]; then else exit 1 fi fi - grep -v fc26 $TMPSIG | grep -v fc27 | grep -v fc28 | grep -v fc29 | grep -v src.rpm > $TMPSIG1 + grep -v fc26 $TMPSIG | grep -v fc27 | grep -v fc28 | grep -v fc29 | 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) @@ -78,7 +79,7 @@ then echo "== Création des liens (noarch) ==" else echo "Rien à lier." fi -for dep in SRPMS fedora/{24,25,26,27,28,29}/*/{i386,x86_64} enterprise/{6,7}/*/{i386,x86_64,armhfp} +for dep in SRPMS fedora/{24,25,26,27,28,29}/*/{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 ==" |