Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package xemacs for openSUSE:Factory checked 
in at 2023-12-28 23:01:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xemacs (Old)
 and      /work/SRC/openSUSE:Factory/.xemacs.new.28375 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xemacs"

Thu Dec 28 23:01:00 2023 rev:96 rq:1135225 version:21.5.34

Changes:
--------
--- /work/SRC/openSUSE:Factory/xemacs/xemacs.changes    2023-01-16 
18:01:58.935852911 +0100
+++ /work/SRC/openSUSE:Factory/.xemacs.new.28375/xemacs.changes 2023-12-28 
23:02:36.612957245 +0100
@@ -1,0 +2,6 @@
+Wed Dec 27 03:37:32 UTC 2023 - Bernhard Wiedemann <bwiedem...@suse.de>
+
+- Add reproducible.patch to make ,elc files deterministic
+  (boo#1084909, boo#1047218)
+
+-------------------------------------------------------------------

New:
----
  reproducible.patch

BETA DEBUG BEGIN:
  New:
- Add reproducible.patch to make ,elc files deterministic
  (boo#1084909, boo#1047218)
BETA DEBUG END:

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ xemacs.spec ++++++
--- /var/tmp/diff_new_pack.CWhgND/_old  2023-12-28 23:02:37.588992917 +0100
+++ /var/tmp/diff_new_pack.CWhgND/_new  2023-12-28 23:02:37.592993063 +0100
@@ -114,6 +114,8 @@
 # PATCH-FIX-SUSE sys_siglist is deprecated
 Patch63:        xemacs-21.5.34-strsignal.patch
 Patch64:        xemacs-21.5.34-fix2038.patch
+# PATCH-FIX-SUSE drop hostname+timestamp from .elc
+Patch65:        reproducible.patch
 Requires(pre):  permissions
 Requires:       ctags
 Requires:       efont-unicode
@@ -229,6 +231,7 @@
 %endif
 %endif
 %patch64 -p1
+%patch65 -p1
 
 %build
   cflags ()

++++++ reproducible.patch ++++++
Date: 2017-08-16
Author: Bernhard M. Wiedemann <bwiedemann suse de>

drop timestamp and build host name from .elc files

Index: xemacs-21.5.34/lisp/bytecomp.el
===================================================================
--- xemacs-21.5.34.orig/lisp/bytecomp.el
+++ xemacs-21.5.34/lisp/bytecomp.el
@@ -2156,11 +2156,8 @@ docstrings code.")
                finally return res)))
     (setq comments 
          (with-string-as-buffer-contents ""
-           (insert "\n;;; compiled by "
-                   (or (and (boundp 'user-mail-address) user-mail-address)
-                       (concat (user-login-name) "@" (system-name)))
-                   " on "
-                   (current-time-string) "\n;;; from file " filename "\n")
+           (insert "\n;;; compiled"
+                   "\n;;; from file " filename "\n")
            (insert ";;; emacs version " emacs-version ".\n")
            (insert ";;; bytecomp version " byte-compile-version "\n;;; "
                    (cond

Reply via email to