You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2020/09/27 10:08:25 UTC

svn commit: r41602 - in /dev/ant: ./ binaries/ manual/ source/

Author: bodewig
Date: Sun Sep 27 10:08:25 2020
New Revision: 41602

Log:
RC1 of Ant 1.10.9

Added:
    dev/ant/README.html   (with props)
    dev/ant/RELEASE-NOTES-1.10.9.html   (with props)
    dev/ant/binaries/apache-ant-1.10.9-bin.tar.bz2   (with props)
    dev/ant/binaries/apache-ant-1.10.9-bin.tar.bz2.asc
    dev/ant/binaries/apache-ant-1.10.9-bin.tar.bz2.sha512
    dev/ant/binaries/apache-ant-1.10.9-bin.tar.gz   (with props)
    dev/ant/binaries/apache-ant-1.10.9-bin.tar.gz.asc
    dev/ant/binaries/apache-ant-1.10.9-bin.tar.gz.sha512
    dev/ant/binaries/apache-ant-1.10.9-bin.tar.xz   (with props)
    dev/ant/binaries/apache-ant-1.10.9-bin.tar.xz.asc
    dev/ant/binaries/apache-ant-1.10.9-bin.tar.xz.sha512
    dev/ant/binaries/apache-ant-1.10.9-bin.zip   (with props)
    dev/ant/binaries/apache-ant-1.10.9-bin.zip.asc
    dev/ant/binaries/apache-ant-1.10.9-bin.zip.sha512
    dev/ant/manual/apache-ant-1.10.9-manual.tar.bz2   (with props)
    dev/ant/manual/apache-ant-1.10.9-manual.tar.bz2.asc
    dev/ant/manual/apache-ant-1.10.9-manual.tar.bz2.sha512
    dev/ant/manual/apache-ant-1.10.9-manual.tar.gz   (with props)
    dev/ant/manual/apache-ant-1.10.9-manual.tar.gz.asc
    dev/ant/manual/apache-ant-1.10.9-manual.tar.gz.sha512
    dev/ant/manual/apache-ant-1.10.9-manual.tar.xz   (with props)
    dev/ant/manual/apache-ant-1.10.9-manual.tar.xz.asc
    dev/ant/manual/apache-ant-1.10.9-manual.tar.xz.sha512
    dev/ant/manual/apache-ant-1.10.9-manual.zip   (with props)
    dev/ant/manual/apache-ant-1.10.9-manual.zip.asc
    dev/ant/manual/apache-ant-1.10.9-manual.zip.sha512
    dev/ant/source/apache-ant-1.10.9-src.tar.bz2   (with props)
    dev/ant/source/apache-ant-1.10.9-src.tar.bz2.asc
    dev/ant/source/apache-ant-1.10.9-src.tar.bz2.sha512
    dev/ant/source/apache-ant-1.10.9-src.tar.gz   (with props)
    dev/ant/source/apache-ant-1.10.9-src.tar.gz.asc
    dev/ant/source/apache-ant-1.10.9-src.tar.gz.sha512
    dev/ant/source/apache-ant-1.10.9-src.tar.xz   (with props)
    dev/ant/source/apache-ant-1.10.9-src.tar.xz.asc
    dev/ant/source/apache-ant-1.10.9-src.tar.xz.sha512
    dev/ant/source/apache-ant-1.10.9-src.zip   (with props)
    dev/ant/source/apache-ant-1.10.9-src.zip.asc
    dev/ant/source/apache-ant-1.10.9-src.zip.sha512

