Source: vtk9 Severity: normal Tags: patch User: [email protected] Usertags: timestamps X-Debbugs-Cc: [email protected]
The build log files /usr/share/doc/vtk9/doxygen/html/_formulas.log.gz and ./usr/share/doc/vtk9/html/_formulas.log.gz contain timestamps: https://tests.reproducible-builds.org/debian/rb-pkg/bullseye/amd64/diffoscope-results/vtk9.html 1 This·is·pdfTeX,·Version·3.14159265-2.6-1.40.21·(TeX·Live·2020/Debian)·(preloaded·format=latex·2020.12.12)··13·DEC·2020·01:06 1 This·is·pdfTeX,·Version·3.14159265-2.6-1.40.21·(TeX·Live·2020/Debian)·(preloaded·format=latex·2022.1.16)··16·JAN·2022·11:20 Since these log files appear to be artifacts leftover from the generation of the documentation, the attached patch removes these files from debian/rules before building the package. Thanks for maintaining vtk9! live well, vagrant
From 057b9bcf680514cfdf1db62874c06389891ac5e4 Mon Sep 17 00:00:00 2001 From: Vagrant Cascadian <[email protected]> Date: Mon, 14 Dec 2020 00:20:07 +0000 Subject: [PATCH 1/2] debian/rules: Remove _formulas.log from dh_install override. These log files appear to be leftover artifacts from generating the documentation, and contain build timestamps and other non-deterministic information. --- debian/rules | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debian/rules b/debian/rules index 28d8f8e..69fbe14 100755 --- a/debian/rules +++ b/debian/rules @@ -81,3 +81,5 @@ override_dh_install: find $(CURDIR)/debian/libvtk9-dev/ -name "libvtkRenderingPythonTkWidgets.so" -exec rm {} \; || true find $(CURDIR)/debian/libvtk9/ -name "*Qt*" -exec rm {} \; || true find $(CURDIR)/debian/libvtk9-dev/usr/include/ -name "Q*" -exec rm {} \; || true + find $(CURDIR)/debian/tmp/usr/share/doc/vtk-9.0/doxygen -name "_formulas.log" -exec rm {} \; || true + find $(CURDIR)/debian/build/Utilities/Doxygen/doc/html -name "_formulas.log" -exec rm {} \; || true -- 2.29.2
signature.asc
Description: PGP signature

