You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ma...@apache.org on 2021/08/17 02:12:25 UTC

svn commit: r49526 - in /dev/commons/geometry: 1.0-RC3/ 1.0-RC4/ 1.0-RC4/binaries/ 1.0-RC4/source/

Author: mattjuntunen
Date: Tue Aug 17 02:12:25 2021
New Revision: 49526

Log:
Distribution files for Commons Geometry v1.0 (RC4)

Added:
    dev/commons/geometry/1.0-RC4/
    dev/commons/geometry/1.0-RC4/CONTRIBUTING.md
    dev/commons/geometry/1.0-RC4/HEADER.html
    dev/commons/geometry/1.0-RC4/README.html
    dev/commons/geometry/1.0-RC4/RELEASE-NOTES.txt
    dev/commons/geometry/1.0-RC4/binaries/
    dev/commons/geometry/1.0-RC4/binaries/HEADER.html
    dev/commons/geometry/1.0-RC4/binaries/README.html
    dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.tar.gz   (with props)
    dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.tar.gz.asc
    dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.tar.gz.sha512
    dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.zip   (with props)
    dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.zip.asc
    dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.zip.sha512
    dev/commons/geometry/1.0-RC4/source/
    dev/commons/geometry/1.0-RC4/source/HEADER.html
    dev/commons/geometry/1.0-RC4/source/README.html
    dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.tar.gz   (with props)
    dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.tar.gz.asc
    dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.tar.gz.sha512
    dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.zip   (with props)
    dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.zip.asc
    dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.zip.sha512
Removed:
    dev/commons/geometry/1.0-RC3/