Added: dev/ant/README.html
==============================================================================
--- dev/ant/README.html (added)
+++ dev/ant/README.html Sun Sep 27 10:08:25 2020
@@ -0,0 +1,57 @@
+<html>
+  <head><title>Release Notes for Ant 1.10.9</title></head>
+  <body><pre>
+Changes from Ant 1.10.8 TO Ant 1.10.9
+=====================================
+
+Fixed bugs:
+-----------
+
+ * the ftp task could throw a NullPointerException if an error occured
+   Bugzilla Report 64438
+
+ * propertyset now also sees in-scope local properties
+   Bugzilla Report 50179
+
+ * replaced our version of ReaderInputStream with the battle-tested
+   version of Apache Commons IO as our version had problems with
+   surrogate pairs (and likely other edge cases as well).
+   Bugzilla Report 40455
+
+ * &lt;fixcrlf> will no longer remove the temporary file it just created
+   before writing to it.
+
+ * &lt;sshexec> and &lt;scp> didn't deal with wildcard hostnames in shs
+   config files properly.
+   Bugzilla Report 64530
+
+Other changes:
+--------------
+
+ * Ant will no longer log a warning if it doesn't find tools.jar
+   Bugzilla Report 63577
+
+ * the &lt;jar> task accepts now a nested &lt;indexjarsmapper> element
+   that can be used to perform custom filename transformations
+   for the &lt;indexjars> archives.
+   Github Pull Request #134
+
+ * 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.
+
+   See the script task manual for additional details.
+
+ * 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
+   tempdir as soon as a temporary file is created for the first time,
+</pre></body></html>

Propchange: dev/ant/README.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/ant/RELEASE-NOTES-1.10.9.html
==============================================================================
--- dev/ant/RELEASE-NOTES-1.10.9.html (added)
+++ dev/ant/RELEASE-NOTES-1.10.9.html Sun Sep 27 10:08:25 2020
@@ -0,0 +1,57 @@
+<html>
+  <head><title>Release Notes for Ant 1.10.9</title></head>
+  <body><pre>
+Changes from Ant 1.10.8 TO Ant 1.10.9
+=====================================
+
+Fixed bugs:
+-----------
+
+ * the ftp task could throw a NullPointerException if an error occured
+   Bugzilla Report 64438
+
+ * propertyset now also sees in-scope local properties
+   Bugzilla Report 50179
+
+ * replaced our version of ReaderInputStream with the battle-tested
+   version of Apache Commons IO as our version had problems with
+   surrogate pairs (and likely other edge cases as well).
+   Bugzilla Report 40455
+
+ * &lt;fixcrlf> will no longer remove the temporary file it just created
+   before writing to it.
+
+ * &lt;sshexec> and &lt;scp> didn't deal with wildcard hostnames in shs
+   config files properly.
+   Bugzilla Report 64530
+
+Other changes:
+--------------
+
+ * Ant will no longer log a warning if it doesn't find tools.jar
+   Bugzilla Report 63577
+
+ * the &lt;jar> task accepts now a nested &lt;indexjarsmapper> element
+   that can be used to perform custom filename transformations
+   for the &lt;indexjars> archives.
+   Github Pull Request #134
+
+ * 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.
+
+   See the script task manual for additional details.
+
+ * 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
+   tempdir as soon as a temporary file is created for the first time,
+</pre></body></html>

Propchange: dev/ant/RELEASE-NOTES-1.10.9.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/ant/binaries/apache-ant-1.10.9-bin.tar.bz2
==============================================================================
Binary file - no diff available.

Propchange: dev/ant/binaries/apache-ant-1.10.9-bin.tar.bz2
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/ant/binaries/apache-ant-1.10.9-bin.tar.bz2.asc
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.9-bin.tar.bz2.asc (added)
+++ dev/ant/binaries/apache-ant-1.10.9-bin.tar.bz2.asc Sun Sep 27 10:08:25 2020
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHEEABECADEWIQTOgHWiUVR77iSbwVGiEVrhX2uLcgUCX3BjFxMcYm9kZXdpZ0Bh
+cGFjaGUub3JnAAoJEKIRWuFfa4tyc9QAn2IpS39maXLCkVPlzN8C995PjIl3AJ4h
+oaIRGDXkQ58ZumL2aiY8gD14Zw==
+=WkeZ
+-----END PGP SIGNATURE-----

Added: dev/ant/binaries/apache-ant-1.10.9-bin.tar.bz2.sha512
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.9-bin.tar.bz2.sha512 (added)
+++ dev/ant/binaries/apache-ant-1.10.9-bin.tar.bz2.sha512 Sun Sep 27 10:08:25 2020
@@ -0,0 +1 @@
+e74f490c64addfb5040ee80d38d4de3057b8fc7c58dd627dd77883964fd41edfc208230f45ee5500d70fc07a2f81a1d8d069a3b70ed6055c2975c49d753b73bc

