Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/easy-rsa/
Date: Tue, 02 Feb 2016 22:00:10
Message-Id: 1454450348.169cce0e82c37cf9cd706556100216832b5eee22.mrueg@gentoo
1 commit: 169cce0e82c37cf9cd706556100216832b5eee22
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 2 21:59:08 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 2 21:59:08 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=169cce0e
7
8 app-crypt/easy-rsa: Version bump
9
10 Gentoo-Bug: 515634
11
12 Package-Manager: portage-2.2.27
13
14 app-crypt/easy-rsa/Manifest | 1 +
15 app-crypt/easy-rsa/easy-rsa-3.0.1.ebuild | 35 ++++++++++++++++++++++++++++++++
16 2 files changed, 36 insertions(+)
17
18 diff --git a/app-crypt/easy-rsa/Manifest b/app-crypt/easy-rsa/Manifest
19 index 6f2a55d..3435584 100644
20 --- a/app-crypt/easy-rsa/Manifest
21 +++ b/app-crypt/easy-rsa/Manifest
22 @@ -1 +1,2 @@
23 DIST EasyRSA-2.2.2.tgz 10492 SHA256 68da869085dde7c6a964e9c6104b86e4af91c4c592f8ec2a2f6cfc9d20808991 SHA512 b09bd1a71c1bfeb3c2ff63f10b7781badf6d2b4888d97d917565436435b85fb90eebf7727db293bdc44039f23c7f3c3c4e762a22bf7d6e9ed7642a2f07e1ffe4 WHIRLPOOL 27b7d761a317d8787526dbdc1878e62326e6ca13730ddf9b50fe918f010c23d1535dfa4f6bfb76bf26bd005942105a0e862359579faf7b6fe803ad7ca53d627e
24 +DIST EasyRSA-3.0.1.tgz 40960 SHA256 dbdaf5b9444b99e0c5221fd4bcf15384c62380c1b63cea23d42239414d7b2d4e SHA512 d20f646e33ec803444dfcd446553f1d6001227fedec93280c212b34cccee11b184599f1b2ae6a3ce9cf6c9ac52f2b840ebb645536df6ddf55382fa25c22df81f WHIRLPOOL 64d54af059e136409f4ad3488450cccc846e2b5d9dfb9e002dd466cf603b6677dc8f0b788471b73eebda918c5773673efc120e6a76dbf407a3e1605db14e62cd
25
26 diff --git a/app-crypt/easy-rsa/easy-rsa-3.0.1.ebuild b/app-crypt/easy-rsa/easy-rsa-3.0.1.ebuild
27 new file mode 100644
28 index 0000000..2143895
29 --- /dev/null
30 +++ b/app-crypt/easy-rsa/easy-rsa-3.0.1.ebuild
31 @@ -0,0 +1,35 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +
38 +inherit eutils
39 +
40 +MY_P="EasyRSA-${PV}"
41 +
42 +DESCRIPTION="Small RSA key management package, based on OpenSSL"
43 +HOMEPAGE="http://openvpn.net/"
44 +SRC_URI="https://github.com/OpenVPN/easy-rsa/releases/download/${PV}/${MY_P}.tgz"
45 +
46 +LICENSE="GPL-2"
47 +SLOT="0"
48 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
49 +IUSE="libressl"
50 +
51 +DEPEND="!libressl? ( >=dev-libs/openssl-0.9.6:0 )
52 + libressl? ( dev-libs/libressl )"
53 +RDEPEND="${DEPEND}
54 + !<net-misc/openvpn-2.3"
55 +
56 +S="${WORKDIR}/${MY_P}"
57 +
58 +src_install() {
59 + exeinto /usr/share/easy-rsa
60 + doexe easyrsa
61 + insinto /usr/share/easy-rsa
62 + doins vars.example openssl-1.0.cnf x509-types
63 + dodoc README.quickstart.md ChangeLog
64 + dodoc -r doc
65 + doenvd "${FILESDIR}/65easy-rsa" # config-protect easy-rsa
66 +}