Hello community,
here is the log from the commit of package xml-commons-apis-bootstrap for
openSUSE:Factory checked in at 2019-02-06 15:47:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xml-commons-apis-bootstrap (Old)
and /work/SRC/openSUSE:Factory/.xml-commons-apis-bootstrap.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xml-commons-apis-bootstrap"
Wed Feb 6 15:47:13 2019 rev:29 rq:671839 version:1.4.01
Changes:
--------
---
/work/SRC/openSUSE:Factory/xml-commons-apis-bootstrap/xml-commons-apis-bootstrap.changes
2018-12-14 20:44:37.273738484 +0100
+++
/work/SRC/openSUSE:Factory/.xml-commons-apis-bootstrap.new.28833/xml-commons-apis-bootstrap.changes
2019-02-06 15:47:14.623265512 +0100
@@ -1,0 +2,6 @@
+Fri Feb 1 12:14:36 UTC 2019 - Fridrich Strba <[email protected]>
+
+- Speed-up build by compiling all *.java files in one javac
+ invocation
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ xml-commons-apis-bootstrap.spec ++++++
--- /var/tmp/diff_new_pack.M53LKg/_old 2019-02-06 15:47:15.175265177 +0100
+++ /var/tmp/diff_new_pack.M53LKg/_new 2019-02-06 15:47:15.179265175 +0100
@@ -2,7 +2,7 @@
#
# spec file for package xml-commons-apis-bootstrap
#
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -85,10 +85,7 @@
function delBinaryFiles() {
set +x
echo deleting binary files ...
- for file in `find . -name "*.class" -o -name "*.jar" -o -name
"*DELETED-BY-PACKAGER*"`
- do
- rm -rf $file
- done
+ find . -name "*.class" -o -name "*.jar" -o -name "*DELETED-BY-PACKAGER*"
-delete
set -x
}
#<<<
@@ -111,11 +108,8 @@
# uses LIB_GCJ for CLASSPATH
function compileFiles() {
COMPILE_CLASSPATH_PATH=.:${JAR_CLASSPATH}
- echo using: $COMPILER_COMMAND $COMPILE_CLASSPATH_PATH \$file
- for file in `find . -name "*.java"`
- do
- echo -e "$COMPILER_COMMAND $COMPILE_CLASSPATH_PATH $file ... \c"
- $COMPILER_COMMAND $COMPILE_CLASSPATH_PATH $file
+ echo -e "$COMPILER_COMMAND $COMPILE_CLASSPATH_PATH $(find . -name "*.java" |
xargs)"
+ $COMPILER_COMMAND $COMPILE_CLASSPATH_PATH $(find . -name "*.java" | xargs)
# check for errors
if [ $? != 0 ]
then
@@ -123,7 +117,6 @@
exit 1;
fi
echo done
- done
}
#<<<