Added: dev/ant/binaries/apache-ant-1.10.9-bin.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/ant/binaries/apache-ant-1.10.9-bin.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/ant/binaries/apache-ant-1.10.9-bin.tar.gz.asc
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.9-bin.tar.gz.asc (added)
+++ dev/ant/binaries/apache-ant-1.10.9-bin.tar.gz.asc Sun Sep 27 10:08:25 2020
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHEEABECADEWIQTOgHWiUVR77iSbwVGiEVrhX2uLcgUCX3BjFhMcYm9kZXdpZ0Bh
+cGFjaGUub3JnAAoJEKIRWuFfa4tyjWQAn1xyRv1iDiUytZn0FTwciTg3rzk/AJkB
+N4TGA54b3zFF6Os0JPcNFZ5Fuw==
+=n090
+-----END PGP SIGNATURE-----

Added: dev/ant/binaries/apache-ant-1.10.9-bin.tar.gz.sha512
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.9-bin.tar.gz.sha512 (added)
+++ dev/ant/binaries/apache-ant-1.10.9-bin.tar.gz.sha512 Sun Sep 27 10:08:25 2020
@@ -0,0 +1 @@
+ed73febff2803079d13117e18a22697eecdac64c9c52fc5259ac880d7b07f527d8ce3779851af0cda5798a368ebc979d43dd7085a0a62af57df23ff3d105dd6f

Added: dev/ant/binaries/apache-ant-1.10.9-bin.tar.xz
==============================================================================
Binary file - no diff available.

Propchange: dev/ant/binaries/apache-ant-1.10.9-bin.tar.xz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/ant/binaries/apache-ant-1.10.9-bin.tar.xz.asc
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.9-bin.tar.xz.asc (added)
+++ dev/ant/binaries/apache-ant-1.10.9-bin.tar.xz.asc Sun Sep 27 10:08:25 2020
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHEEABECADEWIQTOgHWiUVR77iSbwVGiEVrhX2uLcgUCX3BjFxMcYm9kZXdpZ0Bh
+cGFjaGUub3JnAAoJEKIRWuFfa4tyuRgAoIS9WlKeyARktjfbo7lMPlioNoUwAKDk
+SakJqHZqsRVSLR4sw7U5FKF5HA==
+=Be8p
+-----END PGP SIGNATURE-----

Added: dev/ant/binaries/apache-ant-1.10.9-bin.tar.xz.sha512
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.9-bin.tar.xz.sha512 (added)
+++ dev/ant/binaries/apache-ant-1.10.9-bin.tar.xz.sha512 Sun Sep 27 10:08:25 2020
@@ -0,0 +1 @@
+ecb09c83b24f98b9475849548558809ff21c88f8d39fbc3559f24df5fc640a50bbd885681d9c676285d8843bd3dc09a6238189c13a4238ba5c01385a5bd29542

Added: dev/ant/binaries/apache-ant-1.10.9-bin.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/ant/binaries/apache-ant-1.10.9-bin.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/ant/binaries/apache-ant-1.10.9-bin.zip.asc
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.9-bin.zip.asc (added)
+++ dev/ant/binaries/apache-ant-1.10.9-bin.zip.asc Sun Sep 27 10:08:25 2020
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHAEABECADEWIQTOgHWiUVR77iSbwVGiEVrhX2uLcgUCX3BjFhMcYm9kZXdpZ0Bh
+cGFjaGUub3JnAAoJEKIRWuFfa4ty9skAmIHfl4qtLZjdnsPYY0mHXK/u4tsAn3Hf
+3F57F0Libudol6fN9b/seDAo
+=oJBa
+-----END PGP SIGNATURE-----

Added: dev/ant/binaries/apache-ant-1.10.9-bin.zip.sha512
==============================================================================
--- dev/ant/binaries/apache-ant-1.10.9-bin.zip.sha512 (added)
+++ dev/ant/binaries/apache-ant-1.10.9-bin.zip.sha512 Sun Sep 27 10:08:25 2020
@@ -0,0 +1 @@
+d085f59349edf22a93d835aa30aea2521ed39bdb99d57d941f1ebd8d115a561bb28aecc781915ff2a0d9f7caf7bae536cdda0910bb432b2a4bce8b7b90c2903b

