From 8b99d13003228bd04ba418fc1dc7a18c90a59ffb Mon Sep 17 00:00:00 2001 From: Silver Platter Date: Sun, 11 Jul 2021 15:59:07 +0000 Subject: [PATCH 1/4] Upgrade to newer source format 3.0 (quilt). Changes-By: lintian-brush Fixes: lintian: older-source-format See-also: https://lintian.debian.org/tags/older-source-format.html --- debian/source/format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/source/format b/debian/source/format index d3827e7..163aaf8 100644 --- a/debian/source/format +++ b/debian/source/format @@ -1 +1 @@ -1.0 +3.0 (quilt) -- GitLab From 04b13bcc2b254f11d0d69b14491c6b913436986f Mon Sep 17 00:00:00 2001 From: Silver Platter Date: Sun, 11 Jul 2021 15:59:07 +0000 Subject: [PATCH 2/4] Bump debhelper from deprecated 9 to 12. Changes-By: lintian-brush Fixes: lintian: package-uses-deprecated-debhelper-compat-version See-also: https://lintian.debian.org/tags/package-uses-deprecated-debhelper-compat-version.html --- debian/compat | 2 +- debian/control | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/compat b/debian/compat index ec63514..48082f7 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -9 +12 diff --git a/debian/control b/debian/control index 30a10bf..a90b0a0 100644 --- a/debian/control +++ b/debian/control @@ -1,7 +1,7 @@ Source: suexec-sandbox Priority: optional Maintainer: A/I -Build-Depends: debhelper (>= 9), dh-autoreconf, libseccomp-dev, libcap-dev +Build-Depends: debhelper (>= 12~), dh-autoreconf, libseccomp-dev, libcap-dev Standards-Version: 3.9.8 Package: suexec-sandbox -- GitLab From e231547e2b49f5e38ac2ddb9c698265240658f2c Mon Sep 17 00:00:00 2001 From: Silver Platter Date: Sun, 11 Jul 2021 15:59:07 +0000 Subject: [PATCH 3/4] Set debhelper-compat version in Build-Depends. Changes-By: lintian-brush Fixes: lintian: uses-debhelper-compat-file See-also: https://lintian.debian.org/tags/uses-debhelper-compat-file.html --- debian/compat | 1 - debian/control | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) delete mode 100644 debian/compat diff --git a/debian/compat b/debian/compat deleted file mode 100644 index 48082f7..0000000 --- a/debian/compat +++ /dev/null @@ -1 +0,0 @@ -12 diff --git a/debian/control b/debian/control index a90b0a0..4c86411 100644 --- a/debian/control +++ b/debian/control @@ -1,7 +1,7 @@ Source: suexec-sandbox Priority: optional Maintainer: A/I -Build-Depends: debhelper (>= 12~), dh-autoreconf, libseccomp-dev, libcap-dev +Build-Depends: debhelper-compat (= 12), dh-autoreconf, libseccomp-dev, libcap-dev Standards-Version: 3.9.8 Package: suexec-sandbox -- GitLab From b43b65e7ed10aaaedf9dcaff54ad9bc8eaff74f1 Mon Sep 17 00:00:00 2001 From: Silver Platter Date: Sun, 11 Jul 2021 15:59:08 +0000 Subject: [PATCH 4/4] Drop unnecessary dependency on dh-autoreconf. Changes-By: lintian-brush Fixes: lintian: useless-autoreconf-build-depends See-also: https://lintian.debian.org/tags/useless-autoreconf-build-depends.html --- debian/control | 2 +- debian/rules | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/control b/debian/control index 4c86411..e0f9966 100644 --- a/debian/control +++ b/debian/control @@ -1,7 +1,7 @@ Source: suexec-sandbox Priority: optional Maintainer: A/I -Build-Depends: debhelper-compat (= 12), dh-autoreconf, libseccomp-dev, libcap-dev +Build-Depends: debhelper-compat (= 12), libseccomp-dev, libcap-dev Standards-Version: 3.9.8 Package: suexec-sandbox diff --git a/debian/rules b/debian/rules index 60cc5dd..ed58acc 100755 --- a/debian/rules +++ b/debian/rules @@ -2,4 +2,4 @@ #export DH_VERBOSE = 1 %: - dh $@ --with autoreconf + dh $@ -- GitLab