236 Commits

Author SHA256 Message Date
Dominique Leuenberger
6c39a7fdbf Accepting request 957034 from Java:packages
Build against reload4j

OBS-URL: https://build.opensuse.org/request/show/957034
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ant?expand=0&rev=87
2022-02-24 17:18:20 +00:00
31c607c0a6 OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=166 2022-02-22 19:15:38 +00:00
Dominique Leuenberger
05ba02ab7c Accepting request 940778 from Java:packages
OBS-URL: https://build.opensuse.org/request/show/940778
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ant?expand=0&rev=86
2021-12-18 19:29:36 +00:00
526a11bada Accepting request 940776 from home:david.anes:branches:Java:packages
Update to 1.10.12 + CVEs/bugzilla mentioned in .changes files

OBS-URL: https://build.opensuse.org/request/show/940776
OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=165
2021-12-15 18:05:14 +00:00
Dominique Leuenberger
5fecaf0323 Accepting request 897318 from Java:packages
OBS-URL: https://build.opensuse.org/request/show/897318
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ant?expand=0&rev=85
2021-06-09 19:51:12 +00:00
9a2562e308 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 <http> 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
2021-06-04 05:29:32 +00:00
Dominique Leuenberger
f7a9daffea Accepting request 838998 from Java:packages
OBS-URL: https://build.opensuse.org/request/show/838998
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ant?expand=0&rev=84
2020-10-08 11:05:52 +00:00
47de80ec0b Accepting request 838992 from home:pmonrealgonzalez:branches:Java:packages
- Update to 1.10.9
  * Security fix: [bsc#1177180, CVE-2020-11979]
    - Insecure temporary file vulnerability
  * Fixed bugs:
    - The ftp task could throw a NullPointerException if an
      error occured.
    - Propertyset now also sees in-scope local properties.
    - Replaced ReaderInputStream with the version of Apache
      Commons IO due to problems with surrogate pairs.
    - <fixcrlf> will no longer remove the temporary file it
      just created before writing to it.
    - <sshexec> and <scp> didn't deal with wildcard hostnames
      in shs config files properly.
  * Other changes:
    - Ant will no longer log a warning if it doesn't find tools.jar.
    - The <jar> task accepts now a nested <indexjarsmapper>
      element that can be used to perform custom filename
      transformations for the <indexjars> archives.
    - Added a new PropertyEnumerator interface that extensions can
      provide if they are managing properties unknown to the Ant project.
    - Added some special code to support GraalVM JavaScript as
      javax.script scripting engine for JavaScript. In particular we
      relax some security settings of GraalVM so that scripts can access
      Ant objects.
    - Also Ant enables Nashorn compatibility mode by default, you can
      disable that by setting the magic Ant property
      ant.disable.graal.nashorn.compat to true.
    - If the magic property ant.tmpdir hasn't been set and Ant can
      control the permissions of directories it creates it will create an
      owner-owned temporary directory unaccessible to others as default

OBS-URL: https://build.opensuse.org/request/show/838992
OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=161
2020-10-01 14:34:25 +00:00
Dominique Leuenberger
b480149d66 Accepting request 805700 from Java:packages
OBS-URL: https://build.opensuse.org/request/show/805700
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ant?expand=0&rev=83
2020-05-16 20:25:11 +00:00
00e3df926a Accepting request 805655 from home:pmonrealgonzalez:branches:Java:packages
- Update to 1.10.8
 * Security fix: [CVE-2020-1945, bsc#1171696]
   - A new property ant.tmpdir provides improved control over the
     location Ant uses to create temporary files
 * sshexec failed to write output to a file if the file didn't exist
 * Fixes a regression in javac task involving command line argument files.
 * sshexec, sshsession and scp now support a new sshConfig parameter.
   It specified the SSH configuration file (typically ${user.home}/.ssh/config)
   defining the username and keyfile to be used per host.
 * "legacy-xml" formatter of junitlauncher task wasn't writing out
   exceptions that happen in @BeforeAll method of a test.
 * Fixes a potential ConcurrentModificationException in XMLLogger.
 * Fixes a bug in junitlauncher task in forked mode, where if a listener element
   was used as a sibling element for either the test or testclasses element,
   then the forked mode launch would fail.
 * Fixes an issue in AntStructure where an incorrect DTD was being generated.
 * Fixes an incorrect variable name usage in junit-frames-xalan1.xsl.
 * The runant.py script should now work with Python 3.
 * rmic has been removed from Java 15. The task will now throw an
   exception if you try to use it while running Java 15 or newer.
- Remove ant-python3.patch fixed upstream

- Update to 1.10.8
 * Security fix: [CVE-2020-1945, bsc#1171696]
   - A new property ant.tmpdir provides improved control over the
     location Ant uses to create temporary files
 * sshexec failed to write output to a file if the file didn't exist
 * Fixes a regression in javac task involving command line argument files.
 * sshexec, sshsession and scp now support a new sshConfig parameter.
   It specified the SSH configuration file (typically ${user.home}/.ssh/config)

OBS-URL: https://build.opensuse.org/request/show/805655
OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=159
2020-05-15 05:24:55 +00:00
Dominique Leuenberger
107154875b Accepting request 802621 from Java:packages
OBS-URL: https://build.opensuse.org/request/show/802621
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ant?expand=0&rev=82
2020-05-12 20:27:23 +00:00
a6b5c1f373 Accepting request 800825 from home:pmonrealgonzalez:branches:Java:packages
- Add rhino to the ant-apache-bsf optional tasks [bsc#1134001]

- Remove jakarta-commons-* dependencies [bsc#1133997]
  * Use apache-commons-logging and apache-commons-net in optional tasks

- Add rhino to the ant-apache-bsf optional tasks [bsc#1134001]

- Remove jakarta-commons-* dependencies [bsc#1133997]
  * Use apache-commons-logging and apache-commons-net in optional tasks

- Add rhino to the ant-apache-bsf optional tasks [bsc#1134001]

- Remove jakarta-commons-* dependencies [bsc#1133997]
  * Use apache-commons-logging and apache-commons-net in optional tasks

- Add rhino to the ant-apache-bsf optional tasks [bsc#1134001]

- Remove jakarta-commons-* dependencies [bsc#1133997]
  * Use apache-commons-logging and apache-commons-net in optional tasks

OBS-URL: https://build.opensuse.org/request/show/800825
OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=157
2020-05-11 08:32:03 +00:00
Dominique Leuenberger
0e986b7edb Accepting request 764179 from Java:packages
Fix classpath to use bootstrap package unequivocally

OBS-URL: https://build.opensuse.org/request/show/764179
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ant?expand=0&rev=81
2020-01-19 19:50:52 +00:00
d1cd1ff826 OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=155 2020-01-14 07:04:45 +00:00
Dominique Leuenberger
572c464675 Accepting request 747068 from Java:packages
Upgrade to 1.10.7 + overhaul the packaging to have maven metadata and corresponding pom files in the same packages

OBS-URL: https://build.opensuse.org/request/show/747068
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ant?expand=0&rev=80
2019-11-18 19:03:21 +00:00
78585983bc OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=153 2019-11-09 17:09:20 +00:00
4c0b4ec772 OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=152 2019-11-09 16:52:27 +00:00
95d8761dd6 OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=151 2019-11-09 08:35:14 +00:00
e2a0be8d6e OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=150 2019-11-08 18:00:07 +00:00
c709273a80 OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=149 2019-11-08 17:01:07 +00:00
089334fd99 OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=148 2019-11-08 11:17:19 +00:00
Dominique Leuenberger
c4d5398ef1 Accepting request 734252 from Java:packages
build against the new log4j12/log4j12-mini packages

OBS-URL: https://build.opensuse.org/request/show/734252
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ant?expand=0&rev=79
2019-10-03 14:15:10 +00:00
8e3918b45d OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=146 2019-10-01 08:36:31 +00:00
33def1831c OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=145 2019-09-30 08:17:40 +00:00
c3aeb89887 OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=144 2019-09-30 08:09:52 +00:00
Dominique Leuenberger
b7ff600160 Accepting request 692596 from Java:packages
jaxp_parser_impl has only one provider

OBS-URL: https://build.opensuse.org/request/show/692596
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ant?expand=0&rev=78
2019-04-12 07:11:23 +00:00
3e117cd0d9 OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=142 2019-04-09 10:50:16 +00:00
Dominique Leuenberger
ab2661d962 Accepting request 686215 from Java:packages
OBS-URL: https://build.opensuse.org/request/show/686215
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ant?expand=0&rev=77
2019-03-20 12:17:39 +00:00
345407b212 Accepting request 686214 from Java:packages
OBS-URL: https://build.opensuse.org/request/show/686214
OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=140
2019-03-18 19:48:22 +00:00
Stephan Kulow
ec205a046f Accepting request 679454 from Java:packages
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/679454
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ant?expand=0&rev=76
2019-03-01 19:25:15 +00:00
Dominique Leuenberger
f5890f70fd Accepting request 672690 from Java:packages
Add compatibility symlinks

OBS-URL: https://build.opensuse.org/request/show/672690
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ant?expand=0&rev=75
2019-02-11 20:16:04 +00:00
bf7b47daab OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=137 2019-02-08 10:20:14 +00:00
eccb4da514 OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=136 2019-02-08 08:52:49 +00:00
a9e7ceaa8b OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=135 2019-02-08 07:30:35 +00:00
Stephan Kulow
cff08e6fe9 Accepting request 671778 from Java:packages
BuildRequire hamcrest and xml-commons-apis-bootstrap + BuildIgnore xml-commons-apis to avoid conflicts

OBS-URL: https://build.opensuse.org/request/show/671778
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ant?expand=0&rev=74
2019-02-06 14:46:56 +00:00
683e784904 OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=133 2019-02-05 09:57:28 +00:00
08fda7f817 OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=132 2019-02-05 09:51:10 +00:00
9747d34aab OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=131 2019-02-01 16:41:58 +00:00
4ae801390a OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=130 2019-02-01 16:39:59 +00:00
f4efd03e4e OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=129 2019-02-01 16:39:01 +00:00
640f7032b0 OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=128 2019-02-01 16:28:27 +00:00
29db97e034 OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=127 2019-02-01 16:20:27 +00:00
Dominique Leuenberger
8480aa5ea3 Accepting request 656912 from Java:packages
Build against the generic xml-apis/xml-resolver providers

OBS-URL: https://build.opensuse.org/request/show/656912
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ant?expand=0&rev=73
2018-12-14 19:44:16 +00:00
c37e394759 OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=125 2018-12-10 08:25:23 +00:00
Dominique Leuenberger
bed65c063f Accepting request 653632 from Java:packages
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/653632
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ant?expand=0&rev=72
2018-12-07 13:29:57 +00:00
74ab86ec74 - Let ant-antlr provide ant-xz too, since it contains the
corresponding jar. 

- Let ant-antlr provide ant-xz too, since it contains the
  corresponding jar. 

- Let ant-antlr provide ant-xz too, since it contains the
  corresponding jar.

OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=123
2018-11-26 08:08:13 +00:00
Dominique Leuenberger
3100cc0f0a Accepting request 644831 from Java:packages
OBS-URL: https://build.opensuse.org/request/show/644831
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ant?expand=0&rev=71
2018-11-01 13:36:20 +00:00
a3d96c12df OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=121 2018-10-31 10:21:17 +00:00
Tomáš Chvátal
2c0e914912 Accepting request 644830 from home:pmonrealgonzalez:branches:Java:packages
- Update to 1.10.5 [bsc#1113136]
  * Same version as in 1.9.13 but with additional features and
    requires Java8 or higher.
  * Dropped patch to build with java8+ already fixed in this version
    - apache-ant-1.9.9-sourcetarget.patch
  * Refreshed patch:
    - apache-ant-class-path-in-manifest.patch

- Update to 1.10.5 [bsc#1113136]
  * Same version as in 1.9.13 but with additional features and
    requires Java8 or higher.
  * Dropped patch to build with java8+ already fixed in this version
    - apache-ant-1.9.9-sourcetarget.patch
  * Refreshed patch:
    - apache-ant-class-path-in-manifest.patch

- Update to 1.10.5 [bsc#1113136]
  * Same version as in 1.9.13 but with additional features and
    requires Java8 or higher.
  * Dropped patch to build with java8+ already fixed in this version
    - apache-ant-1.9.9-sourcetarget.patch
  * Refreshed patch:
    - apache-ant-class-path-in-manifest.patch

OBS-URL: https://build.opensuse.org/request/show/644830
OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=120
2018-10-26 10:55:47 +00:00
885a511396 Accepting request 644719 from home:1Antoine1:branches:Java:packages
- Add reproducible-build-manifest.patch: Use less detailed version
  string for manifest's "Created-by" field (boo#1110024).

OBS-URL: https://build.opensuse.org/request/show/644719
OBS-URL: https://build.opensuse.org/package/show/Java:packages/ant?expand=0&rev=119
2018-10-25 21:10:16 +00:00