Added: dev/ant/manual/apache-ant-1.10.9-manual.tar.bz2
==============================================================================
Binary file - no diff available.

Propchange: dev/ant/manual/apache-ant-1.10.9-manual.tar.bz2
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/ant/manual/apache-ant-1.10.9-manual.tar.bz2.asc
==============================================================================
--- dev/ant/manual/apache-ant-1.10.9-manual.tar.bz2.asc (added)
+++ dev/ant/manual/apache-ant-1.10.9-manual.tar.bz2.asc Sun Sep 27 10:08:25 2020
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHEEABECADEWIQTOgHWiUVR77iSbwVGiEVrhX2uLcgUCX3BjFxMcYm9kZXdpZ0Bh
+cGFjaGUub3JnAAoJEKIRWuFfa4tyk8cAoKOSa0Zy1CoxMt9W4oq60okmCWONAJ9v
+hReCmVQHmiPh6LJNVyjgpP270g==
+=/3j6
+-----END PGP SIGNATURE-----

Added: dev/ant/manual/apache-ant-1.10.9-manual.tar.bz2.sha512
==============================================================================
--- dev/ant/manual/apache-ant-1.10.9-manual.tar.bz2.sha512 (added)
+++ dev/ant/manual/apache-ant-1.10.9-manual.tar.bz2.sha512 Sun Sep 27 10:08:25 2020
@@ -0,0 +1 @@
+10c17f54cb45b112368503a97d3fb8885bc5ba7b815baa94576cd9370b2b2e81ca9d62938d6116cda0bfffe739762bc04855f68e5c7a2074a831523e953281de

Added: dev/ant/manual/apache-ant-1.10.9-manual.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/ant/manual/apache-ant-1.10.9-manual.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/ant/manual/apache-ant-1.10.9-manual.tar.gz.asc
==============================================================================
--- dev/ant/manual/apache-ant-1.10.9-manual.tar.gz.asc (added)
+++ dev/ant/manual/apache-ant-1.10.9-manual.tar.gz.asc Sun Sep 27 10:08:25 2020
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHEEABECADEWIQTOgHWiUVR77iSbwVGiEVrhX2uLcgUCX3BjFhMcYm9kZXdpZ0Bh
+cGFjaGUub3JnAAoJEKIRWuFfa4tyI/sAnjjq8SCVH4Fesyfm010a33vLpLbgAJ9O
+tfhTUuEvbLs4TB8gnt7FdsRB/Q==
+=Zn8Z
+-----END PGP SIGNATURE-----

Added: dev/ant/manual/apache-ant-1.10.9-manual.tar.gz.sha512
==============================================================================
--- dev/ant/manual/apache-ant-1.10.9-manual.tar.gz.sha512 (added)
+++ dev/ant/manual/apache-ant-1.10.9-manual.tar.gz.sha512 Sun Sep 27 10:08:25 2020
@@ -0,0 +1 @@
+75bc58771a2c091b8b787294452487ffd7630cf39edf5f85eb77274f7d4d289e62f4200b99bce9018c4e09723da358455b6c37aa7e055be70e6f105301dc4521

Added: dev/ant/manual/apache-ant-1.10.9-manual.tar.xz
==============================================================================
Binary file - no diff available.

Propchange: dev/ant/manual/apache-ant-1.10.9-manual.tar.xz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/ant/manual/apache-ant-1.10.9-manual.tar.xz.asc
==============================================================================
--- dev/ant/manual/apache-ant-1.10.9-manual.tar.xz.asc (added)
+++ dev/ant/manual/apache-ant-1.10.9-manual.tar.xz.asc Sun Sep 27 10:08:25 2020
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHEEABECADEWIQTOgHWiUVR77iSbwVGiEVrhX2uLcgUCX3BjFxMcYm9kZXdpZ0Bh
+cGFjaGUub3JnAAoJEKIRWuFfa4tyeGcAn0h9/peegmKOSOrzIw0ERrwNsGcZAJ9X
++gIMr2wgRIxriv0oR0DVtNm1DA==
+=1mGT
+-----END PGP SIGNATURE-----

