You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2016/09/16 21:14:32 UTC

svn commit: r15377 - in /dev/commons/rng: ./ binaries/ source/

Author: erans
Date: Fri Sep 16 21:14:31 2016
New Revision: 15377

Log:
Distribution files for Commons RNG v1.0 (RC2).

Added:
    dev/commons/rng/CONTRIBUTING.md
    dev/commons/rng/README.md
Modified:
    dev/commons/rng/binaries/commons-rng-1.0-bin.tar.gz
    dev/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.asc
    dev/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.md5
    dev/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.sha1
    dev/commons/rng/binaries/commons-rng-1.0-bin.zip
    dev/commons/rng/binaries/commons-rng-1.0-bin.zip.asc
    dev/commons/rng/binaries/commons-rng-1.0-bin.zip.md5
    dev/commons/rng/binaries/commons-rng-1.0-bin.zip.sha1
    dev/commons/rng/source/commons-rng-1.0-src.tar.gz
    dev/commons/rng/source/commons-rng-1.0-src.tar.gz.asc
    dev/commons/rng/source/commons-rng-1.0-src.tar.gz.md5
    dev/commons/rng/source/commons-rng-1.0-src.tar.gz.sha1
    dev/commons/rng/source/commons-rng-1.0-src.zip
    dev/commons/rng/source/commons-rng-1.0-src.zip.asc
    dev/commons/rng/source/commons-rng-1.0-src.zip.md5
    dev/commons/rng/source/commons-rng-1.0-src.zip.sha1

