Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package dvgt for openSUSE:Factory checked in at 2026-08-28 19:57:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/dvgt (Old) and /work/SRC/openSUSE:Factory/.dvgt.new.1265 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "dvgt" Fri Aug 28 19:57:02 2026 rev:23 rq:1374399 version:3.51L3 Changes: -------- --- /work/SRC/openSUSE:Factory/dvgt/dvgt.changes 2025-06-17 18:21:11.859750007 +0200 +++ /work/SRC/openSUSE:Factory/.dvgt.new.1265/dvgt.changes 2026-08-28 19:59:34.487549007 +0200 @@ -1,0 +2,5 @@ +Fri Aug 28 13:15:20 UTC 2026 - Bernhard Wiedemann <[email protected]> + +- Add reproducible.patch to override build date in docs (boo#1047218) + +------------------------------------------------------------------- New: ---- reproducible.patch ----------(New B)---------- New: - Add reproducible.patch to override build date in docs (boo#1047218) ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ dvgt.spec ++++++ --- /var/tmp/diff_new_pack.GvzfaJ/_old 2026-08-28 19:59:35.754593305 +0200 +++ /var/tmp/diff_new_pack.GvzfaJ/_new 2026-08-28 19:59:35.763593620 +0200 @@ -24,6 +24,7 @@ Group: Productivity/Publishing/TeX/Utilities Source: dvgt-3.51L3.tar.bz2 Patch0: dvgt-3.51L3.dif +Patch1: reproducible.patch BuildRequires: texlive-bin-devel BuildRequires: texlive-devel BuildRequires: texlive-latex ++++++ reproducible.patch ++++++ Make the installed DVI documents reproducible. TeX stores the current date and time in the DVI preamble comment ("TeX output YYYY.MM.DD:HHMM"), so sysguide.dvi and userguide.dvi differ between two builds of the same source. Unlike pdftex, plain web2c tex does not honour SOURCE_DATE_EPOCH, but it offers -output-comment to replace that comment with a fixed string. --- doc/Makefile +++ doc/Makefile @@ -1,7 +1,11 @@ # Makefile for DVItoVDU documents. 18:56 Tue 11 May 1993. Geoffrey Tobin. +# -output-comment replaces the build date that TeX otherwise stores in the +# DVI preamble comment, so that the generated documents are reproducible. +TEX = tex -output-comment='DVItoVDU documentation' + .tex.dvi: - tex $< + $(TEX) $< dvi: guidemacs.tex example.dvi sysguide.dvi tripvdu.dvi userguide.dvi @@ -9,16 +13,16 @@ # Sun/OS make has no trouble. example.dvi: example.tex - tex example + $(TEX) example sysguide.dvi: guidemacs.tex sysguide.tex - tex sysguide + $(TEX) sysguide tripvdu.dvi: tripvdu.tex - tex tripvdu + $(TEX) tripvdu userguide.dvi: guidemacs.tex userguide.tex - tex userguide + $(TEX) userguide clean: rm *.dvi *.log