Added: dev/ant/manual/apache-ant-1.10.9-manual.tar.xz.sha512
==============================================================================
--- dev/ant/manual/apache-ant-1.10.9-manual.tar.xz.sha512 (added)
+++ dev/ant/manual/apache-ant-1.10.9-manual.tar.xz.sha512 Sun Sep 27 10:08:25 2020
@@ -0,0 +1 @@
+5ba4ed9445939163e1b596c6e49899d635dfdd3506eae0889359364dc448656c54cd0a236c2ab8f2f07c9bc25768f8a99421d25f4cf90add8bc1725f0e4e9dfc

Added: dev/ant/manual/apache-ant-1.10.9-manual.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/ant/manual/apache-ant-1.10.9-manual.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/ant/manual/apache-ant-1.10.9-manual.zip.asc
==============================================================================
--- dev/ant/manual/apache-ant-1.10.9-manual.zip.asc (added)
+++ dev/ant/manual/apache-ant-1.10.9-manual.zip.asc Sun Sep 27 10:08:25 2020
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHEEABECADEWIQTOgHWiUVR77iSbwVGiEVrhX2uLcgUCX3BjFhMcYm9kZXdpZ0Bh
+cGFjaGUub3JnAAoJEKIRWuFfa4tyE/AAnRUlkXpcHc9QGIGwcieWzWmfGIoRAKDm
+USvPaTrBQtfDGXtINzGS3PGU7g==
+=HSZ8
+-----END PGP SIGNATURE-----

Added: dev/ant/manual/apache-ant-1.10.9-manual.zip.sha512
==============================================================================
--- dev/ant/manual/apache-ant-1.10.9-manual.zip.sha512 (added)
+++ dev/ant/manual/apache-ant-1.10.9-manual.zip.sha512 Sun Sep 27 10:08:25 2020
@@ -0,0 +1 @@
+60495e21cc4dfe9dbbac294d3e8672a745e3d1af5e444be23139a9cb5fe5ad9a34ffa7ce345ee83ddce127742baf599877caf4417b8988daee98a3b7727c62fe

Added: dev/ant/source/apache-ant-1.10.9-src.tar.bz2
==============================================================================
Binary file - no diff available.

Propchange: dev/ant/source/apache-ant-1.10.9-src.tar.bz2
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/ant/source/apache-ant-1.10.9-src.tar.bz2.asc
==============================================================================
--- dev/ant/source/apache-ant-1.10.9-src.tar.bz2.asc (added)
+++ dev/ant/source/apache-ant-1.10.9-src.tar.bz2.asc Sun Sep 27 10:08:25 2020
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHEEABECADEWIQTOgHWiUVR77iSbwVGiEVrhX2uLcgUCX3BjFxMcYm9kZXdpZ0Bh
+cGFjaGUub3JnAAoJEKIRWuFfa4tywfoAni5Gry1v+VivO5FiPgEibFwekVpiAKDV
+2lnO8p7gQvRwnfAcCPGa6mSfXg==
+=ivlM
+-----END PGP SIGNATURE-----

Added: dev/ant/source/apache-ant-1.10.9-src.tar.bz2.sha512
==============================================================================
--- dev/ant/source/apache-ant-1.10.9-src.tar.bz2.sha512 (added)
+++ dev/ant/source/apache-ant-1.10.9-src.tar.bz2.sha512 Sun Sep 27 10:08:25 2020
@@ -0,0 +1 @@
+7a6c96131462dc0e1bcf41e2daa1b129a45d19302f4ee2915bb51c4cf347996fa5f8140f96653b21952decee16816476b8f258f8ad2c094a8305209cebcee4a4

