-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
There's nothing wrong with them and they include a build-date which will make the binary packages non-reproducible if they are regenerated when the packages are built. * d/clean: remove man-pages * d/control: remove man-page build-deps * d/patches: add upstream patch to prevent removal of man-pages by `make clean` Signed-off-by: Jeremy Sowden <[email protected]>
- Loading branch information
Showing
4 changed files
with
27 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
doc/*.3 | ||
doc/*.5 | ||
doc/*.8 | ||
py/nftables.egg-info/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,12 +4,10 @@ Priority: important | |
Maintainer: Debian Netfilter Packaging Team <[email protected]> | ||
Uploaders: Arturo Borrero Gonzalez <[email protected]>, | ||
Jeremy Sowden <[email protected]> | ||
Build-Depends: asciidoc-base, | ||
automake, | ||
Build-Depends: automake, | ||
bison, | ||
debhelper-compat (= 13), | ||
dh-python, | ||
docbook-xsl, | ||
flex, | ||
libeditreadline-dev, | ||
libgmp-dev, | ||
|
25 changes: 25 additions & 0 deletions
25
debian/patches/0005-doc-move-man-pages-to-MAINTAINERCLEANFILES.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Description: doc: move man-pages to `MAINTAINERCLEANFILES` | ||
. | ||
Since the man-pages are built and included in the distribution | ||
tar-balls, the appropriate clean target is `maintainer-clean`. | ||
From: Jeremy Sowden <[email protected]> | ||
Last-Update: 2023-08-10 | ||
Origin: upstream, http://git.netfilter.org/nftables/commit/?id=520a8ba89d118c14de9376e6e21160e71d74fbe0 | ||
--- | ||
doc/Makefile.am | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/doc/Makefile.am b/doc/Makefile.am | ||
index 5a64e39b48cf..b43cb08d2d14 100644 | ||
--- a/doc/Makefile.am | ||
+++ b/doc/Makefile.am | ||
@@ -26,5 +26,5 @@ nft.8: ${ASCIIDOCS} | ||
.adoc.5: | ||
${AM_V_GEN}${A2X} ${A2X_OPTS_MANPAGE} $< | ||
|
||
-CLEANFILES += ${man_MANS} | ||
+MAINTAINERCLEANFILES = ${man_MANS} | ||
endif | ||
-- | ||
2.40.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters