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, 01 Jul 2018 13:15:45
Message-Id: 1530450932.1312dc9bffa2928d25351596c0dc0cdc424973c8.zlogene@gentoo
1 commit: 1312dc9bffa2928d25351596c0dc0cdc424973c8
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 1 13:14:57 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 1 13:15:32 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1312dc9b
7
8 app-crypt/easy-rsa: Version bump
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 app-crypt/easy-rsa/Manifest | 1 +
13 app-crypt/easy-rsa/easy-rsa-3.0.4.ebuild | 32 ++++++++++++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/app-crypt/easy-rsa/Manifest b/app-crypt/easy-rsa/Manifest
17 index 6cf5b2c8e0e..337dfc59efc 100644
18 --- a/app-crypt/easy-rsa/Manifest
19 +++ b/app-crypt/easy-rsa/Manifest
20 @@ -1,2 +1,3 @@
21 DIST EasyRSA-3.0.1.tgz 40960 BLAKE2B 8f1be521da9c57abc911b771188bd6e3e0732fa03445de2ca5815ac4d16cd59993e2dcc7c714c6bf1ff151ab9e95b5c9578504ece3787996d30ed37972ec6047 SHA512 d20f646e33ec803444dfcd446553f1d6001227fedec93280c212b34cccee11b184599f1b2ae6a3ce9cf6c9ac52f2b840ebb645536df6ddf55382fa25c22df81f
22 DIST EasyRSA-3.0.3.tgz 40960 BLAKE2B 1ada3a467bda797d35204d5a03b94a750e339a7ec8a7806007eee4b6b5442e76a2472a404fb7e963fefc42385474a0197eeaec8fa27c2b737f7f4ff55b4e2878 SHA512 c8cdc31d67e63f9e8338095fa4534bb141d857a8a9f510bef1af32270b8421952e569253bc8b7a51ebf1b443a6ad5c7cd011b258d7c9f56426ecd3f2b710b6f9
23 +DIST EasyRSA-3.0.4.tgz 37721 BLAKE2B 84d81eb86dfee42f6de935cbd308262d36626170880a24d260dd8ae708d6340feb63866cb1704c9209675112eef4a251399e19948e88067e90b410c00707a770 SHA512 0bc145e510891af022c05427436c3ec7a29fce9d83e022954acd0cc470c88c43f5549af0b6263b46e8dc5fd167621a118cba0c01a514c51032cea8f1efbb9787
24
25 diff --git a/app-crypt/easy-rsa/easy-rsa-3.0.4.ebuild b/app-crypt/easy-rsa/easy-rsa-3.0.4.ebuild
26 new file mode 100644
27 index 00000000000..d9ada0b6cb9
28 --- /dev/null
29 +++ b/app-crypt/easy-rsa/easy-rsa-3.0.4.ebuild
30 @@ -0,0 +1,32 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +MY_P="EasyRSA-${PV}"
37 +
38 +DESCRIPTION="Small RSA key management package, based on OpenSSL"
39 +HOMEPAGE="https://openvpn.net/"
40 +SRC_URI="https://github.com/OpenVPN/easy-rsa/releases/download/v${PV}/${MY_P}.tgz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
45 +IUSE="libressl"
46 +
47 +DEPEND="!libressl? ( >=dev-libs/openssl-0.9.6:0 )
48 + libressl? ( dev-libs/libressl )"
49 +RDEPEND="${DEPEND}
50 + !<net-vpn/openvpn-2.3"
51 +
52 +S="${WORKDIR}/${MY_P}"
53 +
54 +src_install() {
55 + exeinto /usr/share/easy-rsa
56 + doexe easyrsa
57 + insinto /usr/share/easy-rsa
58 + doins -r vars.example openssl-easyrsa.cnf x509-types
59 + dodoc README.quickstart.md ChangeLog
60 + dodoc -r doc
61 + doenvd "${FILESDIR}/65easy-rsa" # config-protect easy-rsa
62 +}