Author: mattjuntunen Date: Thu Jul 16 02:30:33 2020 New Revision: 40506 Log: Distribution files for Commons Geometry v1.0-beta1 (RC3)
Added: dev/commons/geometry/1.0-beta1-RC3/ dev/commons/geometry/1.0-beta1-RC3/CONTRIBUTING.md dev/commons/geometry/1.0-beta1-RC3/HEADER.html dev/commons/geometry/1.0-beta1-RC3/README.html dev/commons/geometry/1.0-beta1-RC3/RELEASE-NOTES.txt dev/commons/geometry/1.0-beta1-RC3/binaries/ dev/commons/geometry/1.0-beta1-RC3/binaries/HEADER.html dev/commons/geometry/1.0-beta1-RC3/binaries/README.html dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.tar.gz (with props) dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.tar.gz.asc dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.tar.gz.sha512 dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.zip (with props) dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.zip.asc dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.zip.sha512 dev/commons/geometry/1.0-beta1-RC3/source/ dev/commons/geometry/1.0-beta1-RC3/source/HEADER.html dev/commons/geometry/1.0-beta1-RC3/source/README.html dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.tar.gz (with props) dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.tar.gz.asc dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.tar.gz.sha512 dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.zip (with props) dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.zip.asc dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.zip.sha512 Removed: dev/commons/geometry/1.0-beta1-RC2/ Added: dev/commons/geometry/1.0-beta1-RC3/CONTRIBUTING.md ============================================================================== --- dev/commons/geometry/1.0-beta1-RC3/CONTRIBUTING.md (added) +++ dev/commons/geometry/1.0-beta1-RC3/CONTRIBUTING.md Thu Jul 16 02:30:33 2020 @@ -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-beta1-RC3/HEADER.html ============================================================================== --- dev/commons/geometry/1.0-beta1-RC3/HEADER.html (added) +++ dev/commons/geometry/1.0-beta1-RC3/HEADER.html Thu Jul 16 02:30:33 2020 @@ -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-beta1-RC3/README.html ============================================================================== --- dev/commons/geometry/1.0-beta1-RC3/README.html (added) +++ dev/commons/geometry/1.0-beta1-RC3/README.html Thu Jul 16 02:30:33 2020 @@ -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-beta1</h1> + +<p>This is the 1.0-beta1 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 <<a + HREF="http://www.apache.org/dist/commons/KEYS"><samp>http://www.apache.org/dist/commons/KEYS</samp></a>>.</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-beta1-bin.tar.gz.asc +or, +$ pgp -ka KEYS +$ pgp commons-geometry-1.0-beta1-bin.tar.gz.asc +or, +$ gpg --import KEYS +$ gpg --verify commons-geometry-1.0-beta1-bin.tar.gz.asc +</pre> +<p> \ No newline at end of file Added: dev/commons/geometry/1.0-beta1-RC3/RELEASE-NOTES.txt ============================================================================== --- dev/commons/geometry/1.0-beta1-RC3/RELEASE-NOTES.txt (added) +++ dev/commons/geometry/1.0-beta1-RC3/RELEASE-NOTES.txt Thu Jul 16 02:30:33 2020 @@ -0,0 +1,26 @@ + + 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-beta1-RC3/binaries/HEADER.html ============================================================================== --- dev/commons/geometry/1.0-beta1-RC3/binaries/HEADER.html (added) +++ dev/commons/geometry/1.0-beta1-RC3/binaries/HEADER.html Thu Jul 16 02:30:33 2020 @@ -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-beta1-RC3/binaries/README.html ============================================================================== --- dev/commons/geometry/1.0-beta1-RC3/binaries/README.html (added) +++ dev/commons/geometry/1.0-beta1-RC3/binaries/README.html Thu Jul 16 02:30:33 2020 @@ -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-beta1</h1> + +<p>This is the 1.0-beta1 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 <<a + HREF="http://www.apache.org/dist/commons/KEYS"><samp>http://www.apache.org/dist/commons/KEYS</samp></a>>.</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-beta1-bin.tar.gz.asc +or, +$ pgp -ka KEYS +$ pgp commons-geometry-1.0-beta1-bin.tar.gz.asc +or, +$ gpg --import KEYS +$ gpg --verify commons-geometry-1.0-beta1-bin.tar.gz.asc +</pre> +<p> \ No newline at end of file Added: dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.tar.gz ============================================================================== Binary file - no diff available. Propchange: dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.tar.gz ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.tar.gz.asc ============================================================================== --- dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.tar.gz.asc (added) +++ dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.tar.gz.asc Thu Jul 16 02:30:33 2020 @@ -0,0 +1,14 @@ +-----BEGIN PGP SIGNATURE----- + +iQGzBAABCgAdFiEEfdU67+3xw9OStR6+NG9Pzs+3CxoFAl8PuPAACgkQNG9Pzs+3 +CxoSXwv/UstPnnBcbMuBSNmBw0f+L13aS5M3ujXWytUp2WDwLshwLgSUurMc25LG +wzJ1HrUfHWlgh77A8vTOM8BXaTn1D96dHKANgclp3sOnN7iSFA28poQT4SOPrXFZ +UiDh33Edw15Y05JqEiW2BfSr/0XQhkp46ukcgjdvQJ/aiGBfgW5D2dZoa2aNwaTj +Bixy9NjOv3VURscEVjo+6jHxLGIgNMniMOnTKixWx8rXqTFo4a/zg++LRnIDDHHk +HyTFy3d+ruADOEld75QQsvLUTi1Enp8/OHTpQAx8Z0Xgl2ye5lKCd0qWStVuqrZe +RV1GiGimoDZntX2ywk3h/G90xYNm5oEAs7EBiaSIE5iIDVzZNpqItwSuX4XbXZjb +vOT7oXzYJwbfGOVfjsJQ9us/PEnjoXyq1GK5G51tBfDmxOv3gv7UD50q2DIsYYYw +lIAaBrnVC983rZ6cGm6okx9Th3quXn7t35q50efFNoeffn/qf8tg/vmTVXugwPmQ +bP3LtsMO +=7CYJ +-----END PGP SIGNATURE----- Added: dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.tar.gz.sha512 ============================================================================== --- dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.tar.gz.sha512 (added) +++ dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.tar.gz.sha512 Thu Jul 16 02:30:33 2020 @@ -0,0 +1 @@ +8e63882e065b98c7868b5e336af86f4ef9892984139964d433a3602332c73e50c1c330318c5ebf17c1cd986a2d8070f73ac2d64e031416f6acc050e4ba24b396 commons-geometry-1.0-beta1-bin.tar.gz Added: dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.zip ============================================================================== Binary file - no diff available. Propchange: dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.zip ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.zip.asc ============================================================================== --- dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.zip.asc (added) +++ dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.zip.asc Thu Jul 16 02:30:33 2020 @@ -0,0 +1,14 @@ +-----BEGIN PGP SIGNATURE----- + +iQGzBAABCgAdFiEEfdU67+3xw9OStR6+NG9Pzs+3CxoFAl8PuN0ACgkQNG9Pzs+3 +CxqBsQwAoMM26W4t6qlfBk+Due41K5tpiEkR0r2Iq/v9lma2SRkfo7aG1hGxCbsW +gLTYJF8bfKKyBqikUyB5ENwgJEmvz3J01DHG5rz4/yGJNv9nejbMi2S2B6nAAZbv +06eGj4iIJlpHKY9K4zZwJXh2TF8EZ0OJxVX0yKiNj4Ah1YDfXiIw71YP0/E9hcnq +fPmOidt+cOx535djWoh6SF8zohIQ693pEhPDlWHT0XVnh0XYesJBX0Nde+cilGem +fJrpctVRvmyUFkNsemsv4opScCAZT97LfpLLFscZgQM2YyhmGMb2Vtz3k1RWpmIu +0emjfklDNYrBLC8cRGGeo6Q6n4/o8eQXtwFaM5BRGk9+gz8Xg8WESODaXL+p4u7h +E4RCdh4+J4Awk9NFzvscuE5Iw1keAH5xQlYI1PYOH1av2iyF9rwZ4S5C4SE8Mgk2 +hD0T5UzIxm2ChVwOoIkBvvRy1B3VdwkvN+BrgaDiyrdNtVFukY5B8c+2vTfB9YXN +nGOaDy2B +=wqU0 +-----END PGP SIGNATURE----- Added: dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.zip.sha512 ============================================================================== --- dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.zip.sha512 (added) +++ dev/commons/geometry/1.0-beta1-RC3/binaries/commons-geometry-1.0-beta1-bin.zip.sha512 Thu Jul 16 02:30:33 2020 @@ -0,0 +1 @@ +da33d5a71526d37cc1d2cea922d492d8a398998c976c86641fa91b345220a39bf502674b2315ed7551ef49218e681526adf322ef0f44debdd9b6edf885e8fee0 commons-geometry-1.0-beta1-bin.zip Added: dev/commons/geometry/1.0-beta1-RC3/source/HEADER.html ============================================================================== --- dev/commons/geometry/1.0-beta1-RC3/source/HEADER.html (added) +++ dev/commons/geometry/1.0-beta1-RC3/source/HEADER.html Thu Jul 16 02:30:33 2020 @@ -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-beta1-RC3/source/README.html ============================================================================== --- dev/commons/geometry/1.0-beta1-RC3/source/README.html (added) +++ dev/commons/geometry/1.0-beta1-RC3/source/README.html Thu Jul 16 02:30:33 2020 @@ -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-beta1</h1> + +<p>This is the 1.0-beta1 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 <<a + HREF="http://www.apache.org/dist/commons/KEYS"><samp>http://www.apache.org/dist/commons/KEYS</samp></a>>.</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-beta1-bin.tar.gz.asc +or, +$ pgp -ka KEYS +$ pgp commons-geometry-1.0-beta1-bin.tar.gz.asc +or, +$ gpg --import KEYS +$ gpg --verify commons-geometry-1.0-beta1-bin.tar.gz.asc +</pre> +<p> \ No newline at end of file Added: dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.tar.gz ============================================================================== Binary file - no diff available. Propchange: dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.tar.gz ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.tar.gz.asc ============================================================================== --- dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.tar.gz.asc (added) +++ dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.tar.gz.asc Thu Jul 16 02:30:33 2020 @@ -0,0 +1,14 @@ +-----BEGIN PGP SIGNATURE----- + +iQGzBAABCgAdFiEEfdU67+3xw9OStR6+NG9Pzs+3CxoFAl8PueoACgkQNG9Pzs+3 +CxpDvwv+L8zc1Me3Mng+TuFVwTGMDzeljEMVKMlTsU1Xw7vY+S9Pg9DhadFUMiIT +E6cwb2x9z15ZcmyP5hTQnlqozzqAzHdrRcCwvulfKSR6RQfP6Hm379hUl5holROb +nzUGTAB3G/it47uI8zLjrTZn9syGVtQKqC/+l/Qxc248tTiesPmtkNEwGQkYPoOZ +6JMKdFTZ/bhB0KyrQ4b3w7Lj/GnSv3PcOrsr7GwGevWbU5jH/AJLn96OgSKQ0Vch +NmusJTafi9Fg5nQ7+2Tm0Q16hk9AoDolbkzzLDDFtB66haxMHgzqb/P1ws5iAWa/ +AJd3vc7skXPfo3oOk5TPkAQT7Lt9pQ5OFjtxw0PR38E5gzt8hRhxbdNbttwFoo3/ +cwaKfD/4q8Yo0UB2gDOQG5Y0GSuO3wDazgZBvxQ6zoFfvHscFjkmmCb0bomLnpIp +XB287JuTUmBdi6aZQah+OHJ2iddfi8YLFol6XVPhnNZspk91uRsZAFSlk6t68C3K +6/Ec9z9z +=FBH6 +-----END PGP SIGNATURE----- Added: dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.tar.gz.sha512 ============================================================================== --- dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.tar.gz.sha512 (added) +++ dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.tar.gz.sha512 Thu Jul 16 02:30:33 2020 @@ -0,0 +1 @@ +7ff83710326aba6c852b717b948a32dc4cb182d440bc0fd15386413fa92986b7fe0b4cca70c691f1088a1e6a1de1b13e9ecb063a042591486513d420f31cba8d commons-geometry-1.0-beta1-src.tar.gz Added: dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.zip ============================================================================== Binary file - no diff available. Propchange: dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.zip ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.zip.asc ============================================================================== --- dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.zip.asc (added) +++ dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.zip.asc Thu Jul 16 02:30:33 2020 @@ -0,0 +1,14 @@ +-----BEGIN PGP SIGNATURE----- + +iQGzBAABCgAdFiEEfdU67+3xw9OStR6+NG9Pzs+3CxoFAl8PueYACgkQNG9Pzs+3 +Cxr3xAv/bIW/VD2m3shJcxwXzX2xt3F+YibewYeQDxR5bHrDgTuonZcj0vs94vft +V2PctYRADuntGp3HaQHRFE+QPGoB0XMJALzBz11cRMdR8CaUou6HcBk7kX4UfgkH +PsF1CVnZ0lsuMnSdP5/RfQhWjBRrPAySx+QMIXQrSzPEJlSGFA6QSM7UJCRxafp0 +RlOk/R8d8nmYd5KkMaIXw/1lviM8ldxxuC+2UCMGvVtdeI7YEQeuGJQgHOjU5agF +3VSm//czUKG0auwAQ6fWuKV8QidnbhUs18MYZHrV4Wd+tkkk3ocf/PoiDgzOvMBV +l/B/eQkXH6JhyTYR7MdrUnVJzauKBfk8ZgpnXJ1yMw6+4PqlV3uU+XZuFjsRSEfC +QPGWM6uRQiTLh1AaPFD2UuzPwokOyeOSDzqfbiIpbpF/XTF1Vf0VCG2Aa5rTiFCQ +qIZ6JPNH2dAJup7LdyGvjJXHeeTf+arilR7QwEM9hAk6BJDa6WQCOYN95KUB13Yy +WehH2hG2 +=gFh3 +-----END PGP SIGNATURE----- Added: dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.zip.sha512 ============================================================================== --- dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.zip.sha512 (added) +++ dev/commons/geometry/1.0-beta1-RC3/source/commons-geometry-1.0-beta1-src.zip.sha512 Thu Jul 16 02:30:33 2020 @@ -0,0 +1 @@ +eb661af7c5b2dab0b8785d5a63348ec154fa56e2b0577867a9ad8f27d31ee6ba07e537e91386d63f8f299bac4c4cbc39ae7367ac1c70724337e44994bb76e9da commons-geometry-1.0-beta1-src.zip