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/12 03:41:20 UTC

svn commit: r49470 - in /dev/commons/geometry: 1.0-beta1-RC3/ 1.0-rc1/ 1.0-rc1/binaries/ 1.0-rc1/source/

Author: mattjuntunen
Date: Thu Aug 12 03:41:20 2021
New Revision: 49470

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

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

Added: dev/commons/geometry/1.0-rc1/CONTRIBUTING.md
==============================================================================
--- dev/commons/geometry/1.0-rc1/CONTRIBUTING.md (added)
+++ dev/commons/geometry/1.0-rc1/CONTRIBUTING.md Thu Aug 12 03:41:20 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-rc1/HEADER.html
==============================================================================
--- dev/commons/geometry/1.0-rc1/HEADER.html (added)
+++ dev/commons/geometry/1.0-rc1/HEADER.html Thu Aug 12 03:41:20 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-rc1/README.html
==============================================================================
--- dev/commons/geometry/1.0-rc1/README.html (added)
+++ dev/commons/geometry/1.0-rc1/README.html Thu Aug 12 03:41:20 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-rc1/RELEASE-NOTES.txt
==============================================================================
--- dev/commons/geometry/1.0-rc1/RELEASE-NOTES.txt (added)
+++ dev/commons/geometry/1.0-rc1/RELEASE-NOTES.txt Thu Aug 12 03:41:20 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-rc1/binaries/HEADER.html
==============================================================================
--- dev/commons/geometry/1.0-rc1/binaries/HEADER.html (added)
+++ dev/commons/geometry/1.0-rc1/binaries/HEADER.html Thu Aug 12 03:41:20 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-rc1/binaries/README.html
==============================================================================
--- dev/commons/geometry/1.0-rc1/binaries/README.html (added)
+++ dev/commons/geometry/1.0-rc1/binaries/README.html Thu Aug 12 03:41:20 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-rc1/binaries/commons-geometry-1.0-bin.tar.gz
==============================================================================
Binary file - no diff available.

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

Added: dev/commons/geometry/1.0-rc1/binaries/commons-geometry-1.0-bin.tar.gz.asc
==============================================================================
--- dev/commons/geometry/1.0-rc1/binaries/commons-geometry-1.0-bin.tar.gz.asc (added)
+++ dev/commons/geometry/1.0-rc1/binaries/commons-geometry-1.0-bin.tar.gz.asc Thu Aug 12 03:41:20 2021
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQHMBAABCgA2FiEEfdU67+3xw9OStR6+NG9Pzs+3CxoFAmEUk38YHG1hdHRqdW50
+dW5lbkBhcGFjaGUub3JnAAoJEDRvT87PtwsaiXEMAJ+C9ec05o512RZ7Ml/8HVTc
+Cb/kiszdd3utpvoxs83T1wyAYzH7cJFdi3d09n225GQ+ra2MOp0Ya2/JXL8QfqZO
+/f7nSMdB9cwY4vUlUXieBIFdue8ZOuKl9RJmQH/0NfqQjlEcmn2VDWgitlahDnYS
+uLPAmq/NKn8VCa3agy2iMB1QJrHUte8j5kBGzcE5xsJp38XJpC6ZoPPlpYh9mUnA
+w2Q797uE9BGjeypHL2Gk15kEQNNQG85jIvEH7h7wETBExFUm6KMzakm1K3Vo40K5
+5RxYDuNgh9829QaSZbUCXlVJAb3qRzYp/dqbNrytmdPicqft3BSCRBz0DIO1ZFKV
+cANAtY2C+Z8OKJjZTABNcrBKud/8i5Vs13v2BBw1VVB8fY7pIfFIIqKhAFeCgJUo
+UTTN5AhB0Nkf2rv738LwEjVZoUV6NoZIcP3ZlzLlLmmk8cRWiM2fp64BsYFVpGm2
+A9lDE7dxPXowKX41fJ/Bw0PNW/IfVlQYVYWnRWZBEw==
+=XxA1
+-----END PGP SIGNATURE-----

Added: dev/commons/geometry/1.0-rc1/binaries/commons-geometry-1.0-bin.tar.gz.sha512
==============================================================================
--- dev/commons/geometry/1.0-rc1/binaries/commons-geometry-1.0-bin.tar.gz.sha512 (added)
+++ dev/commons/geometry/1.0-rc1/binaries/commons-geometry-1.0-bin.tar.gz.sha512 Thu Aug 12 03:41:20 2021
@@ -0,0 +1 @@
+4e8fac99bdc31e9eeef76b614cbbfe7b2ab3db75578f4ab302c7d4b9ec70330c6be0bd8fd5683fd131784eb79b8e5547f954f4e24b3c54d778fc18cea53f49f3 *commons-geometry-1.0-bin.tar.gz

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

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

