Sync from SUSE:SLFO:Main xml-commons-apis-bootstrap revision eb0b48aad6a02ea675cc25739295f49a

This commit is contained in:
Adrian Schröter 2025-02-20 11:27:51 +01:00
parent 9b6ac34a6f
commit 9e29138860
2 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Sep 24 10:20:55 UTC 2024 - Fridrich Strba <fstrba@suse.com>
- Use SOURCE_DATE_EPOCH for reproducible builds
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Feb 21 16:14:29 UTC 2024 - Fridrich Strba <fstrba@suse.com> Wed Feb 21 16:14:29 UTC 2024 - Fridrich Strba <fstrba@suse.com>

View File

@ -124,8 +124,13 @@ function compileFiles() {
# PARAM#1: name of jar archive (without .jar suffix) # PARAM#1: name of jar archive (without .jar suffix)
# uses $TARGET_DIR to move created jar to # uses $TARGET_DIR to move created jar to
function mkJar() { function mkJar() {
find -name "version.txt" -or -name "*.class" -or -name "*.properties" -or -name "*.rsc" |\ jar \
xargs jar cfm ${1}.jar manifest.* ; %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 mv ${1}.jar $TARGET_DIR
} }
#<<< #<<<