From d84a30bbebecab8f4a03e21c31282d6b1da9544fc1840b52cd7530e2539f6702 Mon Sep 17 00:00:00 2001 From: Fridrich Strba Date: Fri, 4 Jun 2021 05:29:32 +0000 Subject: [PATCH] Accepting request 897253 from home:pmonrealgonzalez:branches:Java:packages - Update to 1.10.10 * SCP (with sftp=true) task would fail if fetching file located in root directory. * Fixed: javac task would fail if the arguments file it (internally) created didn't quote the # character. * Make sure LegacyXmlResultFormatter encodes characters illegal in XML the same way JUnit5's built-in formatter would. * LegacyXmlResultFormatter no longer double-encodes <>& in system-err and system-out. * Fixes a bug in junitlauncher task's legacy-xml formatter, where the testcase representing a @Parameterized JUnit4 test wasn't being reported in the XML. * Fixes a bug where the ant-testutil-sources.jar that gets published to Maven central repository didn't contain any source files. * The condition didn't follow redirects from http to https. * ZipOutputStream now overrides write(int) in order to make sure single byte writes get the same treatment as array writes. * Fixes a potential deadlock in junitlauncher task when using legacy-xml reporter. * javaversion condition now has a new "atmost" attribute. See the javaversion manual for more details * The "listener" nested element of the "junitlauncher" task now has a new "useLegacyReportingName" attribute which can be used to control the test identifiers names that get reported by the listener. See the junitlauncher manual for more details. Note that this change also introduces a new "setUseLegacyReportingName" method on the org.apache.tools.ant.taskdefs.optional.junitlauncher.TestResultFormatter interface. This will break backward compatibility with any of your custom result formatters which implemented this interface and such implementations OBS-URL: https://build.opensuse.org/request/show/897253 OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=163 --- ant-antlr.changes | 49 +++++++++++++++++++++++++++++++ ant-antlr.spec | 6 ++-- ant-junit.changes | 49 +++++++++++++++++++++++++++++++ ant-junit.spec | 6 ++-- ant-junit5.changes | 49 +++++++++++++++++++++++++++++++ ant-junit5.spec | 6 ++-- ant.changes | 49 +++++++++++++++++++++++++++++++ ant.spec | 6 ++-- apache-ant-1.10.10-src.tar.xz | 3 ++ apache-ant-1.10.10-src.tar.xz.asc | 16 ++++++++++ apache-ant-1.10.9-src.tar.xz | 3 -- apache-ant-1.10.9-src.tar.xz.asc | 7 ----- 12 files changed, 231 insertions(+), 18 deletions(-) create mode 100644 apache-ant-1.10.10-src.tar.xz create mode 100644 apache-ant-1.10.10-src.tar.xz.asc delete mode 100644 apache-ant-1.10.9-src.tar.xz delete mode 100644 apache-ant-1.10.9-src.tar.xz.asc diff --git a/ant-antlr.changes b/ant-antlr.changes index 13e69a8..9792d5a 100644 --- a/ant-antlr.changes +++ b/ant-antlr.changes @@ -1,3 +1,52 @@ +------------------------------------------------------------------- +Thu Jun 3 16:17:46 UTC 2021 - Pedro Monreal + +- Update to 1.10.10 + * SCP (with sftp=true) task would fail if fetching file located + in root directory. + * Fixed: javac task would fail if the arguments file it + (internally) created didn't quote the # character. + * Make sure LegacyXmlResultFormatter encodes characters illegal + in XML the same way JUnit5's built-in formatter would. + * LegacyXmlResultFormatter no longer double-encodes <>& in + system-err and system-out. + * Fixes a bug in junitlauncher task's legacy-xml formatter, + where the testcase representing a @Parameterized JUnit4 test + wasn't being reported in the XML. + * Fixes a bug where the ant-testutil-sources.jar that gets + published to Maven central repository didn't contain any + source files. + * The condition didn't follow redirects from http to https. + * ZipOutputStream now overrides write(int) in order to make sure + single byte writes get the same treatment as array writes. + * Fixes a potential deadlock in junitlauncher task when using + legacy-xml reporter. + * javaversion condition now has a new "atmost" attribute. See + the javaversion manual for more details + * The "listener" nested element of the "junitlauncher" task now + has a new "useLegacyReportingName" attribute which can be used + to control the test identifiers names that get reported by the + listener. See the junitlauncher manual for more details. Note that + this change also introduces a new "setUseLegacyReportingName" method + on the org.apache.tools.ant.taskdefs.optional.junitlauncher.TestResultFormatter + interface. This will break backward compatibility with any of your custom + result formatters which implemented this interface and such implementations + are now expected to implement this new method. + * A new attribute preserveduplicates allows to + return the same resource multiple times when set to true. + * A new attribute filterbeforeconcat in can be used to + decide whether the filterchain should be applied to the + concatenated content (the default) or each nested resource + individually before concatenating them. + * The ssh tasks now share a new nested element additionalConfig that can + be used to set config values for the jsch Session used by the task. + * Added new discardOutput and discardError properties to redirector + and the exec, apply and java tasks which can be used to completely + discard any (error) output. This is a platform independent + alternative to directiong output to any kind of null device. + * junitlauncher now prints a more useful and instantaneous summary of + tests being run, closely matching the junit task's summary. + ------------------------------------------------------------------- Thu Oct 1 15:38:21 UTC 2020 - Pedro Monreal diff --git a/ant-antlr.spec b/ant-antlr.spec index 9d7e496..b6d8c0d 100644 --- a/ant-antlr.spec +++ b/ant-antlr.spec @@ -1,7 +1,7 @@ # # spec file for package ant-antlr # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # Copyright (c) 2000-2009, JPackage Project # # All modifications and additions to the file contributed by third parties @@ -24,7 +24,7 @@ %bcond_with junit5 %bcond_without antlr Name: ant-antlr -Version: 1.10.9 +Version: 1.10.10 Release: 0 Summary: Antlr Task for ant License: Apache-2.0 @@ -104,11 +104,13 @@ Apache Ant is a Java-based build tool. This package contains optional JUnit tasks for Apache Ant. %elif %{with junit5} + %description Apache Ant is a Java-based build tool. This package contains optional JUnit5 tasks for Apache Ant. %else + %description Apache Ant is a Java-based build tool. In theory, it is kind of like Make. Build description files are written in XML. diff --git a/ant-junit.changes b/ant-junit.changes index 13e69a8..9792d5a 100644 --- a/ant-junit.changes +++ b/ant-junit.changes @@ -1,3 +1,52 @@ +------------------------------------------------------------------- +Thu Jun 3 16:17:46 UTC 2021 - Pedro Monreal + +- Update to 1.10.10 + * SCP (with sftp=true) task would fail if fetching file located + in root directory. + * Fixed: javac task would fail if the arguments file it + (internally) created didn't quote the # character. + * Make sure LegacyXmlResultFormatter encodes characters illegal + in XML the same way JUnit5's built-in formatter would. + * LegacyXmlResultFormatter no longer double-encodes <>& in + system-err and system-out. + * Fixes a bug in junitlauncher task's legacy-xml formatter, + where the testcase representing a @Parameterized JUnit4 test + wasn't being reported in the XML. + * Fixes a bug where the ant-testutil-sources.jar that gets + published to Maven central repository didn't contain any + source files. + * The condition didn't follow redirects from http to https. + * ZipOutputStream now overrides write(int) in order to make sure + single byte writes get the same treatment as array writes. + * Fixes a potential deadlock in junitlauncher task when using + legacy-xml reporter. + * javaversion condition now has a new "atmost" attribute. See + the javaversion manual for more details + * The "listener" nested element of the "junitlauncher" task now + has a new "useLegacyReportingName" attribute which can be used + to control the test identifiers names that get reported by the + listener. See the junitlauncher manual for more details. Note that + this change also introduces a new "setUseLegacyReportingName" method + on the org.apache.tools.ant.taskdefs.optional.junitlauncher.TestResultFormatter + interface. This will break backward compatibility with any of your custom + result formatters which implemented this interface and such implementations + are now expected to implement this new method. + * A new attribute preserveduplicates allows to + return the same resource multiple times when set to true. + * A new attribute filterbeforeconcat in can be used to + decide whether the filterchain should be applied to the + concatenated content (the default) or each nested resource + individually before concatenating them. + * The ssh tasks now share a new nested element additionalConfig that can + be used to set config values for the jsch Session used by the task. + * Added new discardOutput and discardError properties to redirector + and the exec, apply and java tasks which can be used to completely + discard any (error) output. This is a platform independent + alternative to directiong output to any kind of null device. + * junitlauncher now prints a more useful and instantaneous summary of + tests being run, closely matching the junit task's summary. + ------------------------------------------------------------------- Thu Oct 1 15:38:21 UTC 2020 - Pedro Monreal diff --git a/ant-junit.spec b/ant-junit.spec index 1e92fe3..4417950 100644 --- a/ant-junit.spec +++ b/ant-junit.spec @@ -1,7 +1,7 @@ # # spec file for package ant-junit # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # Copyright (c) 2000-2009, JPackage Project # # All modifications and additions to the file contributed by third parties @@ -24,7 +24,7 @@ %bcond_with junit5 %bcond_with antlr Name: ant-junit -Version: 1.10.9 +Version: 1.10.10 Release: 0 Summary: Optional junit tasks for ant License: Apache-2.0 @@ -104,11 +104,13 @@ Apache Ant is a Java-based build tool. This package contains optional JUnit tasks for Apache Ant. %elif %{with junit5} + %description Apache Ant is a Java-based build tool. This package contains optional JUnit5 tasks for Apache Ant. %else + %description Apache Ant is a Java-based build tool. In theory, it is kind of like Make. Build description files are written in XML. diff --git a/ant-junit5.changes b/ant-junit5.changes index 13e69a8..9792d5a 100644 --- a/ant-junit5.changes +++ b/ant-junit5.changes @@ -1,3 +1,52 @@ +------------------------------------------------------------------- +Thu Jun 3 16:17:46 UTC 2021 - Pedro Monreal + +- Update to 1.10.10 + * SCP (with sftp=true) task would fail if fetching file located + in root directory. + * Fixed: javac task would fail if the arguments file it + (internally) created didn't quote the # character. + * Make sure LegacyXmlResultFormatter encodes characters illegal + in XML the same way JUnit5's built-in formatter would. + * LegacyXmlResultFormatter no longer double-encodes <>& in + system-err and system-out. + * Fixes a bug in junitlauncher task's legacy-xml formatter, + where the testcase representing a @Parameterized JUnit4 test + wasn't being reported in the XML. + * Fixes a bug where the ant-testutil-sources.jar that gets + published to Maven central repository didn't contain any + source files. + * The condition didn't follow redirects from http to https. + * ZipOutputStream now overrides write(int) in order to make sure + single byte writes get the same treatment as array writes. + * Fixes a potential deadlock in junitlauncher task when using + legacy-xml reporter. + * javaversion condition now has a new "atmost" attribute. See + the javaversion manual for more details + * The "listener" nested element of the "junitlauncher" task now + has a new "useLegacyReportingName" attribute which can be used + to control the test identifiers names that get reported by the + listener. See the junitlauncher manual for more details. Note that + this change also introduces a new "setUseLegacyReportingName" method + on the org.apache.tools.ant.taskdefs.optional.junitlauncher.TestResultFormatter + interface. This will break backward compatibility with any of your custom + result formatters which implemented this interface and such implementations + are now expected to implement this new method. + * A new attribute preserveduplicates allows to + return the same resource multiple times when set to true. + * A new attribute filterbeforeconcat in can be used to + decide whether the filterchain should be applied to the + concatenated content (the default) or each nested resource + individually before concatenating them. + * The ssh tasks now share a new nested element additionalConfig that can + be used to set config values for the jsch Session used by the task. + * Added new discardOutput and discardError properties to redirector + and the exec, apply and java tasks which can be used to completely + discard any (error) output. This is a platform independent + alternative to directiong output to any kind of null device. + * junitlauncher now prints a more useful and instantaneous summary of + tests being run, closely matching the junit task's summary. + ------------------------------------------------------------------- Thu Oct 1 15:38:21 UTC 2020 - Pedro Monreal diff --git a/ant-junit5.spec b/ant-junit5.spec index 2db7489..cb0e13b 100644 --- a/ant-junit5.spec +++ b/ant-junit5.spec @@ -1,7 +1,7 @@ # # spec file for package ant-junit5 # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # Copyright (c) 2000-2009, JPackage Project # # All modifications and additions to the file contributed by third parties @@ -24,7 +24,7 @@ %bcond_without junit5 %bcond_with antlr Name: ant-junit5 -Version: 1.10.9 +Version: 1.10.10 Release: 0 Summary: Optional junit tasks for ant License: Apache-2.0 @@ -104,11 +104,13 @@ Apache Ant is a Java-based build tool. This package contains optional JUnit tasks for Apache Ant. %elif %{with junit5} + %description Apache Ant is a Java-based build tool. This package contains optional JUnit5 tasks for Apache Ant. %else + %description Apache Ant is a Java-based build tool. In theory, it is kind of like Make. Build description files are written in XML. diff --git a/ant.changes b/ant.changes index 13e69a8..9792d5a 100644 --- a/ant.changes +++ b/ant.changes @@ -1,3 +1,52 @@ +------------------------------------------------------------------- +Thu Jun 3 16:17:46 UTC 2021 - Pedro Monreal + +- Update to 1.10.10 + * SCP (with sftp=true) task would fail if fetching file located + in root directory. + * Fixed: javac task would fail if the arguments file it + (internally) created didn't quote the # character. + * Make sure LegacyXmlResultFormatter encodes characters illegal + in XML the same way JUnit5's built-in formatter would. + * LegacyXmlResultFormatter no longer double-encodes <>& in + system-err and system-out. + * Fixes a bug in junitlauncher task's legacy-xml formatter, + where the testcase representing a @Parameterized JUnit4 test + wasn't being reported in the XML. + * Fixes a bug where the ant-testutil-sources.jar that gets + published to Maven central repository didn't contain any + source files. + * The condition didn't follow redirects from http to https. + * ZipOutputStream now overrides write(int) in order to make sure + single byte writes get the same treatment as array writes. + * Fixes a potential deadlock in junitlauncher task when using + legacy-xml reporter. + * javaversion condition now has a new "atmost" attribute. See + the javaversion manual for more details + * The "listener" nested element of the "junitlauncher" task now + has a new "useLegacyReportingName" attribute which can be used + to control the test identifiers names that get reported by the + listener. See the junitlauncher manual for more details. Note that + this change also introduces a new "setUseLegacyReportingName" method + on the org.apache.tools.ant.taskdefs.optional.junitlauncher.TestResultFormatter + interface. This will break backward compatibility with any of your custom + result formatters which implemented this interface and such implementations + are now expected to implement this new method. + * A new attribute preserveduplicates allows to + return the same resource multiple times when set to true. + * A new attribute filterbeforeconcat in can be used to + decide whether the filterchain should be applied to the + concatenated content (the default) or each nested resource + individually before concatenating them. + * The ssh tasks now share a new nested element additionalConfig that can + be used to set config values for the jsch Session used by the task. + * Added new discardOutput and discardError properties to redirector + and the exec, apply and java tasks which can be used to completely + discard any (error) output. This is a platform independent + alternative to directiong output to any kind of null device. + * junitlauncher now prints a more useful and instantaneous summary of + tests being run, closely matching the junit task's summary. + ------------------------------------------------------------------- Thu Oct 1 15:38:21 UTC 2020 - Pedro Monreal diff --git a/ant.spec b/ant.spec index 10f431b..9f80ff1 100644 --- a/ant.spec +++ b/ant.spec @@ -1,7 +1,7 @@ # # spec file for package ant # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # Copyright (c) 2000-2009, JPackage Project # # All modifications and additions to the file contributed by third parties @@ -23,7 +23,7 @@ %bcond_with junit5 %bcond_with antlr Name: ant -Version: 1.10.9 +Version: 1.10.10 Release: 0 Summary: Java-based build tool License: Apache-2.0 @@ -103,11 +103,13 @@ Apache Ant is a Java-based build tool. This package contains optional JUnit tasks for Apache Ant. %elif %{with junit5} + %description Apache Ant is a Java-based build tool. This package contains optional JUnit5 tasks for Apache Ant. %else + %description Apache Ant is a Java-based build tool. In theory, it is kind of like Make. Build description files are written in XML. diff --git a/apache-ant-1.10.10-src.tar.xz b/apache-ant-1.10.10-src.tar.xz new file mode 100644 index 0000000..a99f9ef --- /dev/null +++ b/apache-ant-1.10.10-src.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8ab046eaca09d2c3fa0cdf1a681740e31f8afad0ad6bc346fe51d16fdc6d92d +size 4530288 diff --git a/apache-ant-1.10.10-src.tar.xz.asc b/apache-ant-1.10.10-src.tar.xz.asc new file mode 100644 index 0000000..c224577 --- /dev/null +++ b/apache-ant-1.10.10-src.tar.xz.asc @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCAAdFiEEjacMAN968bDS+dx03bzBJwop0IEFAmBzv6cACgkQ3bzBJwop +0IFIJg//TGQ6nt0Y7A3AHA0FTaNILyx1dPHWOU2k5OJWuFUYmWn8w123cU2oFsWM +jswdArCNOOYOGgQks2ALiuAKrMs37K+osuCOJzXbOxffuE3mpIXFdf5oz916qg93 +fg4FxBWEkkQQECgosLs2KDdf26ODz5pJH7beJsVLujRnO3Y1qpU8WiUqj8VWEy8t +mLKKZUgO2+mKSHKCKNw2aXHypHfQSm2UImi85hzxsaBHIo4hK8MEeFVmKBLWjf5q +8qeaZufqjdV/6T+tlcoMw2ARAuBMeiEv4j/3gyUiGnnh+sAs353sG7z3MFSvDgax +RwmsfoBCGBlWAcHwWiW1HiJtNViRBnlvtzyAklyAnNIpyBy2n3vn+Oh+uEQjAH7G +1zBNzj47K4e9IfR7Ryb/FtexuaPieny+CwCZi77zjWv69I2+pqEJe+h+pgLfXe5h +/8DcYGoskyfhuuNxX7YLDWkTPyo8MZr074QBKHjL8nhwN8vcBJkqvWduqER5YFUL +pgTXAGOOONNHOqSsyqUaePB7dk7PTy/cGdRJ48QBfiI+LMCEsm9hP9iRaHBqw3Z7 +frS256po21czzqyWBhhF7E/eVOBdFaKJuL4xGc+/0tfoavQycONuPDjkqUAMxetr +K4cMUzcosoxs1FLf/EOenbiRXD4KjXNtbtE3R5FN6T6h0R7rcAM= +=PX25 +-----END PGP SIGNATURE----- diff --git a/apache-ant-1.10.9-src.tar.xz b/apache-ant-1.10.9-src.tar.xz deleted file mode 100644 index 6a57a33..0000000 --- a/apache-ant-1.10.9-src.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4b2008cc60fefd424b05567e9d43a071302865d5fd8b01a807e15e381b557ec2 -size 4333648 diff --git a/apache-ant-1.10.9-src.tar.xz.asc b/apache-ant-1.10.9-src.tar.xz.asc deleted file mode 100644 index 00b75df..0000000 --- a/apache-ant-1.10.9-src.tar.xz.asc +++ /dev/null @@ -1,7 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iHEEABECADEWIQTOgHWiUVR77iSbwVGiEVrhX2uLcgUCX3BjFxMcYm9kZXdpZ0Bh -cGFjaGUub3JnAAoJEKIRWuFfa4ty1RoAoOCTeA+8V7MxLXzseH0dUpcfm9U4AJ4w -jTGSbocA3ex+Yy+rheNXYZTsXA== -=qgma ------END PGP SIGNATURE-----