Your message dated Fri, 15 Sep 2017 08:49:14 +0000
with message-id <e1dsmjg-0002jg...@fasolo.debian.org>
and subject line Bug#875568: fixed in arj 3.10.22-16
has caused the Debian Bug report #875568,
regarding arj: please do not embed the build date
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
875568: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=875568
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: arj
Version: 3.10.22-15
Tags: patch upstream
User: helm...@debian.org
Usertags: rebootstrap

Hi Guillem,

here is the promised patch for removing the build date. Please consider
whether it can be applied or whether we need to resort to
BUILD_DATE_EPOCH.

Helmut
Subject: remove the build date
From: Helmut Grohne <hel...@subdivi.de>

Presenting the date of the build is of very limited value. It has significant
downsides though:
 * Embedding the date makes the build unreproducible. An alternative to
   removing it would be using SOURCE_DATE_EPOCH.
 * The way of computing it involves running the today utility which is compiled
   with the host architecture compiler and thus breaks cross compilation.

Thus this patch opts for removing the dubious feature.

Index: arj-3.10.22/arj.c
===================================================================
--- arj-3.10.22.orig/arj.c
+++ arj-3.10.22/arj.c
@@ -832,7 +832,7 @@
  if((tmp_stdout=new_stdout)==new_stderr&&!is_registered)
   new_stdout=stderr;
  msg_strcpy(strcpy_buf, M_VERSION);
- msg_cprintf(0, M_ARJ_BANNER, M_ARJ_BINDING, strcpy_buf, build_date);
+ msg_cprintf(0, M_ARJ_BANNER, M_ARJ_BINDING, strcpy_buf);
  if(!is_registered&&!msg_strcmp((FMSG *)(regdata+REG_KEY2_SHIFT), M_REG_TYPE))
   msg_cprintf(0, M_REGISTERED_TO, regdata+REG_NAME_SHIFT);
  else
Index: arj-3.10.22/arj.h
===================================================================
--- arj-3.10.22.orig/arj.h
+++ arj-3.10.22/arj.h
@@ -12,7 +12,6 @@
 #include "bindings.h"
 #include "environ.h"
 #include "defines.h"
-#include "date_sig.h"
 #include "arjtypes.h"
 
 #if SFX_LEVEL!=ARJSFXJR
Index: arj-3.10.22/arjsfx.c
===================================================================
--- arj-3.10.22.orig/arjsfx.c
+++ arj-3.10.22/arjsfx.c
@@ -244,7 +244,7 @@
   for(nptr=tptr=archive_name; *tptr!='\0'; tptr++)
    if(strchr(path_separators, *tptr)!=NULL)
     nptr=tptr+1;
-  msg_cprintf(0, M_ARJSFX_BANNER, M_VERSION, nptr, build_date);
+  msg_cprintf(0, M_ARJSFX_BANNER, M_VERSION, nptr);
   msg_cprintf(0, lf);
   logo_shown=1;
  }
Index: arj-3.10.22/gnu/makefile.in
===================================================================
--- arj-3.10.22.orig/gnu/makefile.in
+++ arj-3.10.22/gnu/makefile.in
@@ -164,13 +164,13 @@
 # Main dependency tree
 #
 
-.PHONY: timestamp msg-headers depends prepare clean package help
+.PHONY: msg-headers depends prepare clean package help
 
 ifdef COMMERCIAL
 MAKE_KEY=$(TOOLS_DIR)/make_key$x
 endif
 
-all:	prepare timestamp
+all:	prepare
 	$(MAKE) msg-headers
 	$(MAKE) depends
 	$(MAKE) do-all
@@ -206,22 +206,12 @@
 depends: $(DEPS)
 
 #
-# Update timestamp file
-#
-
-timestamp: $(TOOLS_DIR)/today$x
-	$(TOOLS_DIR)/today$x $(LOCALE) $(BASEDIR)
-
-#
 # The tools
 #
 
 MSGBIND_OBJS = $(patsubst %,$(TOOLS_DIR)/%, \
                filemode.o msgbind.o arjdata.o crc32.o)
 
