verifier si le fichier debian/compat existe

This commit is contained in:
Emmanuel Garette 2022-06-23 10:09:24 +02:00
parent e15a4ae341
commit 93cf7877f5
1 changed files with 11 additions and 9 deletions

20
makepkg
View File

@ -57,14 +57,16 @@ if [ $CURRENT_BRANCH = 'master' ]; then
else
echo "systemd ok"
fi
if grep -q 1 debian/compat; then
echo "bonne version compat"
else
echo "NON COMPILABLE EN 2.9"
echo "Il doit y avoir au moins 10 (idéalement 13) dans debian/compat !!!"
git checkout $ORI_BR > /dev/null 2>&1
git branch -d $DIST_BR > /dev/null 2>&1
exit 1
if [ -f debian/compat ]; then
if grep -q 1 debian/compat; then
echo "bonne version compat"
else
echo "NON COMPILABLE EN 2.9"
echo "Il doit y avoir au moins 10 (idéalement 13) dans debian/compat !!!"
git checkout $ORI_BR > /dev/null 2>&1
git branch -d $DIST_BR > /dev/null 2>&1
exit 1
fi
fi
if grep -q "with systemd" debian/control; then
echo "NON COMPILABLE EN 2.9"
@ -73,7 +75,7 @@ if [ $CURRENT_BRANCH = 'master' ]; then
git branch -d $DIST_BR > /dev/null 2>&1
exit 1
else
echo "pas de dh-systemd"
echo "pas de with systemd"
fi
if grep -q dh-systemd debian/control; then
echo "NON COMPILABLE EN 2.9"