Gentoo Archives: gentoo-commits

From: "Göktürk Yüksek" <gokturk@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/yubikey-manager/
Date: Fri, 01 Feb 2019 02:19:42
Message-Id: 1548987535.276cc53b25ebb40e198920b71699361051fdc712.gokturk@gentoo
1 commit: 276cc53b25ebb40e198920b71699361051fdc712
2 Author: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 1 00:35:47 2019 +0000
4 Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 1 02:18:55 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=276cc53b
7
8 app-crypt/yubikey-manager: bump to 2.0.0 #674050
9
10 Closes: https://bugs.gentoo.org/674050
11 Package-Manager: Portage-2.3.52, Repoman-2.3.12
12 Signed-off-by: Göktürk Yüksek <gokturk <AT> gentoo.org>
13
14 app-crypt/yubikey-manager/Manifest | 1 +
15 .../yubikey-manager/yubikey-manager-2.0.0.ebuild | 63 ++++++++++++++++++++++
16 2 files changed, 64 insertions(+)
17
18 diff --git a/app-crypt/yubikey-manager/Manifest b/app-crypt/yubikey-manager/Manifest
19 index c6c6e839a6f..e37874c4463 100644
20 --- a/app-crypt/yubikey-manager/Manifest
21 +++ b/app-crypt/yubikey-manager/Manifest
22 @@ -7,3 +7,4 @@ DIST yubikey-manager-0.7.0.tar.gz 83385 BLAKE2B cd0c440f8ce81549e52dd8e546d82678
23 DIST yubikey-manager-0.7.1-test-files.tar.xz 9756 BLAKE2B 5a2e2a2a58d04c8f9954c1d13d0892b4f7392785d6e83e6948e720606318860b93e70862cee0ee7f987c14c3fa49bb7ff20cdf2a5bfc09c1f08681346428c003 SHA512 7543a9e9cfbe7f9ec02c98397f5cbd77cb307d79985a4b060176ee26605767e74d8b18d4c036ff90aed9a0232bb1382908c75e876a911c2ceb35a12666699b94
24 DIST yubikey-manager-0.7.1.tar.gz 71834 BLAKE2B 45b0366531c8a158b3d8ebcfa8b76d608c14dba02224d4e4962c3757446829e3dff5f5e0d0ceda67caab7c67ad0510e037770c58a50552c2c6971136cb75c806 SHA512 3e9105f1c033f9314b90cf209eb52f7879fa1ea69e9ae6dac8de0b24d7d2ff6e45b6dd530917535fa645d6eea461f5b4f23bb8deb103ffc27d1f3483cfa681c7
25 DIST yubikey-manager-1.0.0.tar.gz 90653 BLAKE2B 5d8522181ad460521995d3cae63976e06a444816a24efdc83b526d50262c902c8cc76b29d43f6f07725ee714666c853b690f1dd6fe98c9409f0cc1e722ada6f5 SHA512 9fd1926bf4e2c1278a42136a05db3e5fe0b7cb3d740f601fd0a420ab851badb61c2dd165157ac5b1f47e934f771b9d0b3cca4e07d1772d0f743556d482f77c11
26 +DIST yubikey-manager-2.0.0.tar.gz 102078 BLAKE2B a2b8f90dabefb1014881cbe709222bf5cb48c9f409b415a8a2b27d7101c2da6189d0ebfe21a2701d10798c48c44e546659f9424ba6bf9257f7311abb0fc90b9b SHA512 42bebb88ba78bcce00a228109d0b4c815b3242ddbe43fd26c1209ba8666eb033ab77d5acd39a157e8310ce327de8d38bf88cfa0ffaed6273236b220c39e72e3b
27
28 diff --git a/app-crypt/yubikey-manager/yubikey-manager-2.0.0.ebuild b/app-crypt/yubikey-manager/yubikey-manager-2.0.0.ebuild
29 new file mode 100644
30 index 00000000000..7fa00f1c34d
31 --- /dev/null
32 +++ b/app-crypt/yubikey-manager/yubikey-manager-2.0.0.ebuild
33 @@ -0,0 +1,63 @@
34 +# Copyright 1999-2019 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=6
38 +
39 +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
40 +inherit readme.gentoo-r1 distutils-r1
41 +
42 +DESCRIPTION="Python library and command line tool for configuring a YubiKey"
43 +HOMEPAGE="https://developers.yubico.com/yubikey-manager/"
44 +SRC_URI="https://github.com/Yubico/${PN}/archive/${P}.tar.gz"
45 +S="${WORKDIR}/${PN}-${P}" # <- need this only for github-based SRC_URI
46 +# Here's the alternative SRC_URI, though tarball contents may differ
47 +# See: https://github.com/Yubico/yubikey-manager/issues/217
48 +# SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.gz"
49 +
50 +LICENSE="BSD-2"
51 +SLOT="0"
52 +KEYWORDS="~amd64"
53 +IUSE="test"
54 +
55 +RDEPEND="
56 + dev-python/click[${PYTHON_USEDEP}]
57 + dev-python/cryptography[${PYTHON_USEDEP}]
58 + $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python2_7)
59 + dev-python/fido2[${PYTHON_USEDEP}]
60 + dev-python/pyopenssl[${PYTHON_USEDEP}]
61 + dev-python/pyscard[${PYTHON_USEDEP}]
62 + dev-python/pyusb[${PYTHON_USEDEP}]
63 + dev-python/six[${PYTHON_USEDEP}]
64 + >=sys-auth/ykpers-1.19.0
65 +"
66 +DEPEND="
67 + dev-python/setuptools[${PYTHON_USEDEP}]
68 + test? (
69 + ${RDEPEND}
70 + $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 'python2_7')
71 + )
72 +"
73 +
74 +python_test() {
75 + esetup.py test
76 +}
77 +
78 +python_install_all() {
79 + local DOC_CONTENTS
80 +
81 + distutils-r1_python_install_all
82 +
83 + DOC_CONTENTS="
84 + The 'openpgp' command may require the package 'app-crypt/ccid'
85 + to be installed on the system. Furthermore, make sure that pcscd
86 + daemon is running and has correct access permissions to USB
87 + devices.
88 + "
89 + readme.gentoo_create_doc
90 +
91 + doman "${S}"/man/ykman.1
92 +}
93 +
94 +pkg_postinst() {
95 + readme.gentoo_print_elog
96 +}