commit: 945f1ad906fadaccef9f2fa601d6760d61a6c83a Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org> AuthorDate: Thu Oct 4 17:21:24 2018 +0000 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org> CommitDate: Thu Oct 4 17:21:48 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=945f1ad9
app-crypt/easy-rsa: Version bump (v3.0.5) Closes: https://bugs.gentoo.org/665356 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org> Package-Manager: Portage-2.3.49, Repoman-2.3.11 app-crypt/easy-rsa/Manifest | 1 + app-crypt/easy-rsa/easy-rsa-3.0.5.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/app-crypt/easy-rsa/Manifest b/app-crypt/easy-rsa/Manifest index 6dbd7e7b877..473d5fff2a0 100644 --- a/app-crypt/easy-rsa/Manifest +++ b/app-crypt/easy-rsa/Manifest @@ -1 +1,2 @@ DIST EasyRSA-3.0.4.tgz 37721 BLAKE2B 84d81eb86dfee42f6de935cbd308262d36626170880a24d260dd8ae708d6340feb63866cb1704c9209675112eef4a251399e19948e88067e90b410c00707a770 SHA512 0bc145e510891af022c05427436c3ec7a29fce9d83e022954acd0cc470c88c43f5549af0b6263b46e8dc5fd167621a118cba0c01a514c51032cea8f1efbb9787 +DIST easy-rsa-3.0.5.tar.gz 638366 BLAKE2B 990ef0cc7effd80d06d15dbb2dc3ef9a0a282a4adb501475fbd43c1b50bead374ba78ee9652e9c0f8d2e54354be4da6a0ae302e4ef2d576bd7fd981d59566d64 SHA512 9231ca7fda489a230d8418679d8824503ae680e2de6682d5f2d2fa716597f7df5980b7b88a3f6eb4fa0b7d9bbead59a1e2e4b8f4a5a36bda7f78ffa8f3c23d34 diff --git a/app-crypt/easy-rsa/easy-rsa-3.0.5.ebuild b/app-crypt/easy-rsa/easy-rsa-3.0.5.ebuild new file mode 100644 index 00000000000..ff99431b6da --- /dev/null +++ b/app-crypt/easy-rsa/easy-rsa-3.0.5.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Small RSA key management package, based on OpenSSL" +HOMEPAGE="https://openvpn.net/" +SRC_URI="https://github.com/OpenVPN/easy-rsa/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="libressl" + +DEPEND="!libressl? ( >=dev-libs/openssl-0.9.6:0 ) + libressl? ( dev-libs/libressl )" +RDEPEND="${DEPEND} + !<net-vpn/openvpn-2.3" + +src_install() { + exeinto /usr/share/easy-rsa + doexe easyrsa3/easyrsa + insinto /usr/share/easy-rsa + doins -r easyrsa3/{vars.example,openssl-easyrsa.cnf,x509-types} + dodoc README.quickstart.md ChangeLog + dodoc -r doc + doenvd "${FILESDIR}/65easy-rsa" # config-protect easy-rsa +}