aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-08-01 18:45:52 +0200
committerFlorian Dold <florian@dold.me>2021-08-01 18:46:29 +0200
commitac96733695ecc0ebe8e582e3230f2a95c89712bc (patch)
tree4cb510a72ec34264b4872106d846dc3b430fa7ee
parent85735a5e6b0058d941cabe305dadd311f218592a (diff)
downloadexchange-ac96733695ecc0ebe8e582e3230f2a95c89712bc.tar.gz
exchange-ac96733695ecc0ebe8e582e3230f2a95c89712bc.zip
debian: support compat level 12
-rw-r--r--debian/changelog6
-rw-r--r--debian/control2
-rwxr-xr-xdebian/rules4
3 files changed, 10 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index c2b7b7277..28268f32a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
1taler-exchange (0.9.0-18) unstable; urgency=low
2
3 * Support debhelper-compat 12.
4
5 -- Florian Dold <dold@taler.net> Sun, 01 Aug 2021 18:42:34 +0200
6
1taler-exchange (0.9.0-17) unstable; urgency=low 7taler-exchange (0.9.0-17) unstable; urgency=low
2 8
3 * Fix installation of config files. 9 * Fix installation of config files.
diff --git a/debian/control b/debian/control
index 152d1e484..e4c9be4f5 100644
--- a/debian/control
+++ b/debian/control
@@ -7,7 +7,7 @@ Build-Depends:
7 automake (>=1.11.1), 7 automake (>=1.11.1),
8 autopoint, 8 autopoint,
9 bash, 9 bash,
10 debhelper-compat (= 13), 10 debhelper-compat (= 12),
11 gettext, 11 gettext,
12 libgnunet-dev, 12 libgnunet-dev,
13 libcurl4-gnutls-dev (>=7.35.0) | libcurl4-openssl-dev (>= 7.35.0), 13 libcurl4-gnutls-dev (>=7.35.0) | libcurl4-openssl-dev (>= 7.35.0),
diff --git a/debian/rules b/debian/rules
index 2ccac24cd..81db14a9d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -45,9 +45,11 @@ override_dh_installsystemd:
45 # final invocation to generate daemon reload 45 # final invocation to generate daemon reload
46 dh_installsystemd 46 dh_installsystemd
47 47
48# Remove files already present in libtalerexchange from main taler-exchange package
49override_dh_install: 48override_dh_install:
50 dh_install 49 dh_install
50# With debhelper-compat=12, we still need to call this manually
51 dh_installtmpfiles
52# Remove files already present in libtalerexchange from main taler-exchange package
51 cd debian/libtalerexchange-dev; find . -type f,l -exec rm -f ../libtalerauditor/{} \; 53 cd debian/libtalerexchange-dev; find . -type f,l -exec rm -f ../libtalerauditor/{} \;
52 cd debian/libtalerexchange-dev; find . -type f,l -exec rm -f ../taler-exchange/{} \; 54 cd debian/libtalerexchange-dev; find . -type f,l -exec rm -f ../taler-exchange/{} \;
53 cd debian/libtalerexchange-dev; find . -type f,l -exec rm -f ../libtalerexchange/{} \; 55 cd debian/libtalerexchange-dev; find . -type f,l -exec rm -f ../libtalerexchange/{} \;