summaryrefslogtreecommitdiffstats
path: root/debian/dh-dbgsym-metapkg
diff options
context:
space:
mode:
authorLuca Boccassi <bluca@debian.org>2018-11-02 16:50:27 +0000
committerLuca Boccassi <luca.boccassi@gmail.com>2018-11-13 11:18:30 +0000
commitda1af9ba4305c71f18a11e9206cdbdfc5eb36cbd (patch)
treee3286c6976712a352eea1a9b1b52fde98dce36a1 /debian/dh-dbgsym-metapkg
parent5ed8cf567ae573c44fbbb7dea74f6e6fd3f50524 (diff)
Drop libdpdk-dbgsym - not really used and broken in sid
debhelper tools got stricter on acting on packages missing from debian/control, so the generation of libdpdk-dbgsym is broken. It was always a hack anyway since dbgsym are not supposed to be created manually Change-Id: I423e7006049a48085686dfea5c3dc106ec86217a Signed-off-by: Luca Boccassi <luca.boccassi@gmail.com>
Diffstat (limited to 'debian/dh-dbgsym-metapkg')
-rwxr-xr-xdebian/dh-dbgsym-metapkg24
1 files changed, 0 insertions, 24 deletions
diff --git a/debian/dh-dbgsym-metapkg b/debian/dh-dbgsym-metapkg
deleted file mode 100755
index fecbed18..00000000
--- a/debian/dh-dbgsym-metapkg
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh -e
-
-PACKAGE=${1:?Missing parameter}
-
-dh_installdocs -p${PACKAGE}
-dh_installchangelogs -p${PACKAGE}
-dh_compress -p${PACKAGE}
-
-install -d debian/${PACKAGE}/DEBIAN
-
-echo -n 'misc:Depends=' > debian/${PACKAGE}.substvars
-grep -E 'lib.*-dbgsym' debian/files | tr '_' ' ' | \
- awk '{ print $1,"(=",$2 ")" }' | paste -sd ',' - | \
- sed -e 's/,/, /g' >> debian/${PACKAGE}.substvars
-
-dh_gencontrol -p libdpdk-dev -- \
- -Pdebian/${PACKAGE} \
- -Tdebian/${PACKAGE}.substvars \
- -UPre-Depends -URecommends -USuggests -UEnhances -UProvides \
- -UEssential -UConflicts -UReplaces -UBreaks \
- -DSection=debug -DPriority=extra \
- -DAuto-Built-Package=debug-symbols \
- -DPackage=${PACKAGE} "-DDepends=\${misc:Depends}" \
- "-DDescription=Debug symbols for libdpdk-dev (meta-package)"