Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/easy-rsa/
Date: Sun, 10 Feb 2019 12:04:08
Message-Id: 1549800237.4e76ce37a2778be9b996e0c1add5669a322eee46.zlogene@gentoo
1 commit: 4e76ce37a2778be9b996e0c1add5669a322eee46
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 10 12:03:00 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 10 12:03:57 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e76ce37
7
8 app-crypt/easy-rsa: Version bump (v3.0.6)
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 app-crypt/easy-rsa/Manifest | 1 +
14 app-crypt/easy-rsa/easy-rsa-3.0.6.ebuild | 28 ++++++++++++++++++++++++++++
15 2 files changed, 29 insertions(+)
16
17 diff --git a/app-crypt/easy-rsa/Manifest b/app-crypt/easy-rsa/Manifest
18 index 473d5fff2a0..a6574d430cc 100644
19 --- a/app-crypt/easy-rsa/Manifest
20 +++ b/app-crypt/easy-rsa/Manifest
21 @@ -1,2 +1,3 @@
22 DIST EasyRSA-3.0.4.tgz 37721 BLAKE2B 84d81eb86dfee42f6de935cbd308262d36626170880a24d260dd8ae708d6340feb63866cb1704c9209675112eef4a251399e19948e88067e90b410c00707a770 SHA512 0bc145e510891af022c05427436c3ec7a29fce9d83e022954acd0cc470c88c43f5549af0b6263b46e8dc5fd167621a118cba0c01a514c51032cea8f1efbb9787
23 DIST easy-rsa-3.0.5.tar.gz 638366 BLAKE2B 990ef0cc7effd80d06d15dbb2dc3ef9a0a282a4adb501475fbd43c1b50bead374ba78ee9652e9c0f8d2e54354be4da6a0ae302e4ef2d576bd7fd981d59566d64 SHA512 9231ca7fda489a230d8418679d8824503ae680e2de6682d5f2d2fa716597f7df5980b7b88a3f6eb4fa0b7d9bbead59a1e2e4b8f4a5a36bda7f78ffa8f3c23d34
24 +DIST easy-rsa-3.0.6.tar.gz 663190 BLAKE2B 2c7f526c3ddddf13b4c6193bcd52bc992b9e81db28dec8cd9b5f44aba231eed18b6f25c64a42072a6409a5dd23db21fa8ccefc210ce924c68ad3a79475d2eaa1 SHA512 ce553b483ed2facab71d9bc212c4a454c6ed4a6489a0b963c4fc190916c71d048955e1e24d3e58a39438a51a83a02bf696bb2b9292c6ff665113043509062eb1
25
26 diff --git a/app-crypt/easy-rsa/easy-rsa-3.0.6.ebuild b/app-crypt/easy-rsa/easy-rsa-3.0.6.ebuild
27 new file mode 100644
28 index 00000000000..f827f0cc84e
29 --- /dev/null
30 +++ b/app-crypt/easy-rsa/easy-rsa-3.0.6.ebuild
31 @@ -0,0 +1,28 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +DESCRIPTION="Small RSA key management package, based on OpenSSL"
38 +HOMEPAGE="https://openvpn.net/"
39 +SRC_URI="https://github.com/OpenVPN/easy-rsa/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
44 +IUSE="libressl"
45 +
46 +DEPEND="!libressl? ( >=dev-libs/openssl-0.9.6:0 )
47 + libressl? ( dev-libs/libressl )"
48 +RDEPEND="${DEPEND}
49 + !<net-vpn/openvpn-2.3"
50 +
51 +src_install() {
52 + exeinto /usr/share/easy-rsa
53 + doexe easyrsa3/easyrsa
54 + insinto /usr/share/easy-rsa
55 + doins -r easyrsa3/{vars.example,openssl-easyrsa.cnf,x509-types}
56 + dodoc README.quickstart.md ChangeLog
57 + dodoc -r doc
58 + doenvd "${FILESDIR}/65easy-rsa" # config-protect easy-rsa
59 +}