Gentoo Archives: gentoo-commits

From: Alon Bar-Lev <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/scute/
Date: Wed, 19 Jul 2017 13:52:44
Message-Id: 1500472346.8e05689dbc96788c8935dc6de57348a800413422.alonbl@gentoo
1 commit: 8e05689dbc96788c8935dc6de57348a800413422
2 Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 19 13:52:12 2017 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 19 13:52:26 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e05689d
7
8 app-crypt/scute: version bump
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 app-crypt/scute/Manifest | 1 +
13 app-crypt/scute/scute-1.5.0.ebuild | 37 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 38 insertions(+)
15
16 diff --git a/app-crypt/scute/Manifest b/app-crypt/scute/Manifest
17 index 1d6282f4220..249e07038a6 100644
18 --- a/app-crypt/scute/Manifest
19 +++ b/app-crypt/scute/Manifest
20 @@ -1 +1,2 @@
21 DIST scute-1.4.0.tar.bz2 772986 SHA256 bd698a853375324c4ff590899c1994be83d8d0a1400fcaf489529646965fb745 SHA512 7961679ce3195aeb3ed1508557c767b59970cd221b569c0fa00cd419e4017b84a851f1fbe46323a4ffb6256c6b91bb037f93edb4f4f7f9f6e0add672b9cc2015 WHIRLPOOL 6e4bc0852d389ac2103edb5bb0c0c260642dcc596862fec55db3ffd51a5fc6cd0752a81d864b36db4544c5b1efbf944f76672806bcaa8305ccf07bb9f817459e
22 +DIST scute-1.5.0.tar.bz2 991598 SHA256 6199d28d8ce17f979f67059b461ab55a2276fc390eaa45e5ce6ff615bf81ab96 SHA512 ad1dbdba5681a92696c851eca7e2bfb61f7bf84f5e02728efc1f72cd25c4ee2dc18fe975e2903d1a85c635d16be1e2085ff2305827b48d80e18c9354e555b39a WHIRLPOOL 008d0f6d306898fe64ae7c9a689178f246b3380f07f6d1e1b2f423552eff74d6133cbe71a5337ec90cacd0c91525219d1ba1d2fb20c80891b921b1de5b06fe3e
23
24 diff --git a/app-crypt/scute/scute-1.5.0.ebuild b/app-crypt/scute/scute-1.5.0.ebuild
25 new file mode 100644
26 index 00000000000..85adede2192
27 --- /dev/null
28 +++ b/app-crypt/scute/scute-1.5.0.ebuild
29 @@ -0,0 +1,37 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +inherit ltprune
36 +
37 +DESCRIPTION="A PKCS #11 module for OpenPGP smartcards"
38 +HOMEPAGE="http://www.scute.org/"
39 +SRC_URI="mirror://gnupg/scute/${P}.tar.bz2"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~amd64"
44 +IUSE=""
45 +
46 +# configure script try to check the version of gpgsm and gpg-agent when
47 +# non-crosscompiling so we need to have them as build-time dependency as
48 +# well as runtime. Require a version of gnupg that is patched to have
49 +# gpgsm-gencert.sh working (as that's what the documentation describe).
50 +DEPEND="
51 + >=dev-libs/libgpg-error-1.4
52 + >=dev-libs/libassuan-2.0.0
53 + >=app-crypt/pinentry-0.7.0
54 + >=app-crypt/gnupg-2.0.17-r1[smartcard]"
55 +RDEPEND="${DEPEND}"
56 +
57 +src_configure() {
58 + econf \
59 + --libdir=/usr/$(get_libdir)/pkcs11 \
60 + --with-gpgsm=/usr/bin/gpgsm
61 +}
62 +
63 +src_install() {
64 + default
65 + prune_libtool_files --modules
66 +}