Tweak Debian packaging and remove custom build script
Now `debian/rules mk-orig-source && gbp buildpackage` should work out-of-the-box.
This commit is contained in:
parent
dc277c62a3
commit
6c529cb1c9
|
@ -1,24 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Run this in source directory to easily make the debian package&pals. Be sure
|
||||
# the source is ./configured before running. Latest upstream version ($V here)
|
||||
# in debian/changelog must be equal to the version listed in configure.ac.
|
||||
|
||||
OUT_DIR=debian-packages
|
||||
N=`dpkg-parsechangelog --show-field Source`
|
||||
VD=`dpkg-parsechangelog --show-field Version`
|
||||
V="${VD%-*}"
|
||||
NV="$N-$V"
|
||||
DIST="$NV.tar.gz"
|
||||
ORIG="$OUT_DIR/${N}_$V.orig.tar.gz"
|
||||
|
||||
mkdir -p "$OUT_DIR" && \
|
||||
make dist && \
|
||||
cp "$DIST" "$ORIG" && \
|
||||
tar xzf "$DIST" -C "$OUT_DIR" && \
|
||||
cp -a debian "$OUT_DIR/$NV/" && \
|
||||
cd "$OUT_DIR/$NV" && \
|
||||
debuild && \
|
||||
cd .. && \
|
||||
rm -r "$NV" && \
|
||||
echo "READY?" #z80?
|
2
debian/gbp.conf
vendored
Normal file
2
debian/gbp.conf
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[buildpackage]
|
||||
no-create-orig = True
|
9
debian/rules
vendored
9
debian/rules
vendored
|
@ -19,7 +19,7 @@ include /usr/share/dpkg/default.mk
|
|||
|
||||
# main packaging script based on dh7 syntax
|
||||
%:
|
||||
dh $@ --with autotools-dev
|
||||
dh $@ --with autoreconf
|
||||
|
||||
# debmake generated override targets
|
||||
# This is example for Cmake (See http://bugs.debian.org/641051 )
|
||||
|
@ -27,6 +27,9 @@ include /usr/share/dpkg/default.mk
|
|||
# dh_auto_configure -- \
|
||||
# -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH)
|
||||
|
||||
$(DEB_SOURCE)-$(DEB_VERSION_UPSTREAM).tar.gz:
|
||||
$(MAKE) dist
|
||||
|
||||
|
||||
|
||||
.PHONY: mk-orig-source
|
||||
mk-orig-source: $(DEB_SOURCE)-$(DEB_VERSION_UPSTREAM).tar.gz
|
||||
ln -f "$<" ../$(DEB_SOURCE)_$(DEB_VERSION_UPSTREAM).orig.tar.gz
|
||||
|
|
1
debian/source/options
vendored
Normal file
1
debian/source/options
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
extend-diff-ignore = "^(doc|m4)/|^(config|README)\b|^(depcomp|missing|install-sh|compile|INSTALL|ltmain.sh)$|\.tar\.gz$"
|
Loading…
Reference in a new issue