52 lines
1.8 KiB
Diff
52 lines
1.8 KiB
Diff
Index: checks/01-check-debuginfo
|
|
===================================================================
|
|
--- checks/01-check-debuginfo.orig 2008-07-14 13:47:43.000000000 +0200
|
|
+++ checks/01-check-debuginfo 2009-07-30 10:11:30.000000000 +0200
|
|
@@ -5,7 +5,7 @@ echo "... testing for empty debuginfo pa
|
|
fast=
|
|
test -x /usr/lib/rpm/rpmi && fast="--nodigest --nosignature"
|
|
|
|
-RPMS=`find $BUILD_ROOT/usr/src/packages/RPMS -name "*-debuginfo-*.rpm"`
|
|
+RPMS=`find $BUILD_ROOT/usr/src/packages/RPMS -name "*-debuginfo-*.rpm" -o -name "*-debugsource-*.rpm"`
|
|
test -z "$RPMS" && exit 0
|
|
for rpm in $RPMS ; do
|
|
HAS_DEBUG=
|
|
@@ -16,34 +16,11 @@ for rpm in $RPMS ; do
|
|
/usr/src/debug/*) HAS_SRC=true ;;
|
|
esac
|
|
done
|
|
- if test -z "$HAS_DEBUG" ; then
|
|
+ if test -z "$HAS_DEBUG" -a -z "$HAS_SRC"; then
|
|
echo '!'
|
|
- echo "! ${rpm##*/}: no debug information, deleting package"
|
|
- echo '!'
|
|
- rm -f "$rpm" "${rpm/-debuginfo-/-debugsource-}"
|
|
- elif test -z "$HAS_SRC" ; then
|
|
- rpmsource=${rpm/-debuginfo-/-debugsource-}
|
|
- if test -s "${rpmsource}" ; then
|
|
-# for l in "$(rpm -qpl $fast ${rpmsource})" ; do
|
|
-# case "$l" in
|
|
-# /usr/src/debug/*) HAS_SRC=true ;;
|
|
-# "(contains no files)") HAS_SRC=""; break ;;
|
|
-# esac
|
|
-# done
|
|
- rpm -qpl $fast "${rpmsource}" | egrep -q "^/usr/src/debug/" && HAS_SRC=true
|
|
- if test -n "$HAS_SRC" ; then
|
|
- continue
|
|
- fi
|
|
- echo '!'
|
|
- echo "! ${rpmsource##*/}: no debug sources, deleting package"
|
|
- echo "! ${rpm##*/}: WARNING: this probably means the debug information is invalid"
|
|
- echo '!'
|
|
- rm -f "${rpmsource}"
|
|
- continue
|
|
- fi
|
|
- echo '!'
|
|
- echo "! ${rpm##*/}: WARNING: no sources in debuginfo package"
|
|
+ echo "! $rpm: empty debuginfo/debugsource package, deleting"
|
|
echo '!'
|
|
+ rm -f "$rpm"
|
|
fi
|
|
done
|
|
exit 0
|