Added: dev/ant/source/apache-ant-1.10.9-src.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/ant/source/apache-ant-1.10.9-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/ant/source/apache-ant-1.10.9-src.tar.gz.asc
==============================================================================
--- dev/ant/source/apache-ant-1.10.9-src.tar.gz.asc (added)
+++ dev/ant/source/apache-ant-1.10.9-src.tar.gz.asc Sun Sep 27 10:08:25 2020
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHEEABECADEWIQTOgHWiUVR77iSbwVGiEVrhX2uLcgUCX3BjFhMcYm9kZXdpZ0Bh
+cGFjaGUub3JnAAoJEKIRWuFfa4tyiT0An17D4T0w3J/kSojWR28hCstnUSOhAJ9p
+hYhJ5VvZCMVFZ/xcPoldTTwXog==
+=9uiA
+-----END PGP SIGNATURE-----

Added: dev/ant/source/apache-ant-1.10.9-src.tar.gz.sha512
==============================================================================
--- dev/ant/source/apache-ant-1.10.9-src.tar.gz.sha512 (added)
+++ dev/ant/source/apache-ant-1.10.9-src.tar.gz.sha512 Sun Sep 27 10:08:25 2020
@@ -0,0 +1 @@
+6f992a144d33e1d2930744aadcd5f762d1e880d4fddc3f081097ebd195fb3d22a6eb5447f298d96935eeb59669b906ad9882b98d09ec77582c35355334231e8b

Added: dev/ant/source/apache-ant-1.10.9-src.tar.xz
==============================================================================
Binary file - no diff available.

Propchange: dev/ant/source/apache-ant-1.10.9-src.tar.xz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/ant/source/apache-ant-1.10.9-src.tar.xz.asc
==============================================================================
--- dev/ant/source/apache-ant-1.10.9-src.tar.xz.asc (added)
+++ dev/ant/source/apache-ant-1.10.9-src.tar.xz.asc Sun Sep 27 10:08:25 2020
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHEEABECADEWIQTOgHWiUVR77iSbwVGiEVrhX2uLcgUCX3BjFxMcYm9kZXdpZ0Bh
+cGFjaGUub3JnAAoJEKIRWuFfa4ty1RoAoOCTeA+8V7MxLXzseH0dUpcfm9U4AJ4w
+jTGSbocA3ex+Yy+rheNXYZTsXA==
+=qgma
+-----END PGP SIGNATURE-----

Added: dev/ant/source/apache-ant-1.10.9-src.tar.xz.sha512
==============================================================================
--- dev/ant/source/apache-ant-1.10.9-src.tar.xz.sha512 (added)
+++ dev/ant/source/apache-ant-1.10.9-src.tar.xz.sha512 Sun Sep 27 10:08:25 2020
@@ -0,0 +1 @@
+1107fac69f34bd03ab448c1d35f1cb6acfb2c2b02557ad7cb5f2d8839087ff2cf8eed63b22d83c61316776b2ad6ad1747413f53c71b3a2fc5b8b3d2e67d0282e

Added: dev/ant/source/apache-ant-1.10.9-src.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/ant/source/apache-ant-1.10.9-src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/ant/source/apache-ant-1.10.9-src.zip.asc
==============================================================================
--- dev/ant/source/apache-ant-1.10.9-src.zip.asc (added)
+++ dev/ant/source/apache-ant-1.10.9-src.zip.asc Sun Sep 27 10:08:25 2020
@@ -0,0 +1,7 @@
+-----BEGIN PGP SIGNATURE-----
+
+iHEEABECADEWIQTOgHWiUVR77iSbwVGiEVrhX2uLcgUCX3BjFhMcYm9kZXdpZ0Bh
+cGFjaGUub3JnAAoJEKIRWuFfa4tyiv8AnRdyj4NvXS9fRmVaCI6Y17UCu9IbAKDL
+TO5cXoeXPCtVjs2ku6BDnjpPWQ==
+=Ociy
+-----END PGP SIGNATURE-----

Added: dev/ant/source/apache-ant-1.10.9-src.zip.sha512
==============================================================================
--- dev/ant/source/apache-ant-1.10.9-src.zip.sha512 (added)
+++ dev/ant/source/apache-ant-1.10.9-src.zip.sha512 Sun Sep 27 10:08:25 2020
@@ -0,0 +1 @@
+f8cb8e651a2084d165e2c34f962d542c06f37311de7cb824042304a908dbf995509fab70a6951664f9df2b23896cad810082b64ca18e13a356f2cc5a2482a5f2