-TODAY_OBJS = $(patsubst %,$(TOOLS_DIR)/%, \
-             filemode.o today.o)
-
 MAKE_KEY_OBJS = $(patsubst %,$(TOOLS_DIR)/%, \
                 make_key.o crc32.o misc.o arj_proc.o arjsec_h.o arjsec_l.o)
 
@@ -237,9 +227,6 @@
 $(TOOLS_DIR)/msgbind$x: $(MSGBIND_OBJS)
 	$(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(MSGBIND_OBJS) $(LIBS)
 
-$(TOOLS_DIR)/today$x: $(TODAY_OBJS)
-	$(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(TODAY_OBJS) $(LIBS)
-
 $(TOOLS_DIR)/make_key$x: $(MAKE_KEY_OBJS)
 	$(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(MAKE_KEY_OBJS) $(LIBS)
 
@@ -252,10 +239,6 @@
 $(TOOLS_DIR)/packager$x: $(PACKAGER_OBJS)
 	$(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(PACKAGER_OBJS) $(LIBS)
 
-# This rule tells that timestamping badly needs date_sig.c (it may bail out
-# otherwise when the timestamps are being created for the first time)
-$(BASEDIR)/date_sig.c: timestamp
-
 # And this one explicitly specifies that chk_fmsg depends on individual files
 $(ARJ_DIR)/chk_fmsg.o: $(SRC_DIR)/chk_fmsg.c $(BASEDIR)/fmsg_arj.c
 $(ARJSFX_DIR)/chk_fmsg.o: $(SRC_DIR)/chk_fmsg.c $(BASEDIR)/fmsg_sfx.c
@@ -300,7 +283,7 @@
 #
 
 ARJSFXV_OBJS = $(patsubst %,$(ARJSFXV_DIR)/%, \
-	       sfx_id.o filemode.o date_sig.o fmsg_sfv.o imsg_sfv.o nmsg_sfv.o \
+	       sfx_id.o filemode.o fmsg_sfv.o imsg_sfv.o nmsg_sfv.o \
 	       decode.o arjsfx.o fardata.o arj_user.o arj_arcv.o arj_file.o \
 	       crc32.o misc.o debug.o arj_proc.o environ.o ea_mgr.o ntstream.o \
 	       uxspec.o ext_hdr.o arjtypes.o exe_sear.o chk_fmsg.o filelist.o \
@@ -356,7 +339,7 @@
 #
 
 ARJ_OBJS = $(patsubst %,$(ARJ_DIR)/%, \
-	   filemode.o date_sig.o fmsg_arj.o imsg_arj.o \
+	   filemode.o fmsg_arj.o imsg_arj.o \
 	   nmsg_arj.o integr.o file_reg.o decode.o encode.o \
 	   arj.o enc_gwy.o fardata.o arj_user.o arj_arcv.o \
 	   arj_file.o crc32.o misc.o debug.o arj_proc.o \
@@ -393,7 +376,7 @@
 #
 
 REARJ_OBJS = $(patsubst %,$(REARJ_DIR)/%, \
-	     integr.o filemode.o date_sig.o fmsg_rej.o nmsg_rej.o file_reg.o \
+	     integr.o filemode.o fmsg_rej.o nmsg_rej.o file_reg.o \
 	     rearj.o fardata.o arj_file.o crc32.o misc.o debug.o arj_proc.o \
 	     environ.o arjtypes.o filelist.o scrnio.o arjsec_h.o arjsec_l.o \
              externs.o)
Index: arj-3.10.22/rearj.c
===================================================================
--- arj-3.10.22.orig/rearj.c
+++ arj-3.10.22/rearj.c
@@ -1294,7 +1294,7 @@
 #ifdef COLOR_OUTPUT
  no_colors=redirected=!is_tty(stdout);
 #endif
- msg_cprintf(0, M_REARJ_BANNER, build_date);
+ msg_cprintf(0, M_REARJ_BANNER);
  #ifdef USE_TZSET
   tzset();
  #endif
Index: arj-3.10.22/resource/resource.txt
===================================================================
--- arj-3.10.22.orig/resource/resource.txt
+++ arj-3.10.22/resource/resource.txt
@@ -294,7 +294,7 @@
 {FARMSGS}  {M_REPLIES_HELP}         {MSG_ARJ, MSG_SFV, MSG_SFX}          {*}                     {}  {en, fr, de, ru}     {F} {"Yes, No, or Quit? ", "Oui, Non, ou Quitte ? ", "Ja, Nein, oder Abbruch? ", "Y=¤ , N=­¥â, Q=¢ë室: "}
 {FARMSGS}  {M_ALL_REPLIES_HELP}     {MSG_ARJ, MSG_SFV}                   {*}                     {}  {en, fr, de, ru}     {F} {"Yes, No, Quit, Always, Skip, Global, Command? ", "Oui, Non, Quitte, Toujours, Passe, Global, Commande ? ", "Ja, Nein, Abbruch, Immer, šberspringen, Global, Kommando? ", "Y=¤ ,\nN=­¥â,\nQ=¢ë室,\nA=\"¤ \" ­  ¢á¥ ¯®á«¥¤ãî騥 § ¯à®áë,\nS=\"­¥â\" ­  ¢á¥ ¯®á«¥¤ãî騥 § ¯à®áë,\nG=\"¤ \" ­  ¢á¥ ¯®á«¥¤ãî騥 § ¯à®áë «î¡®£® ⨯ \nC=¢ë¯®«­¥­¨¥ ¢­¥è­¥© ª®¬ ­¤ë\n? "}
 {FARMSGS}  {M_REPLIES}              {MSG_ARJ, MSG_SFV}                   {*}                     {}  {en, fr, de, ru}     {F} {"YNQASGC", "ONQTPGC", "JNAIGK", "YNQASGC"}
-{FARMSGS}  {M_ARJ_BANNER}           {MSG_ARJ}                            {*}                     {}  {en, FR, de, ru}     {F} {"@PRODUCT v %s%s, Copyright (c) 1998-2004, ARJ Software Russia. %s\n", "", "@PRODUCT v %s%s, Copyright (c) 1998-2004, ARJ Software Russia. %s\n", "@PRODUCT %s%s. €¢â®à᪨¥ ¯à ¢  ARJ Software Russia. %s\n"}
+{FARMSGS}  {M_ARJ_BANNER}           {MSG_ARJ}                            {*}                     {}  {en, FR, de, ru}     {F} {"@PRODUCT v %s%s, Copyright (c) 1998-2004, ARJ Software Russia.\n", "", "@PRODUCT v %s%s, Copyright (c) 1998-2004, ARJ Software Russia.\n", "@PRODUCT %s%s. €¢â®à᪨¥ ¯à ¢  ARJ Software Russia.\n"}
 
 /*
  * OS-specific messages
@@ -474,7 +474,7 @@
  */
 
 {FARMSGS}  {M_WRONG_ENC_VERSION}    {MSG_SFV}                            {*}                     {}  {en, FR, de, ru}     {F} {"Wrong encryption version", "", "Falsche Verschlsselungsversion", "¥¯®¤¤¥à¦¨¢ ¥¬ë©  «£®à¨â¬ è¨ä஢ ­¨ï"}
-{FARMSGS}  {M_ARJSFX_BANNER}        {MSG_SFV}                            {*}                     {}  {en, FR, de, ru}     {F} {"ARJSFXV %s - ARJ Archive Self-Extractor. %s -? for help.\nCopyright 1999-2004, ARJ Software Russia. All Rights Reserved. %s\n", "", "ARJSFXV %s - ARJ Archiv Selbst-Entpacker. %s -? for help.\nCopyright 1999-2004, ARJ Software Russia. Alle Rechte vorbehalten. %s\n", "‘ ¬®à á¯ ª®¢ë¢ î騩áï  à娢 ARJSFXV %s. „«ï á¯à ¢ª¨ ­ ¡¥à¨â¥ %s -?\n(C) 1998-2004, ARJ Software Russia. %s\n"}
+{FARMSGS}  {M_ARJSFX_BANNER}        {MSG_SFV}                            {*}                     {}  {en, FR, de, ru}     {F} {"ARJSFXV %s - ARJ Archive Self-Extractor. %s -? for help.\nCopyright 1999-2004, ARJ Software Russia. All Rights Reserved.\n", "", "ARJSFXV %s - ARJ Archiv Selbst-Entpacker. %s -? for help.\nCopyright 1999-2004, ARJ Software Russia. Alle Rechte vorbehalten.\n", "‘ ¬®à á¯ ª®¢ë¢ î騩áï  à娢 ARJSFXV %s. „«ï á¯à ¢ª¨ ­ ¡¥à¨â¥ %s -?\n(C) 1998-2004, ARJ Software Russia.\n"}
 {FARMSGS}  {M_SW_TABLE}             {MSG_SFV}                            {*}                     {}  {*}                  {F} {"ABCDEFGHIJKLMNOPRSTUVWXYZ?#&*$@!_"}
 {FARMSGS}  {M_SW_PARAMS}            {MSG_SFV}                            {*}                     {}  {*}                  {F} {"100000002000000010000000000010000"}
 {FARMSGS}  {M_JYSW_TABLE}           {MSG_SFV}                            {*}                     {}  {*}                  {F} {"ACKMNORV"}
@@ -585,7 +585,7 @@
 {FARMSGS}  {M_NO_INTEGRITY_PATTERN} {MSG_REJ}                            {*}                     {}  {en, FR, de, ru}     {F} {"Program integrity is questionable!\n", "", "Programmintegrit„t in fragwrdig!\n", "” ©« ¯à®£à ¬¬ë ᦠ⠫¨¡® ¯®¢à¥¦¤¥­\n"}
 {FARMSGS}  {M_INTEGRITY_VIOLATED}   {MSG_REJ}                            {*}                     {}  {en, FR, de, ru}     {F} {"Program integrity is questionable!!\n", "", "Programmintegrit„t in fragwrdig!!\n", "–¥«®áâ­®áâì ¯à®£à ¬¬ë ¯®¤ ¢®¯à®á®¬!\n"}
 {FARMSGS}  {M_INTEGRITY_OK}         {MSG_REJ}                            {*}                     {}  {en, FR, de, ru}     {F} {"Program passes integrity check.\n", "", "Programm besteht Integrit„tsprfung.\n", "à®£à ¬¬  ãᯥ譮 ¯à®è«  ¯à®¢¥àªã ­  楫®áâ­®áâì.\n"}
-{FARMSGS}  {M_REARJ_BANNER}         {MSG_REJ}                            {*}                     {}  {en, FR, de, ru}     {F} {"REARJ 2.43.02, Copyright (c) 1999-2004, ARJ Software Russia. %s\n", "", "REARJ 2.43.02, Copyright (c) 1999-2004, ARJ Software Russia. %s\n", "REARJ 2.43.02, (c) 1999-2004, ARJ Software Russia. %s\n"}
+{FARMSGS}  {M_REARJ_BANNER}         {MSG_REJ}                            {*}                     {}  {en, FR, de, ru}     {F} {"REARJ 2.43.02, Copyright (c) 1999-2004, ARJ Software Russia.\n", "", "REARJ 2.43.02, Copyright (c) 1999-2004, ARJ Software Russia.\n", "REARJ 2.43.02, (c) 1999-2004, ARJ Software Russia.\n"}
 {FARMSGS}  {M_REARJ_COMMANDS}       {MSG_REJ}                            {*}                     {}  {en, FR, de, ru}     {F} {@hrej_en.txt, "", @hrej_de.txt, @hrej_ru.txt}
 {FARMSGS}  {M_REARJ_RCODES}         {MSG_REJ}                            {*}                     {}  {en, FR, de, ru}     {F} {@hrejc_en.txt, "", @hrejc_de.txt, @hrejc_ru.txt}
 {FARMSGS}  {M_CANTREAD}             {MSG_REJ}                            {*}                     {}  {en, FR, de, ru}     {F} {"End of file on input", "", "Eingabedatei zu Ende", "à¥¦¤¥¢à¥¬¥­­ë© ª®­¥æ ä ©«  ¯à¨ ç⥭¨¨"}

--- End Message ---
--- Begin Message ---
Source: arj
Source-Version: 3.10.22-16

We believe that the bug you reported is fixed in the latest version of
arj, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 875...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Guillem Jover <guil...@debian.org> (supplier of updated arj package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Fri, 15 Sep 2017 09:32:49 +0200
Source: arj
Binary: arj
Architecture: source
Version: 3.10.22-16
Distribution: unstable
Urgency: medium
Maintainer: Guillem Jover <guil...@debian.org>
Changed-By: Guillem Jover <guil...@debian.org>
Description:
 arj        - archiver for .arj files
Closes: 875567 875568
Changes:
 arj (3.10.22-16) unstable; urgency=medium
 .
   * Line-wrap dependency fields.
   * Bump Standards-Version to 4.1.0 (no changes needed).
   * Switch to debhelper compatibility level 10.
   * Use the dh_update_autotools_config command instead of updating the
     config.* files manually, and bump the debhelper Build-Depends version
     to the one that can handle ancient config.* files.
   * Move location of GPL-2 in Debian systems into a Comment field in
     debian/copyright.
   * Fix cross building by setting the CC detected in configure in the
     generated makefile. Thanks to Helmut Grohne <hel...@subdivi.de>.
     Closes: #875567
   * Remove the build date from resulting generated binary. This makes
     the package build more deterministic, and fixes cross building by
     not running a build tool compiled for the host.
     Thanks to Helmut Grohne <hel...@subdivi.de>. Closes: #875568
Checksums-Sha1:
 38571db42ea283bd916a7856696afb5115d0a86d 1852 arj_3.10.22-16.dsc
 89272078b368cf37f795247d3beccdf8bec7f2cc 19452 arj_3.10.22-16.debian.tar.xz
 0f3c059e548a8f8c8d7e3d1e83d3d617c8fa196d 5171 arj_3.10.22-16_amd64.buildinfo
Checksums-Sha256:
 21008d54c9b45e96e5ca55d59be380c9db107364390799bd25e99a9f95b17ca8 1852 
arj_3.10.22-16.dsc
 2d9cc5aeb2ac44d000d2e3399846f1c3ce468e17e3af4bfb505b9a6eaf88a502 19452 
arj_3.10.22-16.debian.tar.xz
 7a7721006b500d3d33103c2a9a639fe31979b0cf4cd9e87798e64e985c5610ba 5171 
arj_3.10.22-16_amd64.buildinfo
Files:
 d144f43c6794f9553ccbdcb289059ad1 1852 utils optional arj_3.10.22-16.dsc
 7924c25045af258eb8c57d74ab6fd88c 19452 utils optional 
arj_3.10.22-16.debian.tar.xz
 25279802975cdbe4a2e3c2702c870fcc 5171 utils optional 
arj_3.10.22-16_amd64.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEETz509DYFDBD1aWV0uXK/PqSuV6MFAlm7iKAACgkQuXK/PqSu
V6MYGA//dUdfWE6L+0vUnlGk76ad3ZGFSUKyGyVGhfBoJcd/E2TovgVLsDxCJNzi
3xJhT3D+0CiAf+L4OZNDCq1tkGcNwUVQ8pl5sd4LbzUwxD0CN57mQDI+iOv3gQV8
BJwzS/k4bZOA+Mk9zyocwfXfdlL8oHX+Vth3tq1s8ZFfQ1/dyn7lXiPFkwqXnMNS
UktPYeCRPco9VNlllaCeixR9pPtFnaNsTmH3mguZnSKqIbEn+83ZfA8jgvuedS0r
p6LKDgJD1cQFWR3VQSHU/YddkTXHB9SeDGToVCfFKSe02cLmBWyxQJWrZVjImUXw
y4SVhParVz9onL6hO+qgePDdrfge8JrioloSqYQVmQqXm0UwbUPqfIsD0/rXi83j
lB2lVJy/VxcLT+4WP1O/MBHiY9SPZTlZLVq49CIEzISXkB1emfM9M9Sj4rQOVs60
vJHdYyYIT6EqZZnvKgGFwQGCZqBbkqY77RgN1Iz53iqNeMRTDHm+05Dh3u6D8K3o
qmLVSe/F9aBOjecbfPNmZMQxJG2iHfvFoklq5pRMW4KxzbV+peMruDCOhH/2Oc1R
eeyuf1TVdNYpjMjM3E4A8Ckmr0g96l/h1c/1UEhxhb6b5F7JIF7Y7GJ2vSkpk68+
ep4EqrRJKPUHnbo+20ctV8gu0F1glf+yZAMesCOo86lmaOAZc/Y=
=GhMW
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to