Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/volume_key/
Date: Fri, 12 Oct 2018 12:46:26
Message-Id: 1539348335.5886b199ed8265e8d8c63327e9a14dfce150ea32.polynomial-c@gentoo
1 commit: 5886b199ed8265e8d8c63327e9a14dfce150ea32
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 12 12:44:25 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 12 12:45:35 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5886b199
7
8 dev-libs/volume_key: Bump to version 0.3.12
9
10 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 dev-libs/volume_key/Manifest | 1 +
14 dev-libs/volume_key/volume_key-0.3.12.ebuild | 47 ++++++++++++++++++++++++++++
15 2 files changed, 48 insertions(+)
16
17 diff --git a/dev-libs/volume_key/Manifest b/dev-libs/volume_key/Manifest
18 index 32394c01031..c308e80769e 100644
19 --- a/dev-libs/volume_key/Manifest
20 +++ b/dev-libs/volume_key/Manifest
21 @@ -1,3 +1,4 @@
22 DIST volume_key-0.3.10.tar.xz 474720 BLAKE2B 726252263976b63c3e73dc42bd0166aa1c05df7a61715ca19921e9cd92abf1f8c84347127c94f724e385e0a36411ffae92341d91d06d679c052c83edb5ab6c49 SHA512 b050d333e021bc3721f5e72c1d2498adea3265afe7f702e1b1e859546755745ac70dcffc194739a4833d4b0b77168506f7fe90fde382d8aab4df2af7b635932b
23 DIST volume_key-0.3.11.tar.xz 484936 BLAKE2B f7bde79d290617a82de60a2105b6374dd03c2203804e3748336c8d09fbf749bf47157cf5e6b856477475d0074f3e4475dc85e0765308d60b9c6d0525685f73ea SHA512 b9da00578b31c96231ebde55fd91c9aafbd663e541c560460fb6c3305e1a0e1fb3115a95682dc4713027d084e14ffa39d638653384a18d69f5dc892fc4855a97
24 +DIST volume_key-0.3.12.tar.xz 490432 BLAKE2B 4a0424d51878855c69bdf969b616f3a563074976ad7b07aa848140266d97f66de9c52e1a6ed8913df93077d5966c3ab99afc78c3b22c410f1eadf5447ca2f416 SHA512 d056154c9b9d23e4eb661946dd59ed97e116903a3afcff9d9e29258408082f33dcbb69958724143f6bf191a3da488a03b6c02af287790990ed6459e29d66553c
25 DIST volume_key-0.3.9.tar.xz 445092 BLAKE2B b9cec52ca02e331501d378482484535413f3ef7675b6592b9f26f272d36448a2ffee1a0ca1c7a552764324ab20cd6dac98447914faafbea96e4c526796bec587 SHA512 bc0e690997b9fa1c9fff361d04e7eddcac4cac09779d7a1f9e161be117f5c589a7e444ac16dab25fb3e3ce201591f7dc937595ddf2745d7daa625d4ab0a255e0
26
27 diff --git a/dev-libs/volume_key/volume_key-0.3.12.ebuild b/dev-libs/volume_key/volume_key-0.3.12.ebuild
28 new file mode 100644
29 index 00000000000..d0b33aaa8bf
30 --- /dev/null
31 +++ b/dev-libs/volume_key/volume_key-0.3.12.ebuild
32 @@ -0,0 +1,47 @@
33 +# Copyright 1999-2018 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( python3_{5,6,7} )
39 +
40 +inherit python-single-r1
41 +
42 +DESCRIPTION="Library for manipulating and storing storage volume encryption keys"
43 +HOMEPAGE="https://pagure.io/volume_key"
44 +SRC_URI="http://releases.pagure.org/${PN}/${P}.tar.xz"
45 +
46 +LICENSE="GPL-2+"
47 +SLOT="0"
48 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
49 +IUSE="test"
50 +
51 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
52 +
53 +RDEPEND="
54 + app-crypt/gpgme
55 + dev-libs/glib:2
56 + dev-libs/nspr
57 + dev-libs/nss
58 + sys-apps/util-linux
59 + sys-fs/cryptsetup:=
60 +"
61 +DEPEND="
62 + ${RDEPEND}
63 + sys-devel/gettext
64 + test? ( dev-libs/nss[utils] )
65 + "
66 +
67 +pkg_setup() {
68 + python-single-r1_pkg_setup
69 +}
70 +
71 +src_configure() {
72 + # --without-python disables python2
73 + econf --without-python --with-python3
74 +}
75 +
76 +src_install() {
77 + default
78 + find "${ED}" -name "*.la" -delete || die
79 +}