diff options
author | B Stack <bgstack15@gmail.com> | 2020-09-05 15:21:01 -0400 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2020-09-05 15:35:51 -0400 |
commit | 7964e65240b5adfd748b3128850b21c1982784d0 (patch) | |
tree | e857ed57cb6239847af440c66af9e1e3f32c57cd | |
parent | initial work on py3+qt5 (diff) | |
download | stackrpms-7964e65240b5adfd748b3128850b21c1982784d0.tar.gz stackrpms-7964e65240b5adfd748b3128850b21c1982784d0.tar.bz2 stackrpms-7964e65240b5adfd748b3128850b21c1982784d0.zip |
successfully builds a compat=12 dpkg
-rw-r--r-- | puddletag/debian/changelog | 1 | ||||
-rw-r--r-- | puddletag/debian/compat | 2 | ||||
-rwxr-xr-x | puddletag/debian/rules | 3 |
3 files changed, 4 insertions, 2 deletions
diff --git a/puddletag/debian/changelog b/puddletag/debian/changelog index b54894d..0faa8d0 100644 --- a/puddletag/debian/changelog +++ b/puddletag/debian/changelog @@ -3,6 +3,7 @@ puddletag (2.0.1-1+devuan) obs; urgency=high * New upstream release with Python3 and Qt5 port. * Fork debian debian.tar.xz and remove all docs steps which were broken. + * Bump compat level to 12 -- Ben Stack <bgstack15@gmail.com> Sat, 05 Sep 2020 11:52:56 -0400 diff --git a/puddletag/debian/compat b/puddletag/debian/compat index b4de394..48082f7 100644 --- a/puddletag/debian/compat +++ b/puddletag/debian/compat @@ -1 +1 @@ -11 +12 diff --git a/puddletag/debian/rules b/puddletag/debian/rules index 9e5fa22..213bcff 100755 --- a/puddletag/debian/rules +++ b/puddletag/debian/rules @@ -8,9 +8,10 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 +export PYBUILD_NAME=puddletag %: - dh $@ --with python3 + dh $@ --with python3 --buildsystem=pybuild override_dh_auto_install: cd $(CURDIR)/source ; \ |