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, 29 Nov 2019 04:32:09
Message-Id: 1575001882.5a15a0789a6765446490a41645c1aa0667a64dd5.gokturk@gentoo
1 commit: 5a15a0789a6765446490a41645c1aa0667a64dd5
2 Author: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 29 04:27:21 2019 +0000
4 Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 29 04:31:22 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a15a078
7
8 app-crypt/yubikey-manager: remove old
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.14
11 Signed-off-by: Göktürk Yüksek <gokturk <AT> gentoo.org>
12
13 app-crypt/yubikey-manager/Manifest | 1 -
14 .../yubikey-manager-2.0.0-r1.ebuild | 64 ----------------------
15 2 files changed, 65 deletions(-)
16
17 diff --git a/app-crypt/yubikey-manager/Manifest b/app-crypt/yubikey-manager/Manifest
18 index 23e92e5bc7b..826dee80d02 100644
19 --- a/app-crypt/yubikey-manager/Manifest
20 +++ b/app-crypt/yubikey-manager/Manifest
21 @@ -1,2 +1 @@
22 -DIST yubikey-manager-2.0.0.tar.gz 102078 BLAKE2B a2b8f90dabefb1014881cbe709222bf5cb48c9f409b415a8a2b27d7101c2da6189d0ebfe21a2701d10798c48c44e546659f9424ba6bf9257f7311abb0fc90b9b SHA512 42bebb88ba78bcce00a228109d0b4c815b3242ddbe43fd26c1209ba8666eb033ab77d5acd39a157e8310ce327de8d38bf88cfa0ffaed6273236b220c39e72e3b
23 DIST yubikey-manager-3.1.0.tar.gz 115010 BLAKE2B 1b27b9af7f3adac87a1bca58929bffef2ae397b359f70580a07193d2bd2f8cd4d2d867053f6494f1e262668443388d79dfe3775f2c3d0a5528840df8826cdf91 SHA512 518eedb52cfcf725c13114c433f848b97f711e94fa9c71685916fb8cb20e5bfc431f648b0ec710ef9ebed2bc8ddd8722ca1c9865d7a1b29537b719e167ed5f60
24
25 diff --git a/app-crypt/yubikey-manager/yubikey-manager-2.0.0-r1.ebuild b/app-crypt/yubikey-manager/yubikey-manager-2.0.0-r1.ebuild
26 deleted file mode 100644
27 index 6a36597e963..00000000000
28 --- a/app-crypt/yubikey-manager/yubikey-manager-2.0.0-r1.ebuild
29 +++ /dev/null
30 @@ -1,64 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python{2_7,3_{5,6}} )
37 -inherit readme.gentoo-r1 distutils-r1
38 -
39 -DESCRIPTION="Python library and command line tool for configuring a YubiKey"
40 -HOMEPAGE="https://developers.yubico.com/yubikey-manager/"
41 -SRC_URI="https://github.com/Yubico/${PN}/archive/${P}.tar.gz"
42 -S="${WORKDIR}/${PN}-${P}" # <- need this only for github-based SRC_URI
43 -# Here's the alternative SRC_URI, though tarball contents may differ
44 -# See: https://github.com/Yubico/yubikey-manager/issues/217
45 -# SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.gz"
46 -
47 -LICENSE="BSD-2"
48 -SLOT="0"
49 -KEYWORDS="amd64 x86"
50 -IUSE="test"
51 -RESTRICT="!test? ( test )"
52 -
53 -RDEPEND="
54 - dev-python/click[${PYTHON_USEDEP}]
55 - dev-python/cryptography[${PYTHON_USEDEP}]
56 - $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python2_7)
57 - <dev-python/fido2-0.8.0[${PYTHON_USEDEP}]
58 - dev-python/pyopenssl[${PYTHON_USEDEP}]
59 - dev-python/pyscard[${PYTHON_USEDEP}]
60 - dev-python/pyusb[${PYTHON_USEDEP}]
61 - dev-python/six[${PYTHON_USEDEP}]
62 - >=sys-auth/ykpers-1.19.0
63 -"
64 -DEPEND="
65 - dev-python/setuptools[${PYTHON_USEDEP}]
66 - test? (
67 - ${RDEPEND}
68 - $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 'python2_7')
69 - )
70 -"
71 -
72 -python_test() {
73 - esetup.py test
74 -}
75 -
76 -python_install_all() {
77 - local DOC_CONTENTS
78 -
79 - distutils-r1_python_install_all
80 -
81 - DOC_CONTENTS="
82 - The 'openpgp' command may require the package 'app-crypt/ccid'
83 - to be installed on the system. Furthermore, make sure that pcscd
84 - daemon is running and has correct access permissions to USB
85 - devices.
86 - "
87 - readme.gentoo_create_doc
88 -
89 - doman "${S}"/man/ykman.1
90 -}
91 -
92 -pkg_postinst() {
93 - readme.gentoo_print_elog
94 -}