Date: Wednesday, December 8, 2021 @ 09:34:43 Author: arojas Revision: 1065628
extra2community: Moving bcprov from extra to community Added: bcprov/ bcprov/repos/ bcprov/trunk/ bcprov/trunk/LICENSE.html bcprov/trunk/PKGBUILD --------------+ LICENSE.html | 22 ++++++++++++++++++++++ PKGBUILD | 23 +++++++++++++++++++++++ 2 files changed, 45 insertions(+) Added: bcprov/trunk/LICENSE.html =================================================================== --- bcprov/trunk/LICENSE.html (rev 0) +++ bcprov/trunk/LICENSE.html 2021-12-08 09:34:43 UTC (rev 1065628) @@ -0,0 +1,22 @@ +<html> +<body bgcolor=#ffffff> + +Copyright (c) 2000-2016 The Legion of the Bouncy Castle Inc. (http://www.bouncycastle.org) +<p> +Permission is hereby granted, free of charge, to any person obtaining a copy of this software +and associated documentation files (the "Software"), to deal in the Software without restriction, +including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: +<p> +The above copyright notice and this permission notice shall be included in all copies or substantial +portions of the Software. +<p> +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR +PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. +</body> +</html> Added: bcprov/trunk/PKGBUILD =================================================================== --- bcprov/trunk/PKGBUILD (rev 0) +++ bcprov/trunk/PKGBUILD 2021-12-08 09:34:43 UTC (rev 1065628) @@ -0,0 +1,23 @@ +# Maintainer: Jan de Groot <[email protected]> + +pkgname=bcprov +pkgver=1.70 +pkgrel=1 +pkgdesc="Java cryptography APIs (Bouncy Castle)" +arch=('any') +url="https://www.bouncycastle.org/java.html" +license=('custom') +source=(https://www.bouncycastle.org/download/bcprov-jdk15on-${pkgver/./}.jar + LICENSE.html) +noextract=(bcprov-jdk15on-${pkgver/./}.jar) +sha256sums=('8f3c20e3e2d565d26f33e8d4857a37d0d7f8ac39b62a7026496fcab1bdac30d4' + 'e9bb81d9c9486a5de0d1facd674e761b46cc421ddd31bbd2b100871a8bea2ed6') + +package() { + depends=('java-runtime') + cd "${srcdir}" + install -m755 -d "${pkgdir}/usr/share/java" + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 bcprov-jdk15on-${pkgver/./}.jar "${pkgdir}/usr/share/java/bcprov.jar" + install -m644 LICENSE.html "${pkgdir}/usr/share/licenses/${pkgname}/" +}