Added: dev/commons/geometry/1.0-rc1/binaries/commons-geometry-1.0-bin.zip.asc
==============================================================================
--- dev/commons/geometry/1.0-rc1/binaries/commons-geometry-1.0-bin.zip.asc (added)
+++ dev/commons/geometry/1.0-rc1/binaries/commons-geometry-1.0-bin.zip.asc Thu Aug 12 03:41:20 2021
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQHMBAABCgA2FiEEfdU67+3xw9OStR6+NG9Pzs+3CxoFAmEUk38YHG1hdHRqdW50
+dW5lbkBhcGFjaGUub3JnAAoJEDRvT87PtwsaIc8L/A9CldXy9ahYfn3hh5ic2ovp
+B+mU8iFyXSRjyRamTZZpQPbSMufh2040BUpvmf49bdt9LMzB2goYnvqj5yJmmhAw
+DH1+XHozc2JuRxRKPj7dHCbKjQX4EaWCxwQ7Cl9hGd6cv2GkH4Fm8JCi66fMsWgi
+sZUXHWlQU5sUv8gG4vSLz7LeCgsYMFuY6or3yvirwWENYsVkz3q13iZ7ydM13Qfk
+oHRy3I1vCAd6JXmfiIzKZcTvWkvXbh4szfjz6tZz/QfBvEt3QbYoxZxJ2YnumVj6
+u4DphUIpmuROwMZf78Qw9lxgD8sAiDgH+7VMjufOlcq9peK2T84Gbiw0i038Y79K
+rUlA9NnuQIAc3az89SdkRL9G7w8r9WJGwG+El+ZxobXYm6p22SC+aokpzYXMm1tr
+BW2AAzuC46Qfzj3mosUMYzxh3dznwVGJQM7VKm8kbPuTs1Nmh+AfI4dlBqjWaH2Q
+wfcKMQvYvQSinfBxJo5Mzeoh2BqQdPQiMx6IRmC0vA==
+=927+
+-----END PGP SIGNATURE-----

Added: dev/commons/geometry/1.0-rc1/binaries/commons-geometry-1.0-bin.zip.sha512
==============================================================================
--- dev/commons/geometry/1.0-rc1/binaries/commons-geometry-1.0-bin.zip.sha512 (added)
+++ dev/commons/geometry/1.0-rc1/binaries/commons-geometry-1.0-bin.zip.sha512 Thu Aug 12 03:41:20 2021
@@ -0,0 +1 @@
+766a1f6c5b9441c0eed3ae76a4b5c102c708b2b7cd9b3366b1cacdff2fd7d33abb06948cc49b5e80e8af3e06c7eb24b24d26e0c537260955eb97ce8307d505c2 *commons-geometry-1.0-bin.zip

Added: dev/commons/geometry/1.0-rc1/source/HEADER.html
==============================================================================
--- dev/commons/geometry/1.0-rc1/source/HEADER.html (added)
+++ dev/commons/geometry/1.0-rc1/source/HEADER.html Thu Aug 12 03:41:20 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-rc1/source/README.html
==============================================================================
--- dev/commons/geometry/1.0-rc1/source/README.html (added)
+++ dev/commons/geometry/1.0-rc1/source/README.html Thu Aug 12 03:41:20 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-rc1/source/commons-geometry-1.0-src.tar.gz
==============================================================================
Binary file - no diff available.

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