Added: dev/commons/geometry/1.0-RC4/CONTRIBUTING.md
==============================================================================
--- dev/commons/geometry/1.0-RC4/CONTRIBUTING.md (added)
+++ dev/commons/geometry/1.0-RC4/CONTRIBUTING.md Tue Aug 17 02:12:25 2021
@@ -0,0 +1,115 @@
+<!---
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<!---
+ +======================================================================+
+ |****                                                              ****|
+ |****      THIS FILE IS GENERATED BY THE COMMONS BUILD PLUGIN      ****|
+ |****                    DO NOT EDIT DIRECTLY                      ****|
+ |****                                                              ****|
+ +======================================================================+
+ | TEMPLATE FILE: contributing-md-template.md                           |
+ | commons-build-plugin/trunk/src/main/resources/commons-xdoc-templates |
+ +======================================================================+
+ |                                                                      |
+ | 1) Re-generate using: mvn commons-build:contributing-md              |
+ |                                                                      |
+ | 2) Set the following properties in the component's pom:              |
+ |    - commons.jira.id  (required, alphabetic, upper case)             |
+ |                                                                      |
+ | 3) Example Properties                                                |
+ |                                                                      |
+ |  <properties>                                                        |
+ |    <commons.jira.id>MATH</commons.jira.id>                           |
+ |  </properties>                                                       |
+ |                                                                      |
+ +======================================================================+
+--->
+Contributing to Apache Commons Geometry
+======================
+
+You have found a bug or you have an idea for a cool new feature? Contributing code is a great way to give something back to
+the open source community. Before you dig right into the code there are a few guidelines that we need contributors to
+follow so that we can have a chance of keeping on top of things.
+
+Getting Started
+---------------
+
++ Make sure you have a [JIRA account](https://issues.apache.org/jira/).
++ Make sure you have a [GitHub account](https://github.com/signup/free).
++ If you're planning to implement a new feature it makes sense to discuss your changes on the [dev list](https://commons.apache.org/mail-lists.html) first. This way you can make sure you're not wasting your time on something that isn't considered to be in Apache Commons Geometry's scope.
++ Submit a [Jira Ticket][jira] for your issue, assuming one does not already exist.
+  + Clearly describe the issue including steps to reproduce when it is a bug.
+  + Make sure you fill in the earliest version that you know has the issue.
++ Find the corresponding [repository on GitHub](https://github.com/apache/?query=commons-),
+[fork](https://help.github.com/articles/fork-a-repo/) and check out your forked repository.
+
+Making Changes
+--------------
+
++ Create a _topic branch_ for your isolated work.
+  * Usually you should base your branch on the `master` or `trunk` branch.
+  * A good topic branch name can be the JIRA bug id plus a keyword, e.g. `GEOMETRY-123-InputStream`.
+  * If you have submitted multiple JIRA issues, try to maintain separate branches and pull requests.
++ Make commits of logical units.
+  * Make sure your commit messages are meaningful and in the proper format. Your commit message should contain the key of the JIRA issue.
+  * e.g. `GEOMETRY-123: Close input stream earlier`
++ Respect the original code style:
+  + Only use spaces for indentation.
+  + Create minimal diffs - disable _On Save_ actions like _Reformat Source Code_ or _Organize Imports_. If you feel the source code should be reformatted create a separate PR for this change first.
+  + Check for unnecessary whitespace with `git diff` -- check before committing.
++ Make sure you have added the necessary tests for your changes, typically in `src/test/java`.
++ Run all the tests with `mvn clean verify` to assure nothing else was accidentally broken.
+
+Making Trivial Changes
+----------------------
+
+The JIRA tickets are used to generate the changelog for the next release.
+
+For changes of a trivial nature to comments and documentation, it is not always necessary to create a new ticket in JIRA.
+In this case, it is appropriate to start the first line of a commit with '(doc)' instead of a ticket number.
+
+
+Submitting Changes
+------------------
+
++ Sign and submit the Apache [Contributor License Agreement][cla] if you haven't already.
+  * Note that small patches & typical bug fixes do not require a CLA as
+    clause 5 of the [Apache License](https://www.apache.org/licenses/LICENSE-2.0.html#contributions)
+    covers them.
++ Push your changes to a topic branch in your fork of the repository.
++ Submit a _Pull Request_ to the corresponding repository in the `apache` organization.
+  * Verify _Files Changed_ shows only your intended changes and does not
+  include additional files like `target/*.class`
++ Update your JIRA ticket and include a link to the pull request in the ticket.
+
+If you prefer to not use GitHub, then you can instead use
+`git format-patch` (or `svn diff`) and attach the patch file to the JIRA issue.
+
+
+Additional Resources
+--------------------
+
++ [Contributing patches](https://commons.apache.org/patches.html)
++ [Apache Commons Geometry JIRA project page][jira]
++ [Contributor License Agreement][cla]
++ [General GitHub documentation](https://help.github.com/)
++ [GitHub pull request documentation](https://help.github.com/articles/creating-a-pull-request/)
++ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons)
++ `#apache-commons` IRC channel on `irc.freenode.net`
+
+[cla]:https://www.apache.org/licenses/#clas
+[jira]:https://issues.apache.org/jira/browse/GEOMETRY

Added: dev/commons/geometry/1.0-RC4/HEADER.html
==============================================================================
--- dev/commons/geometry/1.0-RC4/HEADER.html (added)
+++ dev/commons/geometry/1.0-RC4/HEADER.html Tue Aug 17 02:12:25 2021
@@ -0,0 +1,31 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<h2>Apache Commons Project Distributions</h2>
+
+<p>
+    The most recent source and binary releases for the Apache Commons project are available from this
+    directory listing. For older releases, please use the
+    <a href="https://archive.apache.org/dist/commons/">archives</a>.
+</p>
+
+<h2>Important Notices</h2>
+
+<ul>
+    <li><a href="#mirrors">Download from your nearest mirror site!</a></li>
+    <li><a href="#sig">PGP/GPG Signatures</a></li>
+</ul>
+

Added: dev/commons/geometry/1.0-RC4/README.html
==============================================================================
--- dev/commons/geometry/1.0-RC4/README.html (added)
+++ dev/commons/geometry/1.0-RC4/README.html Tue Aug 17 02:12:25 2021
@@ -0,0 +1,66 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<h1>Commons-Geometry v1.0</h1>
+
+<p>This is the 1.0 version of commons-geometry. It is available in both binary and source distributions.</p>
+
+
+<p><font color="red" size="+2">Note:</font>
+    The tar files in the distribution use GNU tar extensions
+    and must be untarred with a GNU compatible version of tar. The version
+    of tar on Solaris and Mac OS X will not work with these files</p>
+
+<a name="changes"><h2>Changes</h2></a>
+
+<p>The changes in this release are detailed in the release notes.</p>
+
+<p>Thank you for using <a href="https://commons.apache.org/proper/commons-geometry/">Commons Geometry</a>.</p>
+
+<p>From the Apache Commons Project<br><a href="https://commons.apache.org/">https://commons.apache.org/</a></p>
+
+<h2><a name="mirrors">Download from your
+    <a href="http://www.apache.org/dyn/closer.cgi/commons/">nearest mirror site!</a></a></h2>
+
+<p>
+    Do not download from www.apache.org.  Please use a mirror site
+    to help us save apache.org bandwidth.
+    <a href="http://www.apache.org/dyn/closer.cgi/commons/">Go
+        here to find your nearest mirror.</a>
+</p>
+
+<a name="sig"><h2>Signatures</h2></a>
+
+<p>Many of the files have been digitally signed using GnuPG.  If so,
+    there will be an accompanying <samp><em>file</em>.asc</samp> signature
+    file in the same directory as the file (binaries/ or source/).  The
+    signing keys can be found in the distribution directory at &lt;<a
+            HREF="http://www.apache.org/dist/commons/KEYS"><samp>http://www.apache.org/dist/commons/KEYS</samp></a>&gt;.</p>
+
+<p><b>Always download the KEYS file directly from the Apache site, never from a mirror site.</b></p>
+
+
+<pre>Always test available signatures, <i>e.g.</i>,
+$ pgpk -a KEYS
+$ pgpv commons-geometry-1.0-bin.tar.gz.asc
+or,
+$ pgp -ka KEYS
+$ pgp commons-geometry-1.0-bin.tar.gz.asc
+or,
+$ gpg --import KEYS
+$ gpg --verify commons-geometry-1.0-bin.tar.gz.asc
+</pre>
+<p>
\ No newline at end of file

Added: dev/commons/geometry/1.0-RC4/RELEASE-NOTES.txt
==============================================================================
--- dev/commons/geometry/1.0-RC4/RELEASE-NOTES.txt (added)
+++ dev/commons/geometry/1.0-RC4/RELEASE-NOTES.txt Tue Aug 17 02:12:25 2021
@@ -0,0 +1,78 @@
+
+              Apache Commons Geometry 1.0 RELEASE NOTES
+
+The Apache Commons Geometry team is pleased to announce the release of
+commons-geometry-parent-1.0
+
+The Apache Commons Geometry project provides geometric types and utilities.
+
+This is the first major release of Apache Commons Geometry.
+Apache Commons Geometry 1.0 contains the following library modules:
+ commons-geometry-core (requires Java 8+)
+ commons-geometry-euclidean (requires Java 8+)
+ commons-geometry-spherical (requires Java 8+)
+ commons-geometry-io-core (requires Java 8+)
+ commons-geometry-io-euclidean (requires Java 8+)
+
+Changes in this version include:
+
+New features:
+o GEOMETRY-118:  Add coordinate-specific transform methods to AffineTransformMatrixXD classes,
+        e.g. "applyX", "applyY", "applyZ".
+o GEOMETRY-95:  Add solid geometry tutorial.
+o GEOMETRY-120:  Add SimpleTriangleMeshBuilder.addFace(int[]) method as alternative to
+        addFace(int, int, int).
+o GEOMETRY-117:  Add shear methods to AffineTransformMatrix2D. Thanks to Christoph Läubrich.
+o GEOMETRY-119:  Add VectorXD.normalizeOrNull() methods so that callers can detect normalization
+        failures without needing to catch an exception.
+o GEOMETRY-115:  Add modules for IO functionality: commons-geometry-io-core,
+        commons-geometry-io-euclidean.
+o GEOMETRY-108:  Add BoundaryList interface and implementation classes.
+
+Fixed Bugs:
+o GEOMETRY-116:  Fix incorrect OSGi headers. Reported by Christoph Läubrich.
+
+Changes:
+o GEOMETRY-138:  Do not use checked exceptions in IO modules.
+o GEOMETRY-13:  Use Norms.EUCLIDEAN from Commons Numbers to compute 3D Euclidean norm values.
+o GEOMETRY-126:  Replace VectorXD.linearCombination methods with VectorXD.Sum classes. Use
+        Sum class from Commons Numbers for computing internal linear combinations.
+o GEOMETRY-124:  Replace DoublePrecisionContext with Precision.DoubleEquivalence from
+        Commons Numbers.
+o GEOMETRY-109:  Rename the BoundarySourceXX.from() static factory methods to "of" to better
+        match the JDK's Stream.of() method.
+o GEOMETRY-103:  Migrate unit tests to JUnit 5. Thanks to Arturo Bernal.
+
+
+For complete information on Apache Commons Geometry, including instructions on how to submit
+        bug reports, patches, or suggestions for improvement, see the Apache Commons Geometry
+        website:
+
+https://commons.apache.org/proper/commons-geometry/
+
+
+=============================================================================
+
+              Apache Commons Geometry 1.0-beta1 RELEASE NOTES
+
+The Apache Commons Geometry team is pleased to announce the release of
+Apache Commons Geometry 1.0-beta1
+
+The Apache Commons Geometry project provides geometric types and utilities.
+
+This is a beta release of Apache Commons Geometry. No guarantees are made regarding the stability
+of the API or compatibility with future releases.
+
+Apache Commons Geometry 1.0-beta1 contains the following library modules:
+ commons-geometry-core (requires Java 8+)
+ commons-geometry-euclidean (requires Java 8+)
+ commons-geometry-spherical (requires Java 8+)
+ commons-geometry-hull (requires Java 8+)
+ commons-geometry-enclosing (requires Java 8+)
+
+No changes defined in this version.
+
+For complete information on Apache Commons Geometry, including instructions on how to submit bug
+reports, patches, or suggestions for improvement, see the Apache Commons Geometry website:
+
+https://commons.apache.org/proper/commons-geometry/

Added: dev/commons/geometry/1.0-RC4/binaries/HEADER.html
==============================================================================
--- dev/commons/geometry/1.0-RC4/binaries/HEADER.html (added)
+++ dev/commons/geometry/1.0-RC4/binaries/HEADER.html Tue Aug 17 02:12:25 2021
@@ -0,0 +1,31 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<h2>Apache Commons Project Distributions</h2>
+
+<p>
+    The most recent source and binary releases for the Apache Commons project are available from this
+    directory listing. For older releases, please use the
+    <a href="https://archive.apache.org/dist/commons/">archives</a>.
+</p>
+
+<h2>Important Notices</h2>
+
+<ul>
+    <li><a href="#mirrors">Download from your nearest mirror site!</a></li>
+    <li><a href="#sig">PGP/GPG Signatures</a></li>
+</ul>
+

Added: dev/commons/geometry/1.0-RC4/binaries/README.html
==============================================================================
--- dev/commons/geometry/1.0-RC4/binaries/README.html (added)
+++ dev/commons/geometry/1.0-RC4/binaries/README.html Tue Aug 17 02:12:25 2021
@@ -0,0 +1,66 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<h1>Commons-Geometry v1.0</h1>
+
+<p>This is the 1.0 version of commons-geometry. It is available in both binary and source distributions.</p>
+
+
+<p><font color="red" size="+2">Note:</font>
+    The tar files in the distribution use GNU tar extensions
+    and must be untarred with a GNU compatible version of tar. The version
+    of tar on Solaris and Mac OS X will not work with these files</p>
+
+<a name="changes"><h2>Changes</h2></a>
+
+<p>The changes in this release are detailed in the release notes.</p>
+
+<p>Thank you for using <a href="https://commons.apache.org/proper/commons-geometry/">Commons Geometry</a>.</p>
+
+<p>From the Apache Commons Project<br><a href="https://commons.apache.org/">https://commons.apache.org/</a></p>
+
+<h2><a name="mirrors">Download from your
+    <a href="http://www.apache.org/dyn/closer.cgi/commons/">nearest mirror site!</a></a></h2>
+
+<p>
+    Do not download from www.apache.org.  Please use a mirror site
+    to help us save apache.org bandwidth.
+    <a href="http://www.apache.org/dyn/closer.cgi/commons/">Go
+        here to find your nearest mirror.</a>
+</p>
+
+<a name="sig"><h2>Signatures</h2></a>
+
+<p>Many of the files have been digitally signed using GnuPG.  If so,
+    there will be an accompanying <samp><em>file</em>.asc</samp> signature
+    file in the same directory as the file (binaries/ or source/).  The
+    signing keys can be found in the distribution directory at &lt;<a
+            HREF="http://www.apache.org/dist/commons/KEYS"><samp>http://www.apache.org/dist/commons/KEYS</samp></a>&gt;.</p>
+
+<p><b>Always download the KEYS file directly from the Apache site, never from a mirror site.</b></p>
+
+
+<pre>Always test available signatures, <i>e.g.</i>,
+$ pgpk -a KEYS
+$ pgpv commons-geometry-1.0-bin.tar.gz.asc
+or,
+$ pgp -ka KEYS
+$ pgp commons-geometry-1.0-bin.tar.gz.asc
+or,
+$ gpg --import KEYS
+$ gpg --verify commons-geometry-1.0-bin.tar.gz.asc
+</pre>
+<p>
\ No newline at end of file

Added: dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.tar.gz.asc
==============================================================================
--- dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.tar.gz.asc (added)
+++ dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.tar.gz.asc Tue Aug 17 02:12:25 2021
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQHMBAABCgA2FiEEfdU67+3xw9OStR6+NG9Pzs+3CxoFAmEbFk8YHG1hdHRqdW50
+dW5lbkBhcGFjaGUub3JnAAoJEDRvT87PtwsaN3AL/1LYAmS5GPB9vDR2CtK7CuOe
+lEaScevdXBDvpV7kziJn1Z9W/jHjQ1PriqB672/il8Xt3qx0O7eXogFFxWI+/dZB
+3u/Ew0YVaJeYy8dRPEuH8BMDpjfefThCfE4BQyEe2cM3xTRuBSs5FOYHqi/nJe47
+jVArhqeuATZc9OTKSZ0/cEW4O0Nz0Y5hlOtBERGDDcabBeeuYusbalWBkG7fwdhJ
+ugC8sw4IktHz8Y9T9L0nehD+WdwI7gKG0sCTLYt6HRBfn7bfFvKgrOtFeH0HTKZy
+FmQMg+qh2IWvB+xpISQvGFWw5e2W9o+Z+3lkA9oH1Th9LF6WiWcYWmjQOkIKk+M8
+3WvTZZ2chc52HsIATxX37F1z82U6lewwcPfyDnmYjsrKUh58DD6U3k1vHXmW49I0
+DQRjKoTOnt3eJevYXEvkAEngyyYon9bz6sbCteLlRJqHca4+7PfB35ngW+HPob82
+XLyx8gECuLoRGMywrBFzUyCZv9gIyJvT+hvKM3xFwQ==
+=NuDa
+-----END PGP SIGNATURE-----

Added: dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.tar.gz.sha512
==============================================================================
--- dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.tar.gz.sha512 (added)
+++ dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.tar.gz.sha512 Tue Aug 17 02:12:25 2021
@@ -0,0 +1 @@
+b170b25f0c4c7837a51c8c3b37aa970c755c5610b16e6afa82f4cfea6dfa14f347366932e4e0ded921150ad4ad349f1d16661934925da6ece7253599fbd90cf0 *commons-geometry-1.0-bin.tar.gz

Added: dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.zip.asc
==============================================================================
--- dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.zip.asc (added)
+++ dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.zip.asc Tue Aug 17 02:12:25 2021
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQHMBAABCgA2FiEEfdU67+3xw9OStR6+NG9Pzs+3CxoFAmEbFlAYHG1hdHRqdW50
+dW5lbkBhcGFjaGUub3JnAAoJEDRvT87PtwsaNh4L/AlXKRcuxZbmKw4W9uP7pGcr
+Ja4rnVNJTudd8bRVjEQN7zv1xFVYzlYRaMSuteCDdTXbjpIQqNG7CTWDemRzxECS
+xnL/K2lXMKiRoKvQ5x3ErIsGwSSepA/F+DNn7SHb1OQsXhLGCwC439ItpXQHVYxk
+RXPWOB36rYVaXlISH59GDTAwrKGwqcGk7aNm3coOS/yKo5oh61VhUgX4OI0NUNoO
+zyFExqco2eg6nm7M1EiXdjbZt9MEUB+dj8uN4XsQ5CMWGCLgqa6qyPgrhAXSp3Jt
+5YWItezp+C8WGfRxW5ptSt0JQ1SHwG7cnKWuOI1GN62MjEqGeG3eT6J13H1nvc2G
+K91O+xgYb66p+udN/J33S6EniUa4XvNLEhIlzzzKZRja9mgjWNTUQEJz/KaUyRMF
+SKZ2fzOx6qedBmwUPptnSZqH8YXppUGEWuy3nfYc0kY+kZGhQX9kVF+3gBvsm/bL
+RHj+CFS6OoCNTOHqraG9T0EjavaO9HCImoTutKla/Q==
+=fNE9
+-----END PGP SIGNATURE-----

Added: dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.zip.sha512
==============================================================================
--- dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.zip.sha512 (added)
+++ dev/commons/geometry/1.0-RC4/binaries/commons-geometry-1.0-bin.zip.sha512 Tue Aug 17 02:12:25 2021
@@ -0,0 +1 @@
+3a1c4de02f684d9837ee3284b3a35bac2369d3ea9994354218bcc0d3480330c174054b536dc02104b55a3dadee91c56a66742dd830f19dbdee5f765faf1ec596 *commons-geometry-1.0-bin.zip

Added: dev/commons/geometry/1.0-RC4/source/HEADER.html
==============================================================================
--- dev/commons/geometry/1.0-RC4/source/HEADER.html (added)
+++ dev/commons/geometry/1.0-RC4/source/HEADER.html Tue Aug 17 02:12:25 2021
@@ -0,0 +1,31 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<h2>Apache Commons Project Distributions</h2>
+
+<p>
+    The most recent source and binary releases for the Apache Commons project are available from this
+    directory listing. For older releases, please use the
+    <a href="https://archive.apache.org/dist/commons/">archives</a>.
+</p>
+
+<h2>Important Notices</h2>
+
+<ul>
+    <li><a href="#mirrors">Download from your nearest mirror site!</a></li>
+    <li><a href="#sig">PGP/GPG Signatures</a></li>
+</ul>
+

Added: dev/commons/geometry/1.0-RC4/source/README.html
==============================================================================
--- dev/commons/geometry/1.0-RC4/source/README.html (added)
+++ dev/commons/geometry/1.0-RC4/source/README.html Tue Aug 17 02:12:25 2021
@@ -0,0 +1,66 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<h1>Commons-Geometry v1.0</h1>
+
+<p>This is the 1.0 version of commons-geometry. It is available in both binary and source distributions.</p>
+
+
+<p><font color="red" size="+2">Note:</font>
+    The tar files in the distribution use GNU tar extensions
+    and must be untarred with a GNU compatible version of tar. The version
+    of tar on Solaris and Mac OS X will not work with these files</p>
+
+<a name="changes"><h2>Changes</h2></a>
+
+<p>The changes in this release are detailed in the release notes.</p>
+
+<p>Thank you for using <a href="https://commons.apache.org/proper/commons-geometry/">Commons Geometry</a>.</p>
+
+<p>From the Apache Commons Project<br><a href="https://commons.apache.org/">https://commons.apache.org/</a></p>
+
+<h2><a name="mirrors">Download from your
+    <a href="http://www.apache.org/dyn/closer.cgi/commons/">nearest mirror site!</a></a></h2>
+
+<p>
+    Do not download from www.apache.org.  Please use a mirror site
+    to help us save apache.org bandwidth.
+    <a href="http://www.apache.org/dyn/closer.cgi/commons/">Go
+        here to find your nearest mirror.</a>
+</p>
+
+<a name="sig"><h2>Signatures</h2></a>
+
+<p>Many of the files have been digitally signed using GnuPG.  If so,
+    there will be an accompanying <samp><em>file</em>.asc</samp> signature
+    file in the same directory as the file (binaries/ or source/).  The
+    signing keys can be found in the distribution directory at &lt;<a
+            HREF="http://www.apache.org/dist/commons/KEYS"><samp>http://www.apache.org/dist/commons/KEYS</samp></a>&gt;.</p>
+
+<p><b>Always download the KEYS file directly from the Apache site, never from a mirror site.</b></p>
+
+
+<pre>Always test available signatures, <i>e.g.</i>,
+$ pgpk -a KEYS
+$ pgpv commons-geometry-1.0-bin.tar.gz.asc
+or,
+$ pgp -ka KEYS
+$ pgp commons-geometry-1.0-bin.tar.gz.asc
+or,
+$ gpg --import KEYS
+$ gpg --verify commons-geometry-1.0-bin.tar.gz.asc
+</pre>
+<p>
\ No newline at end of file

Added: dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.tar.gz.asc
==============================================================================
--- dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.tar.gz.asc (added)
+++ dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.tar.gz.asc Tue Aug 17 02:12:25 2021
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQHMBAABCgA2FiEEfdU67+3xw9OStR6+NG9Pzs+3CxoFAmEbFlEYHG1hdHRqdW50
+dW5lbkBhcGFjaGUub3JnAAoJEDRvT87PtwsaipQL/jGYJC8OYIGI/Y6/52Zgx6Yw
+VMITq/Mv/5gwQTiKQeAoqQFeWAH9LSUEtHEJAjd13hJBlYWEW7FPFlI55zRESO7b
+9wNUB9tWoUVh6WLM2q6vBwaO/NiqQ8HLTtIjUAsO6TEFvbXn/l8NnKVChNZCj1Ny
+o9QZKk++T2WNPrF9IQMJm38aTspjqGc5tpS8gYg0JPUn3KEoBGxhXmMXCUafu9+z
+d3ZyxD2Vf885NfTUjRySLf3lBHn3KIm8jwiiV3FGEYHRlbnSUR5DGS6YWGMdHAr1
+AsGSC5UouLwzehJzi68nnumhNQOhuHhpr3vOCEX5RJE8BI/KwEBeMp4HFw7cNryh
+DuQYFkfs1+JmkBm6334ocX7Z7UvbbtN2hubymEqUkzn/9f4ionjoUfrm10GOGTHt
+NPBczoOI5FORzpLLOyUCAGRc08oJPy2lWUkM/0ubuNvqrG9dFpPmKjNE0+gPjv29
+x922ccPU/MWv5Ow4cjANtcYJCIGgOAKYhvvL7Fzyfg==
+=/4cs
+-----END PGP SIGNATURE-----

Added: dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.tar.gz.sha512
==============================================================================
--- dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.tar.gz.sha512 (added)
+++ dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.tar.gz.sha512 Tue Aug 17 02:12:25 2021
@@ -0,0 +1 @@
+ad2c89958a3a6278135b2c820bc5c6d97edc49ea8dd119c44c49e764248e068ff0404b04cb620d0f10a7172b69ee0907f39483119c1fcd695ffe58f4c0d3731a *commons-geometry-1.0-src.tar.gz

Added: dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.zip.asc
==============================================================================
--- dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.zip.asc (added)
+++ dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.zip.asc Tue Aug 17 02:12:25 2021
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQHMBAABCgA2FiEEfdU67+3xw9OStR6+NG9Pzs+3CxoFAmEbFlEYHG1hdHRqdW50
+dW5lbkBhcGFjaGUub3JnAAoJEDRvT87PtwsaI6gL/3FNM2Wf65zxybg+ccOTIsJF
+Gc0++2HOAWzSkylpKXgyPhQbIWNyc1M6iufUypOseVWHEdadraXJeFxZnduItbR1
+4SD3ubRwCFIuwoDropstGNeVdGPTSndN8uOk0sZ2Gx/t+zhaYj1mVQVGAv7IK/8c
+4ayh0TB7ZZ3Ij+cV4pVVTGT1qeLPwpyh8Sse4cA2F7IcVz7MsQwfaOzW/wveVj3T
++rsMU1lqMAHuRqfQYaxm1OtU7PzkPmPzbmeLPS7gn1BEmZFKmwl3F4V+YL5Eovq2
+ThqTqHxn5tNjG0yH1g+ac4pftL39PzVn6A4B7XPxwrvGXlB8Z5fT8Oe40p+fjSky
+XnU5RW9bVsoRlonr9IZfJmmRcjeWIccjg6l7AMNVKT8krW1eOSK7M3vKFnAotl86
+xXwS5dv9Vss+UosU40VPwnaribfqC3RgxheP7TsTJB4GSXF3OarMBDPIzXf7yVJi
+4rFrjLhMnBjAjushWHrEt7NueoHkzFsYentQJS1y3g==
+=WH0G
+-----END PGP SIGNATURE-----

Added: dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.zip.sha512
==============================================================================
--- dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.zip.sha512 (added)
+++ dev/commons/geometry/1.0-RC4/source/commons-geometry-1.0-src.zip.sha512 Tue Aug 17 02:12:25 2021
@@ -0,0 +1 @@
+45c467545a84347b89319077c5c1221a5e908894a32f61f713909b2905d006de89cf4a73dc99b29b31c01c2fa28a73f71bd4ff4d530f2264a06c6a118a02b8ad *commons-geometry-1.0-src.zip