Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package xml-commons-apis-bootstrap for
openSUSE:Factory checked in at 2024-09-25 21:52:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xml-commons-apis-bootstrap (Old)
and /work/SRC/openSUSE:Factory/.xml-commons-apis-bootstrap.new.29891 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xml-commons-apis-bootstrap"
Wed Sep 25 21:52:36 2024 rev:32 rq:1202892 version:1.4.01
Changes:
--------
---
/work/SRC/openSUSE:Factory/xml-commons-apis-bootstrap/xml-commons-apis-bootstrap.changes
2024-02-23 16:40:29.920830325 +0100
+++
/work/SRC/openSUSE:Factory/.xml-commons-apis-bootstrap.new.29891/xml-commons-apis-bootstrap.changes
2024-09-25 21:52:42.434824289 +0200
@@ -1,0 +2,5 @@
+Tue Sep 24 10:20:55 UTC 2024 - Fridrich Strba <[email protected]>
+
+- Use SOURCE_DATE_EPOCH for reproducible builds
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ xml-commons-apis-bootstrap.spec ++++++
--- /var/tmp/diff_new_pack.PXIwnj/_old 2024-09-25 21:52:43.274859229 +0200
+++ /var/tmp/diff_new_pack.PXIwnj/_new 2024-09-25 21:52:43.274859229 +0200
@@ -124,8 +124,13 @@
# PARAM#1: name of jar archive (without .jar suffix)
# uses $TARGET_DIR to move created jar to
function mkJar() {
- find -name "version.txt" -or -name "*.class" -or -name "*.properties" -or
-name "*.rsc" |\
- xargs jar cfm ${1}.jar manifest.* ;
+ jar \
+%if %{?pkg_vcmp:%pkg_vcmp java-devel >= 17}%{!?pkg_vcmp:0}
+ --date="$(date -u -d @${SOURCE_DATE_EPOCH:-$(date +%%s)}
+%%Y-%%m-%%dT%%H:%%M:%%SZ)" \
+%endif
+ --create --file=${1}.jar \
+ `find -name "version.txt" -or -name "*.class" -or -name "*.properties"
-or -name "*.rsc" |\
+ xargs` ;
mv ${1}.jar $TARGET_DIR
}
#<<<