Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/yubikey-manager/
Date: Fri, 01 Jan 2021 00:47:06
Message-Id: 1609461660.cc6de4031fa365f5c7e2cef989452585438f359a.mgorny@gentoo
1 commit: cc6de4031fa365f5c7e2cef989452585438f359a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 1 00:41:00 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 1 00:41:00 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc6de403
7
8 app-crypt/yubikey-manager: Remove old (py3.6)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-crypt/yubikey-manager/Manifest | 1 -
13 .../yubikey-manager-3.1.0-r1.ebuild | 61 ----------------------
14 2 files changed, 62 deletions(-)
15
16 diff --git a/app-crypt/yubikey-manager/Manifest b/app-crypt/yubikey-manager/Manifest
17 index 23ffb01a757..45be7083a91 100644
18 --- a/app-crypt/yubikey-manager/Manifest
19 +++ b/app-crypt/yubikey-manager/Manifest
20 @@ -1,2 +1 @@
21 -DIST yubikey-manager-3.1.0.tar.gz 115010 BLAKE2B 1b27b9af7f3adac87a1bca58929bffef2ae397b359f70580a07193d2bd2f8cd4d2d867053f6494f1e262668443388d79dfe3775f2c3d0a5528840df8826cdf91 SHA512 518eedb52cfcf725c13114c433f848b97f711e94fa9c71685916fb8cb20e5bfc431f648b0ec710ef9ebed2bc8ddd8722ca1c9865d7a1b29537b719e167ed5f60
22 DIST yubikey-manager-3.1.1.tar.gz 116632 BLAKE2B 252c419280143fa6f44daf3de8ec27bbdc3218e4552e39799e1daca5b46939c4042ae1d43abeab110fe1abaf2e87d94c270442ee6fce05e26927add5b34e9f66 SHA512 8229d5442ddf89fe90abb0153aa005cb0d149a84634b994dc283f7cbac2f72d4b913c238c277c6aa07f431aed8905008aeb11e594e730be71c9ca88150a6ef68
23
24 diff --git a/app-crypt/yubikey-manager/yubikey-manager-3.1.0-r1.ebuild b/app-crypt/yubikey-manager/yubikey-manager-3.1.0-r1.ebuild
25 deleted file mode 100644
26 index cbd62bf2dc9..00000000000
27 --- a/app-crypt/yubikey-manager/yubikey-manager-3.1.0-r1.ebuild
28 +++ /dev/null
29 @@ -1,61 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python3_6 )
36 -inherit readme.gentoo-r1 distutils-r1
37 -
38 -DESCRIPTION="Python library and command line tool for configuring a YubiKey"
39 -HOMEPAGE="https://developers.yubico.com/yubikey-manager/"
40 -# Per https://github.com/Yubico/yubikey-manager/issues/217, Yubico is
41 -# the official source for tarballs, not Github
42 -SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.gz"
43 -
44 -LICENSE="BSD-2"
45 -SLOT="0"
46 -KEYWORDS="amd64 x86"
47 -IUSE="test"
48 -RESTRICT="!test? ( test )"
49 -
50 -RDEPEND="
51 - dev-python/click[${PYTHON_USEDEP}]
52 - dev-python/cryptography[${PYTHON_USEDEP}]
53 - >=dev-python/fido2-0.7.0[${PYTHON_USEDEP}]
54 - <dev-python/fido2-0.8.0[${PYTHON_USEDEP}]
55 - dev-python/pyopenssl[${PYTHON_USEDEP}]
56 - dev-python/pyscard[${PYTHON_USEDEP}]
57 - dev-python/pyusb[${PYTHON_USEDEP}]
58 - dev-python/six[${PYTHON_USEDEP}]
59 - >=sys-auth/ykpers-1.19.0
60 -"
61 -DEPEND="
62 - dev-python/setuptools[${PYTHON_USEDEP}]
63 - test? (
64 - ${RDEPEND}
65 - )
66 -"
67 -
68 -python_test() {
69 - esetup.py test
70 -}
71 -
72 -python_install_all() {
73 - local DOC_CONTENTS
74 -
75 - distutils-r1_python_install_all
76 -
77 - DOC_CONTENTS="
78 - The 'openpgp' command may require the package 'app-crypt/ccid'
79 - to be installed on the system. Furthermore, make sure that pcscd
80 - daemon is running and has correct access permissions to USB
81 - devices.
82 - "
83 - readme.gentoo_create_doc
84 -
85 - doman "${S}"/man/ykman.1
86 -}
87 -
88 -pkg_postinst() {
89 - readme.gentoo_print_elog
90 -}