Sync from SUSE:SLFO:Main xml-commons-apis-bootstrap revision eb0b48aad6a02ea675cc25739295f49a
This commit is contained in:
parent
9b6ac34a6f
commit
9e29138860
@ -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>
|
||||
|
||||
|
@ -124,8 +124,13 @@ function compileFiles() {
|
||||
# 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
|
||||
}
|
||||
#<<<
|
||||
|
Loading…
x
Reference in New Issue
Block a user