Bump dependency requirements, make dynamic
Harlan Lieberman-Berg
5 months ago
6 | 6 |
Build-Depends: debhelper-compat (= 13),
|
7 | 7 |
dh-python,
|
8 | 8 |
python3,
|
9 | |
python3-acme-abi-1 (>= 1.21~),
|
10 | |
python3-certbot-abi-1 (>= 1.21~),
|
|
9 |
python3-acme-abi-2 (>= 2.1~),
|
|
10 |
python3-certbot-abi-2 (>= 2.1~),
|
11 | 11 |
python3-dnspython,
|
12 | 12 |
python3-mock,
|
13 | 13 |
python3-pytest,
|
14 | |
python3-setuptools (>= 1.0),
|
|
14 |
python3-setuptools,
|
15 | 15 |
python3-sphinx (>= 1.3.1-1~),
|
16 | 16 |
python3-sphinx-rtd-theme,
|
17 | 17 |
python3-zope.interface
|
|
25 | 25 |
Package: python3-certbot-dns-rfc2136
|
26 | 26 |
Architecture: all
|
27 | 27 |
Depends: certbot,
|
28 | |
python3-certbot-abi-1 (>= 1.21),
|
|
28 |
python3-certbot-abi-2 (>= ${Abi-major-minor-version}),
|
29 | 29 |
${misc:Depends},
|
30 | 30 |
${python3:Depends}
|
31 | 31 |
Enhances: certbot
|
0 | 0 |
#!/usr/bin/make -f
|
|
1 |
|
|
2 |
include /usr/share/dpkg/pkg-info.mk
|
1 | 3 |
|
2 | 4 |
export PYBUILD_NAME = certbot-dns-rfc2136
|
3 | 5 |
|
|
15 | 17 |
dh_installdocs --doc-main-package=python3-certbot-dns-rfc2136 \
|
16 | 18 |
-p python-certbot-dns-rfc2136-doc
|
17 | 19 |
dh_installdocs -p python3-certbot-dns-rfc2136
|
|
20 |
|
|
21 |
override_dh_gencontrol:
|
|
22 |
echo "Abi-major-version=${DEB_VERSION_UPSTREAM}" | cut -d. -f1 >> debian/abi.substvars
|
|
23 |
echo "Abi-major-minor-version=${DEB_VERSION_UPSTREAM}" | cut -d. -f1,2 >> debian/abi.substvars
|
|
24 |
dh_gencontrol -- -Tdebian/abi.substvars
|