Added: dev/commons/geometry/1.0-rc1/source/commons-geometry-1.0-src.tar.gz.asc
==============================================================================
--- dev/commons/geometry/1.0-rc1/source/commons-geometry-1.0-src.tar.gz.asc (added)
+++ dev/commons/geometry/1.0-rc1/source/commons-geometry-1.0-src.tar.gz.asc Thu Aug 12 03:41:20 2021
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQHMBAABCgA2FiEEfdU67+3xw9OStR6+NG9Pzs+3CxoFAmEUk4AYHG1hdHRqdW50
+dW5lbkBhcGFjaGUub3JnAAoJEDRvT87PtwsaZSUL/RMCXj69ds7lJsTlXZslRCyC
+E6ou7SLaMNy1dbU7YReBGLCD9WxdjJmAY/9VdOx+WQ8FFiDL7i79iYOXTkXCp+Yn
+QoC/mTYmAfl5j+IdZcwLibpliUvg/YpYSb8VOZbaERNCMEDztXUSz/lfO9uNCmZI
+J/aS2YVklxM5Dl2I2W+DFgJDA0hbdKozuXv3Phyo67vqkg1GSm/LqxoYfy/7Hi3y
+gzrdP7pxybKO9cLMOXupcdJkmifrt4Xs8MB7Mxr+vQcKckxwr7E34/m2YaI9xPam
+pHdFGzYpSnx32LMjLk0xuS9E5hbfAyjUIreRgwnL2QHtKDUg/0OBFfwa+wfMmg9W
+7a412EqB92PYwaIP5MMGFhQGAnmzizXAVoUpCvc9us2LmX/by3tzlEqL6rwNbZzA
+2gufRpWVeQv8uZxYArjDYb1EFOfB/XWPAS3qG5QY6C1Q5RVuLefxLTEhG+TEDw+s
+f07h9oUotm8IOfCb+5+Be/JI/bDXI3IvIZdenKGgvg==
+=A2tA
+-----END PGP SIGNATURE-----

Added: dev/commons/geometry/1.0-rc1/source/commons-geometry-1.0-src.tar.gz.sha512
==============================================================================
--- dev/commons/geometry/1.0-rc1/source/commons-geometry-1.0-src.tar.gz.sha512 (added)
+++ dev/commons/geometry/1.0-rc1/source/commons-geometry-1.0-src.tar.gz.sha512 Thu Aug 12 03:41:20 2021
@@ -0,0 +1 @@
+6232b8e88589e85b95e4a31ab89b45af97ec09df71f350d2de56197035f3a9b5cfa9ac1e682282c7417a8ccbb7f31ccefb9c903a38ee4e9ebb796777563cdf28 *commons-geometry-1.0-src.tar.gz

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

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

Added: dev/commons/geometry/1.0-rc1/source/commons-geometry-1.0-src.zip.asc
==============================================================================
--- dev/commons/geometry/1.0-rc1/source/commons-geometry-1.0-src.zip.asc (added)
+++ dev/commons/geometry/1.0-rc1/source/commons-geometry-1.0-src.zip.asc Thu Aug 12 03:41:20 2021
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQHMBAABCgA2FiEEfdU67+3xw9OStR6+NG9Pzs+3CxoFAmEUk4AYHG1hdHRqdW50
+dW5lbkBhcGFjaGUub3JnAAoJEDRvT87PtwsaHz4MAIcXddtm3lD/sSoTELD/vK7+
+wMqPicPxXJ2YwIDUH18a167S5gOGHrqUsuvO0ldkRaSPFHPY4cmSKS0l1Bxb683Y
++MSQHVYFM4KarP9xJeGB+hMGqjuMNCkpKkqm1oigUaX1arfvIlpQW0leyzjfb6dN
+qHnvRXqwTTcCvAb6pV6WPLQeAkQO19XrPaQ75iRRFGGgl3ixQqh5N6DJju5sq6HV
+qNnNuIRCKPijadwAz5T8HFiYkOFaxWBzB6UkJCZroPEEFFRn5EGopjAy7d212E+O
+4SWtk9m8OmvzSnp7ZAK3yJuUmo4O0snWsrJOZ3sQh86d2A3fdnJQ3LKb6DM7R01x
+uXcEzQsR9C9GMUm8RSiuKEcTeiNVGlGdy2nggEzput2Z5wXZ7U1Mj3bcnwLlwBTW
+6JYbbcsb3PzLEPk2ig74E04ceqe/vHH3ymv2b1QvmcAyeodEFhm3hOrQf2v78XMO
+SZpHZ4kz7jmeK6VwzCAPOz8crEjpx1zhHuFTIpItwQ==
+=igE5
+-----END PGP SIGNATURE-----

Added: dev/commons/geometry/1.0-rc1/source/commons-geometry-1.0-src.zip.sha512
==============================================================================
--- dev/commons/geometry/1.0-rc1/source/commons-geometry-1.0-src.zip.sha512 (added)
+++ dev/commons/geometry/1.0-rc1/source/commons-geometry-1.0-src.zip.sha512 Thu Aug 12 03:41:20 2021
@@ -0,0 +1 @@
+5bae090d946e0d43b53108b6e9f3edf07dcff74932ea0f9ec8f5c4b9848ca559c434967fb00b0fc90e287d699e4243f0def5764e3eb5decc1abf4f2ecfefc238 *commons-geometry-1.0-src.zip