File ant-antlr.changes of Package ant
1093
1
-------------------------------------------------------------------
2
Sat May 4 00:53:40 UTC 2024 - Anton Shvetz <shvetz.anton@gmail.com>
3
4
- Add forgotten open-test-reporting/events to
5
%{_sysconfdir}/ant.d/junitlauncher
6
7
-------------------------------------------------------------------
8
Sat Apr 27 11:36:31 UTC 2024 - Fridrich Strba <fstrba@suse.com>
9
10
- Put hamcrest on the classpath of ant-junit module
11
12
-------------------------------------------------------------------
13
Tue Feb 20 13:32:02 UTC 2024 - Fridrich Strba <fstrba@suse.com>
14
15
- Use %patch -P N instead of deprecated %patchN.
16
17
-------------------------------------------------------------------
18
Fri Jan 26 20:37:50 UTC 2024 - Anton Shvetz <shvetz.anton@gmail.com>
19
20
- Add forgotten univocity-parsers to
21
%{_sysconfdir}/ant.d/junitlauncher (needed to run unit tests
22
annotated with @CsvSource and @CsvFileSource)
23
24
-------------------------------------------------------------------
25
Mon Sep 11 12:50:03 UTC 2023 - Fridrich Strba <fstrba@suse.com>
26
27
- Added patch:
28
* reproducible-propertyfile-task.patch
29
+ Debian patch to improve propertyfile task in RPM builds by
30
using the date specified by the SOURCE_DATE_EPOCH variable
31
in the header of the .properties file generated
32
33
-------------------------------------------------------------------
34
Thu Aug 31 06:49:53 UTC 2023 - Fridrich Strba <fstrba@suse.com>
35
36
- Update to 1.10.14:
37
* Changes that could break older environments:
38
+ Resource#compareTo now invokes getName rather than toString as
39
the later may be costly (for example in the case of a
40
StringResource).
41
+ When using Java 18 or higher, Ant will no longer use Java
42
SecurityManager because it has been deprecated for removal and
43
by default is disallowed to be set at runtime
44
https://openjdk.org/jeps/411.
45
This will mean that the "<permissions>" type is no longer
46
functional when using Java 18 or higher.
47
Furthermore, when using Java 18 or higher, if the build
48
executes tasks that call "java.lang.System.exit()" and if
49
those tasks aren't running in a forked VM of their own, then
50
such tasks will now kill the entire Ant build process. It is
51
recommended that such tasks be updated to launch in a forked
52
VM so that the System.exit() call will not impact the JVM in
53
which Ant process runs.
54
* Fixed bugs:
55
+ log only the stylesheet name in the xslt task.
56
+ junitlauncher task's "test" and "listener" elements which take
57
a "outputDir" property were incorrectly resolving the
58
outputDir against the current working directory instead of the
59
project's basedir.
60
+ regexmapper would, in some cases, incorrectly consume
61
backslash characters from the "to" attribute, resulting in
62
missing backslashes in the output.
63
+ <fixcrlf>, <replace> and <replaceregexp> now try to preserve
64
the file permissions of the files they modify.
65
+ junitlauncher task would fail if a forked test timed out even
66
if haltOnFailure was set to false.
67
+ fixes a bug in org.apache.tools.zip.ZipOutputStream where,
68
even when "zip64Mode" is set to "always", ZipOutputStream may
69
not create a CEN extra field data for the entry.
70
+ legacy-xml listener of junitlauncher task wouldn't report
71
certain failures involving junit jupiter dynamic tests.
72
+ allow.class which was introduced in Ant 1.10.13 release, has
73
been removed from this 1.10.14 release. This class was
74
introduced in context of the SecurityManager changes in
75
Ant 1.10.13, which have now been reverted in Ant 1.10.14,
76
since they caused several regressions.
77
* Other changes:
78
+ <fork> element of the junitlauncher task now has a new
79
optional "java" attribute which can be used to point to a
80
different Java installation for runnning the forked tests.
81
+ made sure <echoproperties> sorts the echoed properties on
82
JDK9+ as well.
83
+ org.apache.tools.ant.taskdefs.Recorder class now introduces a
84
setLogLevel(LogLevel level) method.
85
+ The <fork> element of junitlaunchertask now allows a
86
"forkMode" attribute. forkMode=perTestClass can now be used to
87
launch each test class in a separate forked JVM.
88
89
-------------------------------------------------------------------
90
Thu May 4 12:48:37 UTC 2023 - Frederic Crozat <fcrozat@suse.com>
91
92
- Add _multibuild to define additional spec files as additional
93
flavors.
94
Eliminates the need for source package links in OBS.
95
96
-------------------------------------------------------------------
97
Thu Jan 26 06:54:09 UTC 2023 - Fridrich Strba <fstrba@suse.com>
98
99
- Package and distribute the new ant-jakartamail
100
101
-------------------------------------------------------------------
102
Wed Jan 18 09:18:50 UTC 2023 - David Anes <david.anes@suse.com>
103
104
- Update ant keyring with new developer keys.
105
106
- Update to 1.10.13:
107
* Breaking changes:
108
- <get> has a new attribute authenticateOnRedirect that can be
109
used to prevent Ant from sending the configured credentials
110
when following a redirect. It is false by default, which means
111
builds that rely on credentials being used on the redirected
112
URI may break.
113
* Fixed bugs:
114
- the PropertyEnumerator change introduced in 1.10.9 proved to
115
be not fully backwards compatible when combined with certain
116
custom PropertyHelper implementations - for example when using
117
AntXtras.
118
- legacy-xml reporter of the junitlauncher task now escapes ]]>
119
when writing CDATA.
120
- <scp> may leak connections when trying to preserve the last
121
modified timestamps of files transferred recursively from a
122
server.
123
- tstamp task would in certain cases parse the SOURCE_DATE_EPOCH
124
environment variable value to an incorrect date. This has now
125
been fixed.
126
- fetch.xml didn't set up non-default repositories propery and
127
thus failed to download JAI.
128
- When building and installing Ant distribution from source, the
129
build script would change permissions on unrelated files in
130
the destination directory. This is now fixed and such
131
unrelated files in the destination directory will be left
132
untouched.
133
- parsing tar entries with multiple NUL bytes in their name
134
would include garbage bytes as the name included all bytes up
135
to the last NUL rather than the first.
136
- loadresource might log warnings even though quiet was set to
137
true
138
- javac task would add paths constructs containing wildcards to
139
the internally created argument file where wildcards are not
140
allowed
141
* Other changes:
142
- added an implementation of the MIME Mail sender based on the
143
repackaged Jakarta Mail package rather than javax Mail.
144
- The "listener" element in the junitlauncher task now supports
145
an "extension" attribute to control the filename extension
146
of the generated output file from the listener.
147
- <ftp> now supports FTPs.
148
- DirectoryScanner avoids listing directory contents when it
149
known it will never use the information retrieved. This may
150
improve performance in some special cases.
151
- <manifest> will now create the parent directory of the
152
manifestFile attribute if it doesn't exist.
153
- org.apache.tools.ant.BuildLogger now has a new method
154
getMessageOutputLevel() which returns the currently set
155
message output level.
156
157
-------------------------------------------------------------------
158
Mon May 9 09:33:15 UTC 2022 - Fridrich Strba <fstrba@suse.com>
159
160
- Disable a test failing to compile with junit5 5.8.x
161
162
-------------------------------------------------------------------
163
Tue Feb 22 19:15:02 UTC 2022 - Fridrich Strba <fstrba@suse.com>
164
165
- Do not build against the log4j12 packages, use the new reload4j
166
167
-------------------------------------------------------------------
168
Wed Dec 15 16:19:12 UTC 2021 - David Anes <david.anes@suse.com>
169
170
- Update to 1.10.12:
171
* The update includes fixes for the following CVEs:
172
CVE-2021-36374, bsc#1188469
173
Excessive memory allocation when reading a specially
174
crafted ZIP archive or a derived formats.
175
CVE-2021-36373, bsc#1188468
176
Excessive memory allocation when reading a specially
177
crafted TAR archive.
178
* The http condition would follow redirects even when "followRedirects" attribute
179
was set to "false". This has now been fixed. Bugzilla Report 65489
180
* Made sure setting build.compiler to the fully qualified classname
181
that corresponds to extJavac or modern has the same effect as using
182
the shorter alias names. Bugzilla Report 65539
183
* Prevent potential deadlocks in org.apache.tools.ant.IntrospectionHelper.
184
Bugzilla Report 65424
185
* The implementation of AntClassLoader#findResources() has been changed to optimize
186
it for potential performance issues, as those noted at https://issues.jenkins.io/browse/JENKINS-22310?focusedCommentId=197405&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-197405
187
Github Pull Request #151
188
* AntClassLoader now implements the ClassLoader#findResource(String) method.
189
Github Pull Request #150
190
* Ant tries to avoid file name canonicalization when possible.
191
Bugzilla Report 65499
192
* javadoc task will now look for warning messages in the STDERR stream too
193
when "failonwarning" is set to true to account for changes in JDK 17+
194
* The tar task now preserves symlinks of nested tarfilesets.
195
Github Pull Request #142
196
197
- Changes from 1.10.11:
198
* a race condition could lead to NullPointerExceptions when running
199
tasks in parallel.
200
Bugzilla Report 65316
201
* fixed potential OutOfMemory errors when reading broken archives
202
using the tar or zip formats or formats derived from zip.
203
* org.apache.tools.ant.taskdefs.optional.junitlauncher.confined.JUnitLauncherTask now
204
has a new protected createExecuteWatchdog() method for allowing it to be overriden.
205
Github Pull Request #147
206
* Upgraded AntUnit to 1.4.1.
207
208
-------------------------------------------------------------------
209
Thu Jun 3 16:17:46 UTC 2021 - Pedro Monreal <pmonreal@suse.com>
210
211
- Update to 1.10.10
212
* SCP (with sftp=true) task would fail if fetching file located
213
in root directory.
214
* Fixed: javac task would fail if the arguments file it
215
(internally) created didn't quote the # character.
216
* Make sure LegacyXmlResultFormatter encodes characters illegal
217
in XML the same way JUnit5's built-in formatter would.
218
* LegacyXmlResultFormatter no longer double-encodes <>& in
219
system-err and system-out.
220
* Fixes a bug in junitlauncher task's legacy-xml formatter,
221
where the testcase representing a @Parameterized JUnit4 test
222
wasn't being reported in the XML.
223
* Fixes a bug where the ant-testutil-sources.jar that gets
224
published to Maven central repository didn't contain any
225
source files.
226
* The <http> condition didn't follow redirects from http to https.
227
* ZipOutputStream now overrides write(int) in order to make sure
228
single byte writes get the same treatment as array writes.
229
* Fixes a potential deadlock in junitlauncher task when using
230
legacy-xml reporter.
231
* javaversion condition now has a new "atmost" attribute. See
232
the javaversion manual for more details
233
* The "listener" nested element of the "junitlauncher" task now
234
has a new "useLegacyReportingName" attribute which can be used
235
to control the test identifiers names that get reported by the
236
listener. See the junitlauncher manual for more details. Note that
237
this change also introduces a new "setUseLegacyReportingName" method
238
on the org.apache.tools.ant.taskdefs.optional.junitlauncher.TestResultFormatter
239
interface. This will break backward compatibility with any of your custom
240
result formatters which implemented this interface and such implementations
241
are now expected to implement this new method.
242
* A new attribute preserveduplicates allows <resourcelist> to
243
return the same resource multiple times when set to true.
244
* A new attribute filterbeforeconcat in <concat> can be used to
245
decide whether the filterchain should be applied to the
246
concatenated content (the default) or each nested resource
247
individually before concatenating them.
248
* The ssh tasks now share a new nested element additionalConfig that can
249
be used to set config values for the jsch Session used by the task.
250
* Added new discardOutput and discardError properties to redirector
251
and the exec, apply and java tasks which can be used to completely
252
discard any (error) output. This is a platform independent
253
alternative to directiong output to any kind of null device.
254
* junitlauncher now prints a more useful and instantaneous summary of
255
tests being run, closely matching the junit task's summary.
256
257
-------------------------------------------------------------------
258
Thu Oct 1 15:38:21 UTC 2020 - Pedro Monreal <pmonreal@suse.com>
259
260
- Update to 1.10.9
261
* Security fix: [bsc#1177180, CVE-2020-11979]
262
- Insecure temporary file vulnerability
263
* Fixed bugs:
264
- The ftp task could throw a NullPointerException if an
265
error occured.
266
- Propertyset now also sees in-scope local properties.
267
- Replaced ReaderInputStream with the version of Apache
268
Commons IO due to problems with surrogate pairs.
269
- <fixcrlf> will no longer remove the temporary file it
270
just created before writing to it.
271
- <sshexec> and <scp> didn't deal with wildcard hostnames
272
in shs config files properly.
273
* Other changes:
274
- Ant will no longer log a warning if it doesn't find tools.jar.
275
- The <jar> task accepts now a nested <indexjarsmapper>
276
element that can be used to perform custom filename
277
transformations for the <indexjars> archives.
278
- Added a new PropertyEnumerator interface that extensions can
279
provide if they are managing properties unknown to the Ant project.
280
- Added some special code to support GraalVM JavaScript as
281
javax.script scripting engine for JavaScript. In particular we
282
relax some security settings of GraalVM so that scripts can access
283
Ant objects.
284
- Also Ant enables Nashorn compatibility mode by default, you can
285
disable that by setting the magic Ant property
286
ant.disable.graal.nashorn.compat to true.
287
- If the magic property ant.tmpdir hasn't been set and Ant can
288
control the permissions of directories it creates it will create an
289
owner-owned temporary directory unaccessible to others as default
290
tempdir as soon as a temporary file is created for the first time.
291
292
-------------------------------------------------------------------
293
Thu May 14 17:31:18 UTC 2020 - Pedro Monreal Gonzalez <pmonrealgonzalez@suse.com>
294
295
- Update to 1.10.8
296
* Security fix: [CVE-2020-1945, bsc#1171696]
297
- A new property ant.tmpdir provides improved control over the
298
location Ant uses to create temporary files
299
* sshexec failed to write output to a file if the file didn't exist
300
* Fixes a regression in javac task involving command line argument files.
301
* sshexec, sshsession and scp now support a new sshConfig parameter.
302
It specified the SSH configuration file (typically ${user.home}/.ssh/config)
303
defining the username and keyfile to be used per host.
304
* "legacy-xml" formatter of junitlauncher task wasn't writing out
305
exceptions that happen in @BeforeAll method of a test.
306
* Fixes a potential ConcurrentModificationException in XMLLogger.
307
* Fixes a bug in junitlauncher task in forked mode, where if a listener element
308
was used as a sibling element for either the test or testclasses element,
309
then the forked mode launch would fail.
310
* Fixes an issue in AntStructure where an incorrect DTD was being generated.
311
* Fixes an incorrect variable name usage in junit-frames-xalan1.xsl.
312
* The runant.py script should now work with Python 3.
313
* rmic has been removed from Java 15. The task will now throw an
314
exception if you try to use it while running Java 15 or newer.
315
- Remove ant-python3.patch fixed upstream
316
317
-------------------------------------------------------------------
318
Wed May 6 16:49:40 UTC 2020 - Pedro Monreal Gonzalez <pmonrealgonzalez@suse.com>
319
320
- Add rhino to the ant-apache-bsf optional tasks [bsc#1134001]
321
322
-------------------------------------------------------------------
323
Wed May 6 16:45:22 UTC 2020 - Pedro Monreal Gonzalez <pmonrealgonzalez@suse.com>
324
325
- Remove jakarta-commons-* dependencies [bsc#1133997]
326
* Use apache-commons-logging and apache-commons-net in optional tasks
327
328
-------------------------------------------------------------------
329
Tue Jan 14 07:03:37 UTC 2020 - Fridrich Strba <fstrba@suse.com>
330
331
- Use xml-commons-apis-bootstrap as jar in classpath instead of
332
the common xml-apis jar, since we are forcing build against
333
the bootstrap package
334
335
-------------------------------------------------------------------
336
Fri Nov 8 11:15:20 UTC 2019 - Fridrich Strba <fstrba@suse.com>
337
338
- Upgrade to upstream version 1.10.7
339
- Modified patches:
340
* apache-ant-bootstrap.patch
341
* apache-ant-no-test-jar.patch
342
* apache-ant-xml-apis.patch
343
* reproducible-build-manifest.patch
344
+ rediff
345
- Fix ant-xz.jar to be non-empty and split it from the ant-antlr
346
package
347
348
-------------------------------------------------------------------
349
Tue Oct 1 08:34:33 UTC 2019 - Fridrich Strba <fstrba@suse.com>
350
351
- Build against the new compatibility packages log4j12/log4j12-mini
352
353
-------------------------------------------------------------------
354
Mon Sep 30 08:08:49 UTC 2019 - Fridrich Strba <fstrba@suse.com>
355
356
- Remove references to parent poms from all artifacts and do not
357
distribute the ant-parent, since we don't need it
358
359
-------------------------------------------------------------------
360
Tue Apr 9 10:48:23 UTC 2019 - Fridrich Strba <fstrba@suse.com>
361
362
- Require directly xerces-j2 and not its virtual provide
363
jaxp_parser_impl
364
365
-------------------------------------------------------------------
366
Mon Mar 18 17:30:12 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
367
368
- Make "if" statements in build recipe POSIX sh compatible.
369
370
-------------------------------------------------------------------
371
Fri Feb 8 08:51:41 UTC 2019 - Fridrich Strba <fstrba@suse.com>
372
373
- Create an ant-junit5 package to build junit5 optional tasks
374
when they become resolved
375
- Add a simple pom file for ant-bootstrap.jar
376
377
-------------------------------------------------------------------
378
Fri Feb 8 07:26:44 UTC 2019 - Fridrich Strba <fstrba@suse.com>
379
380
- Add compatibility links ant/ant*.jar for bootstrap build
381
382
-------------------------------------------------------------------
383
Tue Feb 5 09:49:54 UTC 2019 - Fridrich Strba <fstrba@suse.com>
384
385
- BuildRequire hamcrest for ant-junit and ant-antlr, since junit4
386
depends strictly on hamcrest-core only.
387
388
-------------------------------------------------------------------
389
Fri Feb 1 16:19:10 UTC 2019 - Fridrich Strba <fstrba@suse.com>
390
391
- Build ant against xml-commons-apis-bootstrap and
392
xml-commons-resolver-bootstrap in order to break build cycle
393
394
-------------------------------------------------------------------
395
Mon Dec 10 08:22:18 UTC 2018 - Fridrich Strba <fstrba@suse.com>
396
397
- Don't build against a particular xml-apis/xml-resolver provider,
398
but against the generic virtual provider. This allows easier
399
bootstrapping.
400
- Added patch:
401
* apache-ant-xml-apis.patch
402
+ look for the xml-apis.jar and xml-resolver.jar when composing
403
classpath; they are symlinks provided by several packages.
404
405
-------------------------------------------------------------------
406
Mon Nov 26 08:07:13 UTC 2018 - Fridrich Strba <fstrba@suse.com>
407
408
- Let ant-antlr provide ant-xz too, since it contains the
409
corresponding jar.
410
411
-------------------------------------------------------------------
412
Wed Oct 31 10:20:23 UTC 2018 - Fridrich Strba <fstrba@suse.com>
413
414
- Add aliases to some maven artifacts so that packages out there
415
resolve then correctly
416
417
-------------------------------------------------------------------
418
Fri Oct 26 09:54:04 UTC 2018 - Pedro Monreal Gonzalez <pmonrealgonzalez@suse.com>
419
420
- Update to 1.10.5 [bsc#1113136]
421
* Same version as in 1.9.13 but with additional features and
422
requires Java8 or higher.
423
* Dropped patch to build with java8+ already fixed in this version
424
- apache-ant-1.9.9-sourcetarget.patch
425
* Refreshed patch:
426
- apache-ant-class-path-in-manifest.patch
427
428
-------------------------------------------------------------------
429
Sun Oct 21 08:08:23 UTC 2018 - antoine.belvire@opensuse.org
430
431
- Add reproducible-build-manifest.patch: Use less detailed version
432
string for manifest's "Created-by" field (boo#1110024).
433
434
-------------------------------------------------------------------
435
Wed Oct 17 19:40:22 UTC 2018 - Fridrich Strba <fstrba@suse.com>
436
437
- Require javapackages-local in order to generate correctly the
438
maven requires and provides
439
- Install maven artifacts
440
441
-------------------------------------------------------------------
442
Fri Aug 24 20:20:20 UTC 2018 - Jason Sikes <jsikes@suse.de>
443
444
- Update to 1.9.13
445
* Fixes a regression in the "get" task where redirects
446
from a HTTP resource to a HTTPS resource started throwing
447
an exception.
448
Bugzilla Report 62499
449
450
* the new allowFilesToEscapeDest didn't work when set to false and
451
archive entries contained relative paths with so many ".."
452
segnments that the resulting path would go beyond the file system
453
root.
454
Bugzilla Report 62502, bsc#1100053, CVE-2018-10886
455
456
-------------------------------------------------------------------
457
Tue May 15 05:02:22 UTC 2018 - fstrba@suse.com
458
459
- Build with source and target 8 to prepare for a possible removal
460
of 1.6 compatibility
461
- Modified patch:
462
* apache-ant-1.9.9-sourcetarget.patch
463
- Build with source/target 8
464
465
-------------------------------------------------------------------
466
Fri Feb 23 10:24:31 UTC 2018 - ecsos@opensuse.org
467
468
- fix build error for Leap 42.3
469
470
-------------------------------------------------------------------
471
Thu Feb 22 11:43:31 UTC 2018 - tchvatal@suse.com
472
473
- Add patch to run scripts with python3 if applicable bsc#1082202:
474
* ant-python3.patch
475
476
-------------------------------------------------------------------
477
Thu Feb 22 11:26:23 UTC 2018 - tchvatal@suse.com
478
479
- Update to 1.9.10:
480
* Various fixes for java10
481
* Small fixes all around
482
- Remove merged patch reproducible.patch
483
484
-------------------------------------------------------------------
485
Sat Oct 28 16:17:19 UTC 2017 - jengelh@inai.de
486
487
- Simply use find -delete over xargs.
488
- Make description neutral.
489
490
-------------------------------------------------------------------
491
Tue Oct 24 11:26:36 UTC 2017 - bwiedemann@suse.com
492
493
- Add reproducible-build-date.patch to allow to have fixed build dates
494
to make other packages build more reproducibly
495
496
-------------------------------------------------------------------
497
Wed Oct 4 09:07:19 UTC 2017 - fstrba@suse.com
498
499
- Remove dependency on java-1_5_0-gcj-compat-devel and build even
500
the bootstrap package with java source and target 1.6
501
502
-------------------------------------------------------------------
503
Fri Sep 29 07:06:59 UTC 2017 - fstrba@suse.com
504
505
- Don't condition the maven defines on release version, but on
506
_maven_repository being defined
507
508
-------------------------------------------------------------------
509
Thu Sep 14 05:39:48 UTC 2017 - fstrba@suse.com
510
511
- Allow bootstrapping with something else then
512
java-1_5_0-gcj-compat, but still require
513
java-1_5_0-gcj-compat-devel
514
- Added patch:
515
* apache-ant-bootstrap.patch
516
- Add -sourcepath option to fix build breakages with Eclipse
517
Compiler for Java(tm)
518
519
-------------------------------------------------------------------
520
Wed Sep 6 17:49:21 UTC 2017 - fstrba@suse.com
521
522
- Added patch:
523
* apache-ant-1.9.9-sourcetarget.patch
524
+ Change java source and target versions to 1.6 to allow build
525
with jdk9
526
- For non-boostrap builds require java-devel >= 1.6
527
528
-------------------------------------------------------------------
529
Fri Jun 9 09:05:31 UTC 2017 - tchvatal@suse.com
530
531
- Do not generate poms on ant core packages to reduce deps and
532
allow bootstrap
533
534
-------------------------------------------------------------------
535
Wed May 31 13:35:49 UTC 2017 - tchvatal@suse.com
536
537
- Fix bootstrap to avoid new cycle bsc#1041966
538
539
-------------------------------------------------------------------
540
Fri May 19 08:08:28 UTC 2017 - tchvatal@suse.com
541
542
- Disable javadoc completely it is on the web in much better form
543
- Remove if0 conditions
544
- Remove patch apache-ant-old-gcj-build.patch for sle11 and unused
545
- Fix build with split javapackages-tools
546
547
-------------------------------------------------------------------
548
Mon May 8 20:05:59 UTC 2017 - bwiedemann@suse.com
549
550
- Version bump to 1.9.9:
551
* Read WHATSNEW file for full changelist
552
553
-------------------------------------------------------------------
554
Mon May 8 07:43:51 UTC 2017 - bwiedemann@suse.de
555
556
- Add reproducible.patch to allow reproducible builds of ant itself
557
and packages built with ant like jcodings
558
559
-------------------------------------------------------------------
560
Mon Feb 20 10:12:01 UTC 2017 - tchvatal@suse.com
561
562
- Revert the previous change as it broke the build of most java
563
software stack
564
565
-------------------------------------------------------------------
566
Mon Feb 13 15:54:30 UTC 2017 - guoyunhebrave@gmail.com
567
568
- Add profile.d scripts to set ANT_HOME
569
570
-------------------------------------------------------------------
571
Fri Jan 15 22:01:37 UTC 2016 - opensuse@dstoecker.de
572
573
- junit4 test did not work (bnc#915686)
574
575
-------------------------------------------------------------------
576
Wed Jul 29 11:12:50 UTC 2015 - tchvatal@suse.com
577
578
- Add xalan-j2-serializer to ant-antlr requirements
579
580
-------------------------------------------------------------------
581
Tue Jul 28 14:15:24 UTC 2015 - tchvatal@suse.com
582
583
- Sync the changes files among the subpkgs
584
- Version bump to 1.9.6:
585
* Read WHATSNEW file for full changelist
586
587
-------------------------------------------------------------------
588
Sun Jun 21 14:05:05 UTC 2015 - jengelh@inai.de
589
590
- Do better quoting to get better error messages when it fails
591
592
-------------------------------------------------------------------
593
Wed Mar 18 09:30:13 UTC 2015 - tchvatal@suse.com
594
595
- Fix build with new javapackages-tools
596
597
-------------------------------------------------------------------
598
Thu Aug 28 14:30:48 UTC 2014 - coolo@suse.com
599
600
- to bootstrap 13.2 we need another split because bsf depends on things
601
that depend on junit and as antlr requires bsf, we need a 3rd step ->
602
split ant-junit to build in between ant and ant-antlr
603
604
-------------------------------------------------------------------
605
Fri Jul 4 12:47:07 UTC 2014 - tchvatal@suse.com
606
607
- Fix building on SLE.
608
- Added patch:
609
* apache-ant-old-gcj-build.patch
610
611
-------------------------------------------------------------------
612
Fri Jul 4 11:54:48 UTC 2014 - tchvatal@suse.com
613
614
- Update to 1.9.4:
615
* Read WHATSNEW file for full changelist
616
* initial support for Java 1.9
617
* <junit> has now a threads attribute allowing to run the tests in
618
several threads. Bugzilla Report 55925
619
* TarInputStream will now read archives created by tar
620
implementations that encode big numbers by not adding a trailing
621
NUL.
622
623
-------------------------------------------------------------------
624
Thu May 15 13:18:36 UTC 2014 - peter.trommler@ohm-hochschule.de
625
626
- fix summary (was antlr summary)
627
628
-------------------------------------------------------------------
629
Mon May 12 14:00:55 UTC 2014 - darin@darins.net
630
631
- SLE_11 specific spec files for ant/ant-antlr. These build with
632
openjdk, which introduced bootstrap breakage in Factory.
633
- Update pre_checkin.sh for SLE_11 specific spec's
634
635
-------------------------------------------------------------------
636
Fri May 2 09:01:02 UTC 2014 - tchvatal@suse.com
637
638
- Revert the bootstrap breakage.
639
640
-------------------------------------------------------------------
641
Thu Apr 24 09:54:12 UTC 2014 - dmueller@suse.com
642
643
- remove dependency on gpg-offline (blocks rebuilds and
644
tarball integrity is checked by source-validator anyway, plus
645
it was commented out)
646
- remove apache-ant-bz163689.patch (was not applied anywhere)
647
648
-------------------------------------------------------------------
649
Wed Apr 23 12:55:35 UTC 2014 - darin@darins.net
650
651
- Update packaging to build the openjdk and not gcj
652
653
-------------------------------------------------------------------
654
Thu Jan 2 08:36:18 UTC 2014 - mvyskocil@suse.com
655
656
- Update to 1.9.3
657
- BugFixes:
658
* Ant 1.8 exec task changes have slowed exec to a crawl, apache#54128
659
* <parallel> swallowed the status code of nested <fail> tasks,
660
apache#55539
661
* a race condition could make <fixcrlf> tasks of parallel builds to
662
interfere with each other, apache#54393
663
* <mail>'s mailport still didn't work properly when using smtps,
664
apache#49267
665
* using attributes belonging to the if and unless namespaces
666
made macrodef fail, apache#55885.
667
* Apt is not available under JDK 1.8, apache#55922
668
- drop unused macros
669
- add gpg verification
670
671
-------------------------------------------------------------------
672
Wed Dec 4 14:58:13 UTC 2013 - mvyskocil@suse.com
673
674
- use requires_eq instead of manual call of rpm -q
675
676
-------------------------------------------------------------------
677
Wed Oct 2 09:52:33 UTC 2013 - mvyskocil@suse.com
678
679
- install compat symlink to /usr/share/ant/bin/antRun to make scala build
680
681
-------------------------------------------------------------------
682
Mon Sep 9 11:05:25 UTC 2013 - tchvatal@suse.com
683
684
- Move from jpackage-utils to javapackage-tools
685
686
-------------------------------------------------------------------
687
Thu Aug 22 07:47:26 UTC 2013 - mvyskocil@suse.com
688
689
- Update to 1.9.2
690
- Incompatible changes:
691
* ProjectHelper's implementation import and include tasks
692
defaults the targetPrefix to ProjectHelper.USE_PROJECT_NAME_AS_TARGET_PREFIX.
693
ProjectHelper2 is not affected, apache#54940.
694
* FixCRLF used to treat the EOL value ASIS to convert to the system property
695
line.separator. Specified was that ASIS would leave the EOL characters alone,
696
the task now really leaves the EOL characters alone. This also implies that
697
EOL ASIS will not insert a newline even if fixlast is set to true.
698
apache#53036
699
* The CommandLauncher hierarchy that used to be a set of inner
700
classes of Execute has been extracted to the
701
org.apache.tools.ant.taskdefs.launcher package.
702
* Any FileResource whose represented File has a parent also has a basedir.
703
* Removing the Perforce Ant tasks replaced by tasks supplied by Perforce Inc.
704
* Setting the default encoding of StringResource to UTF-8 instead of null
705
- Bugfixes:
706
* <javadoc> post-process generated docs to migitiate frame
707
injection attack (CVE-2013-1571) apache#55132
708
* Parsing of zip64 extra fields has become more lenient
709
* TarInputStream should now properly read GNU longlink entries' names.
710
apache#55040.
711
* <java> and <exec> used to be too restrictive when evaluating
712
whether a given set of options is compatible with spawning the new
713
process, apache#55112.
714
* Corrected XSLTC error in <junitreport>, apache#54641.
715
* and many more, see WHATSNEW for details
716
717
-------------------------------------------------------------------
718
Mon Jan 7 12:15:09 UTC 2013 - mvyskocil@suse.com
719
720
- remove xerces-j2-bootstrap depenency (bnc#789163)
721
722
-------------------------------------------------------------------
723
Wed May 30 11:46:44 UTC 2012 - cfarrell@suse.com
724
725
- license update: CDDL-1.0
726
SPDX format (note that it should CDDL-1.1 if the (c) owner and license
727
steward is Oracle)
728
729
-------------------------------------------------------------------
730
Tue May 15 07:02:23 UTC 2012 - mvyskocil@suse.cz
731
732
- build ignore java-1_7_0-openjdk as well
733
734
-------------------------------------------------------------------
735
Wed Feb 1 12:54:47 UTC 2012 - mvyskocil@suse.cz
736
737
- revert the Recommends to fix a lot of build fails
738
739
-------------------------------------------------------------------
740
Wed Jan 25 09:54:17 UTC 2012 - mvyskocil@suse.cz
741
742
- use new _mavendepmapfragdir macro instead of hardocded path
743
- change java-devel Requires to Recommends
744
745
-------------------------------------------------------------------
746
Tue Jan 3 01:01:19 CET 2012 - dmueller@suse.de
747
748
- use dist-lite and dist_javadocs to make javadoc build really
749
optional
750
- fix arm check (ifarch does not work in a noarch spec file)
751
752
-------------------------------------------------------------------
753
Thu Dec 15 08:49:28 UTC 2011 - mvyskocil@suse.cz
754
755
- use dist and javadocs targets to make javadoc build really configurable
756
- disable javadoc build on arm to speedup the build of java platform
757
758
-------------------------------------------------------------------
759
Sat Sep 17 11:04:48 UTC 2011 - jengelh@medozas.de
760
761
- Remove redundant tags/sections from specfile
762
763
-------------------------------------------------------------------
764
Mon Mar 14 13:02:38 UTC 2011 - mvyskocil@suse.cz
765
766
- ignore openjdk for build of core ant
767
768
-------------------------------------------------------------------
769
Wed Mar 9 08:56:33 UTC 2011 - mvyskocil@suse.cz
770
771
- Update to ant 1.8.2
772
* performance improvements in directory scanning
773
* XSLT task honors classpath again (bugrep 49271)
774
* distinction between core tasks and optional tasks is abolished
775
* new task augment allows to add attributes or nested elements to previously
776
defined references
777
* Lexically scoped local properties, i.e. properties that are only defined
778
inside a target, sequential block or similar environment. This is very
779
useful inside of <macrodef>s where a macro can now define a temporary
780
property that will disappear once the task has finished.
781
* <import> can now import from any file- or URL-providing resource - this
782
includes <javaresource>. This means <import> can read build file snippets
783
from JARs or fixed server URLs. There are several other improvements in the
784
area of import.
785
* Various improvements to the directory scanning code that help with symbolic
786
link cycles (as can be found on MacOS X Java installations for example) and
787
improve scanning performance. For big directory trees the improvement is
788
dramatic.
789
* The way developers can extend Ant's property expansion algorithm has been
790
rewritten (breaking the older API) to be easier to use and be more
791
powerful. The whole local properties mechanism is implemented using that
792
API and could be implemented in a separate library without changes in Ant's
793
core. Things like the yet-to-be-released props Antlib can now provide often
794
required "scripty" fuctions without touching Ant itself. At the same time
795
the if and unless attributes have been rewritten to do the expected thing
796
if applied to a property expansion (i.e. if="${foo}" will mean "yes, do it"
797
if ${foo} expands to true, in Ant 1.7.1 it would mean "no" unless a
798
property named "true" existed). This adds "testing conditions" as a new
799
use-case to property expansion.
800
* A new top-level element <extension-point> assists in writing re-usable
801
build files that are meant to be imported. <extension-point> has a name and
802
a dependency-list like <target> and can be used like a <target> from the
803
command line or a dependency-list but the importing build file can add
804
targets to the <extension-point>'s depends list.
805
* Ant now requires Java 1.4 or later new task include provides an alternative
806
to <import> that should be preferred when you don't want to override any
807
targets
808
* numerous bug fixes and improvements as documented in
809
Bugzilla and in WHATSNEW
810
- merge the nodeps and trax packages to main one
811
- build ant-antlr.spec using openjdk
812
- add ant-apache-xalan2 and ant-testutil
813
- remove all pom files, as they are included and build from source tarball
814
815
-------------------------------------------------------------------
816
Fri Apr 9 10:41:42 UTC 2010 - mvyskocil@suse.cz
817
818
- fix bnc#595144 - Compiled binary in ant
819
remove test.exe from source tarball
820
821
-------------------------------------------------------------------
822
Thu Mar 18 15:58:41 UTC 2010 - mvyskocil@suse.cz
823
824
- fix the compat symlinks
825
826
-------------------------------------------------------------------
827
Wed Mar 17 15:05:43 UTC 2010 - mvyskocil@suse.cz
828
829
- return back the /usr/share/ant/lib compat symlinks
830
http://lists.opensuse.org/opensuse-java/2010-03/msg00007.html
831
832
-------------------------------------------------------------------
833
Wed Jun 17 10:22:10 CEST 2009 - mvyskocil@suse.cz
834
835
- do not use Release number in Requires of subpackages
836
837
-------------------------------------------------------------------
838
Sun May 3 11:37:14 CEST 2009 - ro@suse.de
839
840
- do not assume release number for ant and ant-antlr are identical
841
842
-------------------------------------------------------------------
843
Tue Apr 28 15:03:07 CEST 2009 - mvyskocil@suse.cz
844
845
- update to 1.7.1. Upstream changes (full list is in WHATSNEW):
846
* String resources only have properties single expanded. If you relied on
847
<string> resources being expanded more than once, it no longer happens.
848
Bugzilla report 42277.
849
850
* A String resource's encoding attribute was only taken into account when
851
set from the resource's OutputStream; the InputStream provided the String's
852
binary content according to the platform's default encoding. Behavior has
853
been modified to encode outgoing (InputStream) content as well as encoding
854
incoming (OutputStream) content.
855
856
* <java> with fork now returns gives -1 instead of 0 as result when
857
* failonerror
858
is false and some exception (including timeout) occurs. Br 42377.
859
860
* ant-type attribute has been marked as deprecated and a warning has been
861
issued if it is encountered in the build file.
862
863
* FileUtils.createTempFile now actually creates the file.
864
The TempFile task still does not create the file by default, can be
865
instructed to do so however using a new parameter. Bugzilla report 33969.
866
867
- added maven pom files from jpackage project
868
- synchronized ant.spec with jpackage.org 5.0
869
- used ant-antlr-prepare.sh for generate of ant-antlr.spec from ant.spec to
870
keep them synchronized. Build is branched using value of %%bootstrap macro:
871
* bootstrap == 1 means build ant, ant-{jmf,nodeps,scripts,swing,trax}
872
* bootstrap == 0 means build rest of ant modules + ant-javadoc
873
874
-------------------------------------------------------------------
875
Mon Nov 3 11:45:06 CET 2008 - mvyskocil@suse.cz
876
877
- [bnc#440645] - ant fails without installed jdk:
878
- added a java-devel to Recommends:
879
880
-------------------------------------------------------------------
881
Mon Jul 21 16:29:31 CEST 2008 - ro@suse.de
882
883
- use xerces-j2-bootstrap to build (as early as possible)
884
- add java doc dir to filelist of javadoc subpackage to fix build
885
886
-------------------------------------------------------------------
887
Wed Jul 16 14:11:41 CEST 2008 - coolo@suse.de
888
889
- avoid another build cycle
890
891
-------------------------------------------------------------------
892
Wed May 7 10:45:27 CEST 2008 - mvyskocil@suse.cz
893
894
- build using gcj, to allow a openjdk6 bootstrap
895
- change a source and a target level to 1.5 in build.xml
896
897
-------------------------------------------------------------------
898
Tue Aug 14 13:52:03 CEST 2007 - skh@suse.de
899
900
- disable junit tests and remove junit from BuildRequires to break
901
circular build dependency
902
903
-------------------------------------------------------------------
904
Fri Jul 6 19:24:52 CEST 2007 - dbornkessel@suse.de
905
906
- update to version 1.7.0
907
908
major changes are (for a complete list, consult /usr/share/doc/packages/ant/WHATSNEW):
909
910
Changes that could break older environments:
911
-------------------------------------------
912
913
* Initial support for JDK 6 (JSR 223) scripting.
914
<*script*> tasks will now use javax.scripting if BSF is
915
not available, or if explicitly requested by using
916
a "manager" attribute.
917
918
* The -noproxy option which was in the previous 1.7 alpha and beta
919
releases has been removed. It is the default behavior and not needed.
920
921
* Removed launcher classes from nodeps jar.
922
923
* <classconstants> filter reader uses ISO-8859-1 encoding to read
924
the java class file. Bugzilla report 33604.
925
926
* Defer reference process. Bugzilla 36955, 34458, 37688.
927
This may break build files in which a reference was set in a target which was
928
never executed. Historically, Ant would set the reference early on, during parse
929
time, so the datatype would be defined. Now it requires the reference to have
930
been in a bit of the build file which was actually executed. If you get
931
an error about an undefined reference, locate the reference and move it somewhere
932
where it is used, or fix the depends attribute of the target in question to
933
depend on the target which defines the reference/datatype.
934
935
* <script> and <scriptdef> now set the current thread context.
936
937
* Unrestrict the dbvendor names in the websphere element of the ejbjar task.
938
Bugzilla Report 40475.
939
940
* <env> nested element in <java>, <exec> and others is now case-insensitive
941
for windows OS. Bugzilla Report 28874.
942
943
* Removed support for xalan1 completely. Users of Xalan1 for Ant builds will
944
have to stay at ant 1.6.5 or upgrade to xalan2.
945
946
* Use org.apache.log4j.Logger instead of org.apache.log4j.Category.
947
Category has been deprecated for ~2 years and has been removed from
948
the log4j code. Logger was introduced in log4j 1.2 so users of
949
log4j 1.1 and log4j 1.0 need to upgrade to a newer version of log4j.
950
Bugzilla Report 31951.
951
952
* build.sysclasspath now also affects the bootclasspath handling of
953
spawned Java VMs. If you set build.sysclasspath to anything other
954
than "ignore" (or leave it unset, since "ignore" is the default when
955
it comes to bootclasspath handling), then the bootclasspath of the
956
VM running Ant will be added to the bootclasspath you've specified.
957
958
* The <java fork="false"> now as per default installs a security manager
959
using the default permissions. This is now independent of the
960
failonerror attribute. Bugzilla report 33361.
961
962
* <signjar> now notices when the jar and signedjar are equal, and switches
963
to the same dependency logic as when signedjar is omitted. This may break
964
something that depended upon signing in this situation. However, since
965
invoking the JDK jarsigner program with -signedjar set to the source jar
966
actually crashes the JVM on our (Java1.5) systems, we don't think any
967
build files which actually worked will be affected by the change.
968
969
* <signjar> used to ignore a nested fileset when a jar was also provided as an
970
attribute, printing a warning message; now it signs files in the fileset.
971
972
* An improved method of handling timestamp granularity differences between
973
client and server was added to the <ftp> task. FTP servers typically
974
have HH:mm timestamps whereas local filesystems have HH:mm:ss timestamps.
975
Previously, this required tweaking with the timediffmillis attribute
976
which also was used to handle timezone differences. Now, there is a new
977
timestampgranularity attribute. The default value for get operations is 0
978
since the user has the more powerful preservelastmodified attribute to work
979
with. Since this is not available on put operations the default value
980
adds a minute to the server timestamp in order to account for this,
981
Scripts which previously used timediffmillis to do this compensation may
982
need to be rewritten. timediffmillis has now been deprecated.
983
984
* On Java1.5+, Ant automatically sets the system property
985
java.net.useSystemProxies to true, which gives it automatic use of the local
986
IE (Windows) or Gnome2 (Unix/Linux) proxy settings. This may break any build
987
file that somehow relied on content outside the firewall being unreachable:
988
use the -noproxy command-line option to disable this new feature.
989
Note that the Java1.5 proxy configuration system still does not
990
appear to work reliably on Windows or Linux.
991
992
* Support for the XSL:P XML parser has been removed.
993
Bugzilla Report 23455.
994
995
* Visual Age for Java optional tasks removed.
996
997
* Testlet (test) optional task removed.
998
999
* Icontract optional task removed.
1000
1001
* Metamata (maudit, mmetrics, and mparse tasks) removed.
1002
1003
* Sitraka (jpcoverage, jpcovmerge, jpcovreport) tasks suppressed.
1004
1005
* <fixcrlf> used \r (Mac) line endings on OS X, whose proper line separator
1006
is \n (Unix). Bugzilla report 39585.
1007
1008
* <scp> now optionally supports the sftp protocol, you may need a
1009
newer jsch.jar. Bugzilla Report 39373.
1010
1011
* Ant launcher program prints errors to stderr, and exits with a 2 exit code
1012
value if, for any reason, it cannot actually start Ant proper. This will only
1013
affect programs/scripts that called the launcher and which did not want to
1014
receive an error if Ant itself would not start
1015
1016
* All .NET tasks are now deprecated in favor of the new .NET Antlib:
1017
http://ant.apache.org/antlibs/dotnet/index.html
1018
1019
-------------------------------------------------------------------
1020
Fri Sep 22 14:34:40 CEST 2006 - dbornkessel@suse.de
1021
1022
- read in properties in /etc/ant.conf
1023
- added source=1.4
1024
1025
-------------------------------------------------------------------
1026
Mon May 8 14:54:11 CEST 2006 - dbornkessel@suse.de
1027
1028
- only ant-antlr updates
1029
1030
1031
-------------------------------------------------------------------
1032
Thu Feb 2 20:55:06 CET 2006 - dbornkessel@suse.de
1033
1034
- fixed rpmlint errors and warnings
1035
1036
-------------------------------------------------------------------
1037
Tue Jan 31 17:29:45 CET 2006 - dbornkessel@suse.de
1038
1039
- only ant-antlr updates
1040
1041
-------------------------------------------------------------------
1042
Fri Jan 27 12:12:48 CET 2006 - dbornkessel@suse.de
1043
1044
- added four missing xsl files
1045
- removed JAVA_HOME magic
1046
1047
-------------------------------------------------------------------
1048
Tue Jan 24 16:55:46 CET 2006 - dbornkessel@suse.de
1049
1050
- Not dependend on xml-commons-apis, which are provided by xerces-j2, which does not
1051
depend on ant package (in contrast to old dependency on
1052
xml-commons-apis <-> ant)
1053
- optional task are now again in extra spec file ant-antlr
1054
1055
1056
-------------------------------------------------------------------
1057
Thu Jan 19 14:10:18 CET 2006 - dbornkessel@suse.de
1058
1059
- Integrated ant and ant-antlr again in one spec file as there is no
1060
dependency loop ... jpackage BuildRequires were wrong.
1061
- updated to version 1.6.5
1062
1063
-------------------------------------------------------------------
1064
Mon Dec 19 10:46:33 CET 2005 - dbornkessel@suse.de
1065
1066
- added if statement that hinders unwanted creation of a file within a for loop
1067
1068
-------------------------------------------------------------------
1069
Thu Sep 29 00:10:39 CEST 2005 - dmueller@suse.de
1070
1071
- add norootforbuild
1072
1073
-------------------------------------------------------------------
1074
Fri Mar 4 13:53:08 CET 2005 - skh@suse.de
1075
1076
- rely on jpackage-utils' java-functions to set JAVA_HOME correctly
1077
1078
-------------------------------------------------------------------
1079
Sun Sep 5 20:00:07 CEST 2004 - skh@suse.de
1080
1081
- create and add /usr/share/java/ant to file list for optional
1082
tasks to put their jars into
1083
1084
-------------------------------------------------------------------
1085
Thu Sep 2 15:58:19 CEST 2004 - skh@suse.de
1086
1087
- renamed from apache-ant to ant
1088
- switched to JPackage 1.5 version
1089
- updated to version 1.6.2
1090
- split off optional tasks into separate package to solve build
1091
dependency loop in JPackage
1092
1093