Compare commits

1 Commits
main ... 1.1

2 changed files with 2 additions and 12 deletions

View File

@@ -1,8 +1,3 @@
-------------------------------------------------------------------
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>

View File

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