Added: dev/commons/rng/CONTRIBUTING.md
==============================================================================
--- dev/commons/rng/CONTRIBUTING.md (added)
+++ dev/commons/rng/CONTRIBUTING.md Fri Sep 16 21:14:31 2016
@@ -0,0 +1,102 @@
+<!---
+ 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: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>RNG</commons.jira.id>                           |
+ |  </properties>                                                       |
+ |                                                                      |
+ +======================================================================+
+--->
+Contributing to Apache Commons Rng
+======================
+
+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 you're 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 Rng's scope.
++ Submit a ticket 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.
++ Fork the repository on GitHub.
+
+Making Changes
+--------------
+
++ Create a topic branch from where you want to base your work (this is usually the develop/trunk branch).
++ Make commits of logical units.
++ 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.
+  + Check for unnecessary whitespace with git diff --check before committing.
++ Topic branch names should directly correspond to the JIRA issues they are intended to resolve. For example branch names should look like:
+  + `improvement-RNG-852`
+  + `bug-RNG-1329`
+  + `feature-RNG-621`
++ Make sure your commit messages are in the proper format. Your commit message should contain the key of the JIRA issue.
+  + For example, a commit message might look like `RNG-852: Adding documentation for development`
++ Make sure you have added the necessary tests for your changes.
++ Run all the tests with `mvn clean verify` to assure nothing else was accidentally broken.
+
+Making Trivial Changes
+----------------------
+
+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 the [Contributor License Agreement][cla] if you haven't already.
++ Push your changes to a topic branch in your fork of the repository.
++ Submit a pull request to the repository in the apache organization.
++ Update your JIRA ticket and include a link to the pull request in the ticket.
+
+Additional Resources
+--------------------
+
++ [Contributing patches](https://commons.apache.org/patches.html)
++ [Apache Commons Rng JIRA project page](https://issues.apache.org/jira/browse/RNG)
++ [Contributor License Agreement][cla]
++ [General GitHub documentation](https://help.github.com/)
++ [GitHub pull request documentation](https://help.github.com/send-pull-requests/)
++ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons)
++ #apachecommons IRC channel on freenode.org
+
+[cla]:https://www.apache.org/licenses/#clas

Added: dev/commons/rng/README.md
==============================================================================
--- dev/commons/rng/README.md (added)
+++ dev/commons/rng/README.md Fri Sep 16 21:14:31 2016
@@ -0,0 +1,103 @@
+<!---
+ 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: readme-md-template.md                                 |
+ | commons-build-plugin/trunk/src/main/resources/commons-xdoc-templates |
+ +======================================================================+
+ |                                                                      |
+ | 1) Re-generate using: mvn commons:readme-md                          |
+ |                                                                      |
+ | 2) Set the following properties in the component's pom:              |
+ |    - commons.componentid (required, alphabetic, lower case)          |
+ |    - commons.release.version (required)                              |
+ |                                                                      |
+ | 3) Example Properties                                                |
+ |                                                                      |
+ |  <properties>                                                        |
+ |    <commons.componentid>rng</commons.componentid>                    |
+ |    <commons.release.version>1.0</commons.release.version>            |
+ |  </properties>                                                       |
+ |                                                                      |
+ +======================================================================+
+--->
+Apache Commons Rng
+===================
+
+[![Build Status](https://travis-ci.org/apache/commons-rng.svg?branch=master)](https://travis-ci.org/apache/commons-rng)
+[![Coverage Status](https://coveralls.io/repos/github/apache/commons-rng/badge.svg?branch=master)](https://coveralls.io/github/apache/commons-rng?branch=master)
+[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-rng/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-rng/)
+[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
+
+The Apache Commons Rng project provides Java implementations of pseudo-random numbers generators.
+
+Documentation
+-------------
+
+More information can be found on the [homepage](https://commons.apache.org/proper/commons-rng).
+The [JavaDoc](https://commons.apache.org/proper/commons-rng/apidocs) can be browsed.
+Questions related to the usage of Apache Commons Rng should be posted to the [user mailing list][ml].
+
+Where can I get the latest release?
+-----------------------------------
+You can download source and binaries from our [download page](https://commons.apache.org/proper/commons-rng/download_rng.cgi).
+
+Alternatively you can pull it from the central Maven repositories:
+
+```xml
+<dependency>
+  <groupId>org.apache.commons</groupId>
+  <artifactId>commons-rng</artifactId>
+  <version>1.0</version>
+</dependency>
+```
+
+Contributing
+------------
+
+We accept PRs via github. The [developer mailing list][ml] is the main channel of communication for contributors.
+There are some guidelines which will make applying PRs easier for us:
++ No tabs! Please use spaces for indentation.
++ Respect the code style.
++ 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.
++ Provide JUnit tests for your changes and make sure your changes don't break any existing tests by running ```mvn clean test```.
+
+If you plan to contribute on a regular basis, please consider filing a [contributor license agreement](https://www.apache.org/licenses/#clas).
+You can learn more about contributing via GitHub in our [contribution guidelines](CONTRIBUTING.md).
+
+License
+-------
+Code is under the [Apache Licence v2](https://www.apache.org/licenses/LICENSE-2.0.txt).
+
+Donations
+---------
+You like Apache Commons Rng? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development.
+
+Additional Resources
+--------------------
+
++ [Apache Commons Homepage](https://commons.apache.org/)
++ [Apache Bugtracker (JIRA)](https://issues.apache.org/jira/)
++ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons)
++ #apachecommons IRC channel on freenode.org
+
+[ml]:https://commons.apache.org/mail-lists.html

Modified: dev/commons/rng/binaries/commons-rng-1.0-bin.tar.gz
==============================================================================
Binary files - no diff available.

Modified: dev/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.asc
==============================================================================
--- dev/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.asc (original)
+++ dev/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.asc Fri Sep 16 21:14:31 2016
@@ -1,17 +1,17 @@
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2
 
-iQIcBAABCAAGBQJX1WEqAAoJEHA0EwEeItW4oPEP/06W+EQpCUH+8Y/VLzZ+z+Ts
-RxtqlaaGzSwF6uoovWyKZ3SKPb3oePtJLBZbCFcWKlpC6yCH1AC5Gho7g0vea9/J
-FRPOabDAhIFm0I3jX+v0OQRI4MjRnPZsLV8JimkcXOp8gIGGYjbxOvImhIZKVm/9
-GgQsCK4qrBTndYBazOjYJnEjm7P2swftcfpcYWkEuPTHcfTipn+iZfXj4LOEG+LG
-jXwSmyfBqRtC4uLKBtNgIdN2Pj3J797Ap7ynMzIcG8UadBsizphxD14VALBwY+8A
-YGpqvWWFjqCCV80WUgI4DLPujLEam5PDKKhOMcnO5pBicYKnh+HIf21zhhfTsuET
-NZHRwx6mFZ2HhMP6rTHx4237mKm0qKnO+IzRmqHd81A2ERGY/qcPMQEo04ucOT8N
-GV4Eebsye1XGVz693g5BSh4CYpbJKp+NUJ9697r9OHfZmL2L0TX23/vuNWHGU68U
-kRauJ3Ixv40gDddOcWtU3/SLP8YERGfxXUDtZH6m92yBC2PPlBpRKhCvDlqmqX1n
-f/BupQCEDBpmVQu0jU2NoBF3fja1IZSxo70l/Lu9aEV+sX/B/L1xffq1hsKqb1yg
-1RoHkeuW56nSGxJmzRoc7KiWoYD88fqHuRhtwv+9pgVZAcmKCaUzQ8wdFcVfQHLD
-8LKnE0ttx2Z5VtXjSkAZ
-=gzsH
+iQIcBAABCAAGBQJX3F3SAAoJEHA0EwEeItW4GQAQAMw7M/vGmCZpDJC59GVr9GIm
+Kgsdn3j+/kEt/J5XN5GSpnInmrLV7zwjKRWypu7xRo2CoR0+A4/aJthLpSNK/EeQ
+wY2Cma2y7AXKWiCFrkm30/R/dXl8z/a4QyCTVGlxeajxFefJN/w1V/gEfeixoEqu
+q1ZL9oMgV6zNX9uM5KLdQPIxVkKHPjgXwi3p3uvA/i4PE/yzPdj17lJSrw/TOdgV
+8gwUQ9jbkznDgofb6hOzIX2THxkJ1sq51E0mukwmZ1nkOl9MNxtL2OjqFn+vWtE/
+jyJbTeT+sb1b4g7MD5gtjOAa03YxmbKdRjrGPSab2no1vaUZ9IbN9gnjYBPhp4ng
+PW90PbcfDiTjgz3n7F4x0sEIr3q1mOtQnfMp1wcqGXpNAD5NI96S4kn72MDzZAHa
+SNLxJOQBPR8FlvHrmp6Vmu1etkH0LkQ+4R10AHAiV+B2ekNVReILdMjnOA/Z8S9F
+s4k2flcuaolt37b1olV0nQGUfrZYbUUtRzSJsdODBLluzWnNHZGCDSKV9LBkdv8c
+BVnyfDuNbO2LPbHBdv7NDvivSr4LC9MNSXRPXDbqxNDVySPMIBQO3L3P8tGXeFTn
+g+M3HwzkH82lxT87uXpviRlVzQcsulkBymoyFik4DzfW/pPvLN7qk+SNzo1HQ0lg
+wGlrUUxfXlT8JScE/ClE
+=0OpA
 -----END PGP SIGNATURE-----

Modified: dev/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.md5
==============================================================================
--- dev/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.md5 (original)
+++ dev/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.md5 Fri Sep 16 21:14:31 2016
@@ -1 +1 @@
-bba8721629758581a5c1415bebae5da7
\ No newline at end of file
+c4b14a68915a108e483689af58f7c1b9
\ No newline at end of file

Modified: dev/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.sha1
==============================================================================
--- dev/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.sha1 (original)
+++ dev/commons/rng/binaries/commons-rng-1.0-bin.tar.gz.sha1 Fri Sep 16 21:14:31 2016
@@ -1 +1 @@
-a221e862c8ff970a9ca3e7fbd86c3200d1f8780a
\ No newline at end of file
+eb947802b687835983803147cfc0e51be97ae521
\ No newline at end of file

Modified: dev/commons/rng/binaries/commons-rng-1.0-bin.zip
==============================================================================
Binary files - no diff available.

Modified: dev/commons/rng/binaries/commons-rng-1.0-bin.zip.asc
==============================================================================
--- dev/commons/rng/binaries/commons-rng-1.0-bin.zip.asc (original)
+++ dev/commons/rng/binaries/commons-rng-1.0-bin.zip.asc Fri Sep 16 21:14:31 2016
@@ -1,17 +1,17 @@
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2
 
-iQIcBAABCAAGBQJX1WEqAAoJEHA0EwEeItW4HswQAKxvBsGC0Ii7WyH2rYPIx8m5
-X08qBztPiW/Z6Q3cl05x+3661pIB9AKPwcbnU/DdVBeRN63Qs8lnkqiqkhFGQwhA
-Pv3CBl+IOLViULHCbolHVl8tG1/xXKQfskRn+KDpCOZwDfp+FYh63ri6BGbul/Dn
-mJaU/H01ZLv88mkwizqpJSOxpEEfbW7UyAZnEhKbFFecvKY63urw+7/Hd3EUL5UY
-iJNTNOuw1kBtC6V77CNfB4uXfUO+HNZfnkAVy8wckQL/bZJT2hNE8KB5+RwPh6Nw
-dH4l7ZVwjmQrIiHNFT0IW+cVdkgsKPW55Y8rQnfWNYpkMQmXiVfX86CKzrwyFXZO
-eSedT0nKDGgwOQ+OfAaRMRFBu1GIg8+784s4C0xU6czLA5WFGsGFNtqGVeN8im4X
-xAiO5TUDKIBJNS8KqjC6wg1ieIDb2udA2SiJtT0RXFS57rJ5mW9b2x8j5GbGvrng
-tV2jbAzFmw+A0WlGAHOYlS46QyAfnmNbH/RmmZNJnVQTRVOZVLO0jC6btZmp8nsF
-J7e5cHoyECYVfuIUeXqsBmcL0eQ9A7A5Kb+Q9iKFqhc8Zl5IorTViGTs2gq1RnF2
-WFkdkf84epbVM1SjcCVB8ty09Bdjq1zJTfan9GQWhMVM5cXCaEGibdlB9SdlMaaH
-491qmZnsw4jYwdtrGf77
-=wJ+L
+iQIcBAABCAAGBQJX3F3TAAoJEHA0EwEeItW4EIgP/j+oq1jSGerNLub3GzRWus3j
+ilj1Dwg5UVvekCgK5nbymltjTjK5GKsZ8TQNItFnIsbJEGk9edvjdTM8eYOLk1Ry
+7ZcmABHKQW0N0YPAraeV9pW5Czaytks1pUVkk0DPTTOrh8Zkn6bhOfGxOODFTnAX
+OgHXcwe/TzLBM62Rg/X6qmAKSOOWvANKacAHF1Z8+Mi92dVlkXlyMSFxe/jvcAAE
+C3rWBkaYabMtUyFVi22Jjm5PGPmo5MmEPMnfUo9xCV85OtvQiS1ji6U5aTvtxukG
+vkwZ9FYZQ2e3Nf5qN+OZ0TccM5mQgy+u7ieeoO1UU156LLQzufkgiycPFsS/fSLw
+74OB0/9OYB/aShDNgDRM3yn0K+xzKUZBIkS7TaaJdUBIumKEH0/0RvKPTn9QEwoJ
+rvklD1vQxxHOd/fa5ppJbTxFfdN5wCE6XxylnK1qdDS5QCzC6jvyxzsbdtGNseVe
+brWGEk8wVE7xDCCwDC2OPxl9jSEI3osRjzE+0PqHvjNHdLfzZBK5SG2NWg1ca2NU
+d0KKbqYXN/jBGQvPRJDxJwVrLIpGDsyVyzsVk7RLJ2wxQnI/MLZISD+JaNgaDdQz
+MHuBSbOEXo5Xo1knl0LQsmTXBxRH2hC0JP9eYpZlHXW1gC0rbxdyrkuFVQSNWWRz
+LQA0Go+cyVh5JZrkZ1k6
+=8C3t
 -----END PGP SIGNATURE-----

Modified: dev/commons/rng/binaries/commons-rng-1.0-bin.zip.md5
==============================================================================
--- dev/commons/rng/binaries/commons-rng-1.0-bin.zip.md5 (original)
+++ dev/commons/rng/binaries/commons-rng-1.0-bin.zip.md5 Fri Sep 16 21:14:31 2016
@@ -1 +1 @@
-9767a0f740cbec419ded246d41e4620e
\ No newline at end of file
+8220d53096540b641878faec776cfe9b
\ No newline at end of file

Modified: dev/commons/rng/binaries/commons-rng-1.0-bin.zip.sha1
==============================================================================
--- dev/commons/rng/binaries/commons-rng-1.0-bin.zip.sha1 (original)
+++ dev/commons/rng/binaries/commons-rng-1.0-bin.zip.sha1 Fri Sep 16 21:14:31 2016
@@ -1 +1 @@
-689b2bfbdb1856d4f47851d75762aab42057805a
\ No newline at end of file
+200840fb29abd126ce9b046549cff04fda4f151a
\ No newline at end of file

Modified: dev/commons/rng/source/commons-rng-1.0-src.tar.gz
==============================================================================
Binary files - no diff available.

Modified: dev/commons/rng/source/commons-rng-1.0-src.tar.gz.asc
==============================================================================
--- dev/commons/rng/source/commons-rng-1.0-src.tar.gz.asc (original)
+++ dev/commons/rng/source/commons-rng-1.0-src.tar.gz.asc Fri Sep 16 21:14:31 2016
@@ -1,17 +1,17 @@
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2
 
-iQIcBAABCAAGBQJX1WEqAAoJEHA0EwEeItW4L6kQAIpWXrZLsvmriBo1QHAwdL37
-aEXXjPcf9erwXrs2sFzSzGDddEM9an3laPy+vvPemBbqKWwi+SQDolAstTPjv58/
-w6IP3EHJN2Ud09rlxNCqsewHzSkhTjQZS/kVyt89u97YwOfF8jM9qVrlTQ5PRee7
-tHx4QgL7OnnGG3owv56vntL1jbZV1qQpa2wXxsLCTNQeK3VL4KEANlfwMRSTMOpQ
-OjrBMRrLKSnaNytBnuZMAMMlqOemlIFVzCYmWGKmS9AQLFiDvV1G3BkmJKzqc6mg
-m1ZWJWUMxSo/SLNSkcjyfaB3rf93CuIQBJlAmSv4UxeB9sV84vrNW/4mxG0qu6u5
-GX53kDVgp61o7NQMdqaimzbvhn1I8XbHzY1QVbbPgdFfKkscNijPUB0dv9nuoBN+
-4ocMcNm1XnYoa3gr6r045jsOEW3LxXb5RHKzzZB2MZVvT9UVSbSP1QeR9bjQSh+v
-gHxsw7HnMt1kVJonnwqKOENTMBd9V/YeuG94RAnl/V0XZ8xZj5bw7uYRSzWInaFf
-6JsyMup4gOewUmg0mQWFZ+JnXYCul24C2ufHBVnfvCZg2uqa7FYWEFxt/mjdmbCm
-++028pvHwHAaMqY2optTQ0WpCPSEX1Ssna2okFMsVRJYFh8E2nvNivz1Iodkdud9
-0oaQsgLZeh9klF6fwsjf
-=PEfz
+iQIcBAABCAAGBQJX3F3SAAoJEHA0EwEeItW4casP/3CU8g4GFgeL2rmVojw9+ngg
+iQgMOIbmsOUckIqXDtUJ+Z5G+OojVyJk1wAe399E8YCXi3cVCqKq45WmFM13wkDv
+bMLKSYOgNc5PQGLzX1KyFe8B0CP6XJLQTS5FYjb4CmqGn+AgU6mh6ml8uvK6JQXX
+ctI6/2CbeD86wHjn7+dnwuiXhEEH0+I6a7FC3ru5Sc0JFvEZhW9SWGJioiasU4Tv
+UJljINP1MfE4r+zGDXxEgfsh6G/DhbwM2JTLFJTj/j0y+ebERlA2L+QwSRNPwlqn
+DfGS1/R+jB7VG7OZPyiC0prtJdTc2+hMdpb43+IS6TVtMYQHdX0vNKuODubNShdo
+1DBGP7d8YDBcQS6fgGBgWarljh2wds5feuNO+meDr/CDAtuKpHKs6WXL022pCWi2
+AZJubjcGy/10+ndbJFNPhMJ800WS8sGTi1y29hmovbCmxEVfXS0Vre8AzoeISpc7
+Qt8UvIHhUFGOas1J5kEk57BVo+vPcmDfprDQxXV6c2rFkxMXjcYFS3nh0/5H1h+h
+Zs84eSivK+bzO7UjNtzLGc4zs+QfYhHWOzq2JqB29uq4uZB7GHIpCV9AXdfJXcZy
+BYhRra7SE1zp3oU6hQFWLuXnA/lxzTE8BwTGViW7QjetOMO+WMxoA+1yRIb26B/i
+xrxrJVvdLJEJk9Zr9kvB
+=UbBK
 -----END PGP SIGNATURE-----

Modified: dev/commons/rng/source/commons-rng-1.0-src.tar.gz.md5
==============================================================================
--- dev/commons/rng/source/commons-rng-1.0-src.tar.gz.md5 (original)
+++ dev/commons/rng/source/commons-rng-1.0-src.tar.gz.md5 Fri Sep 16 21:14:31 2016
@@ -1 +1 @@
-4c80e2e2328e693409ec8724f4a3e6c6
\ No newline at end of file
+c2241b2796065181418e8dc40c57f83e
\ No newline at end of file

Modified: dev/commons/rng/source/commons-rng-1.0-src.tar.gz.sha1
==============================================================================
--- dev/commons/rng/source/commons-rng-1.0-src.tar.gz.sha1 (original)
+++ dev/commons/rng/source/commons-rng-1.0-src.tar.gz.sha1 Fri Sep 16 21:14:31 2016
@@ -1 +1 @@
-40b7b1639eedf91b5fad5d38e6ebec01e659048f
\ No newline at end of file
+b872f12f68de7d9f929299badf0d0ddcc835bbf3
\ No newline at end of file

Modified: dev/commons/rng/source/commons-rng-1.0-src.zip
==============================================================================
Binary files - no diff available.

Modified: dev/commons/rng/source/commons-rng-1.0-src.zip.asc
==============================================================================
--- dev/commons/rng/source/commons-rng-1.0-src.zip.asc (original)
+++ dev/commons/rng/source/commons-rng-1.0-src.zip.asc Fri Sep 16 21:14:31 2016
@@ -1,17 +1,17 @@
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2
 
-iQIcBAABCAAGBQJX1WEqAAoJEHA0EwEeItW4ImkP/2yFkanAym+JLiRoBcLlAZAC
-iwG3aL9cqDLs0X3bLgsvi7kh3WVuqVNv2BQiXhGIB/+80Syedk3airCw0oMA6oCS
-TsZJY8BXPYRkacS8VO6OK3CQzUewLCc8ukSBQOHFHEM1myc3efNLZgw8QOrPutsC
-T9M7umOTyq5jQr9f1EmbH18RICEqDUxsz+2St0Mm/GdD0Mdk7kTUBWLR2IK4yitD
-BW8YlAl74l8IchFP5ghXtj32ZQpR+r4Kynpp93KLgo+CoWGmNAXz3UAEUvkD+Peb
-B3q/p2TvAS4pqC9XYZ42SBuI4cKbEABNModZW4EJYzYgyCcfYDZY2gvyMxCFfRZz
-s68jJkTq9m6x2dIZdouo/pqkKgSQgO9dt/aeWmL/ZidVM39NeHyorrKH1H7WWHrO
-G5+Gnkd81yuKhT+vOOm0YiZ2KeW9MQ+++hNsyFiF95cqyt3C97L+HgfNXByWP7HJ
-zhyPD3NSkBop8k16N57PVJTHqe1yvCkUoUKyBGk3GZtJij61OnwexlVgS7cbuB0G
-ax0oQqOkCAnAGDoOkiwTLxrLGUzODsAoKB5MR46W+/yCYgfAYLwKPaqMPBH3q+vQ
-j/U/p52tuRzf1ENMxqKeRGg3HdPGi+iqrxxUG8DcDM5TC4cN+KK1i3hBKBFURj1j
-MmRZ8L6Okl1Fq8Cny0e1
-=TJE0
+iQIcBAABCAAGBQJX3F3SAAoJEHA0EwEeItW4GWwP/RYiDkKNZ3a9Eh76JBSZKXZy
+PbYIgdkPAQ2NowuBhgAHSYKSPwMVbgnu+8VRvIEg6rzH1K5BKnqT7r1Vu4Z9Btnb
+9dKTU1Go2ViDZ6tEKuvMX+bCt5N+jKD2QabC9exy7l3+BM4fOc5vlzRRp264jtE3
+/MefIguwb1D80lecAoY4VSrZ7mvZqO4Gl7ZlBVGxg4g4hy1CBbcRFvAyspWfJaDX
+ZQZQO0mxEzujKHNBG4kkltrhZVL+pW7UnMby+AlerK7P477fdB2CXVFPIOvaoIu+
+cOYOgsJQ00Epk6IGiawwy3Jv8/ehKLPqnuLPf2FeNMt8ZDpCjSE7LKKa3dUhztq2
+jTlOBRY6OeCOzzkqkkG8qG0kPrl2U9NqSG7eZ96hmYCpHX/b0XgB+fn3Cm7iHx4E
+IIJmjOb0ITYEWIjQ3UeGc6Pi7l89W9rwseAe+pEs+UcSaqMPWt8ekFDgb75/8rSm
+eSae8gOeOcjqaIPoXGva5++hvX+RYh1u5/eQzWyHj5UfVm+b3tMloP+veXvEXDAg
+YN8HUbVFcrbxwdTZqrXKa8Je8YRaLCCdN1Pap4x1dJmWQwXJXTxlJT06Le9kVfZg
+v+SBR8RqGUMN8x/WsDmRhonEc0T7H80LsN88vJC4lYSI7NautwnaFecI88lnwxq7
+YDreS6RMPRYIugVD3VSj
+=dewM
 -----END PGP SIGNATURE-----

Modified: dev/commons/rng/source/commons-rng-1.0-src.zip.md5
==============================================================================
--- dev/commons/rng/source/commons-rng-1.0-src.zip.md5 (original)
+++ dev/commons/rng/source/commons-rng-1.0-src.zip.md5 Fri Sep 16 21:14:31 2016
@@ -1 +1 @@
-634d7055254d4e08b9f74b48d843f1bc
\ No newline at end of file
+401e169c28fccccbadad8a32bfa19c98
\ No newline at end of file

Modified: dev/commons/rng/source/commons-rng-1.0-src.zip.sha1
==============================================================================
--- dev/commons/rng/source/commons-rng-1.0-src.zip.sha1 (original)
+++ dev/commons/rng/source/commons-rng-1.0-src.zip.sha1 Fri Sep 16 21:14:31 2016
@@ -1 +1 @@
-6296dbabde10169d6365bda99f2af6dcc191e515
\ No newline at end of file
+31e6d6a5973b37904e2646675bd0c9beaa6c301f
\ No newline at end of file