Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/solo-python/
Date: Mon, 31 May 2021 21:08:25
Message-Id: 1622495290.4ce12f29f4b18a5b4764605f980ec71574127ba7.marecki@gentoo
1 commit: 4ce12f29f4b18a5b4764605f980ec71574127ba7
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 31 21:07:52 2021 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Mon May 31 21:08:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ce12f29
7
8 sys-auth/solo-python: drop 0.0.27
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 sys-auth/solo-python/Manifest | 1 -
13 sys-auth/solo-python/solo-python-0.0.27.ebuild | 35 --------------------------
14 2 files changed, 36 deletions(-)
15
16 diff --git a/sys-auth/solo-python/Manifest b/sys-auth/solo-python/Manifest
17 index fee539b663c..005109374d5 100644
18 --- a/sys-auth/solo-python/Manifest
19 +++ b/sys-auth/solo-python/Manifest
20 @@ -1,2 +1 @@
21 -DIST solo-python-0.0.27.tar.gz 35657 BLAKE2B 747d8849ad4bdda7c0e4b079dce2d7162f07dad4784bb941242dd8ea759cccd763537cec2c7cd9ecf6f467c771729217648b72aa36292622f5fc3adb8a0c280c SHA512 50d564916e07a0c65a843bd2d0328a735ba71eadcfc893b13fac84a3e51822ed2bf80fc3f7662943a5635c6cd6b3ded8ba5b5a9ac2282c9f9bcdfe9de191e445
22 DIST solo-python-0.0.30.tar.gz 34932 BLAKE2B 6787d9c6e102cd2cb5579be0cb3ffbbe76b3ae90f4fa6891b6a1ca3e76436568a949daa6796fc17c9868d10d5de3b0dd377619936eccb0d436a284a35efa40a9 SHA512 bba63e598ef585ef49e98f3ec2a79911cf8af3fc38c9407bd91b7500dc55bf84f365664e6f80ff0ed3553ce93f5d61ba11c5301e8b36d6000c7a922857adaa5e
23
24 diff --git a/sys-auth/solo-python/solo-python-0.0.27.ebuild b/sys-auth/solo-python/solo-python-0.0.27.ebuild
25 deleted file mode 100644
26 index 2ffa6ee8da5..00000000000
27 --- a/sys-auth/solo-python/solo-python-0.0.27.ebuild
28 +++ /dev/null
29 @@ -1,35 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{7..9} )
36 -
37 -DISTUTILS_USE_SETUPTOOLS=pyproject.toml
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Python tool and library for SoloKeys"
42 -HOMEPAGE="https://github.com/solokeys/solo-python"
43 -SRC_URI="https://github.com/solokeys/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="Apache-2.0 MIT"
46 -SLOT="0"
47 -KEYWORDS="amd64"
48 -
49 -RDEPEND=">=dev-python/click-7.0.0[${PYTHON_USEDEP}]
50 - dev-python/cryptography[${PYTHON_USEDEP}]
51 - dev-python/ecdsa[${PYTHON_USEDEP}]
52 - >=dev-python/fido2-0.8.1[${PYTHON_USEDEP}]
53 - <dev-python/fido2-0.9.0[${PYTHON_USEDEP}]
54 - dev-python/intelhex[${PYTHON_USEDEP}]
55 - dev-python/pyserial[${PYTHON_USEDEP}]
56 - dev-python/pyusb[${PYTHON_USEDEP}]
57 - dev-python/requests[${PYTHON_USEDEP}]"
58 -
59 -src_prepare() {
60 - # For some reason the version file gets omitted by src_install (a bug in pyproject2setuppy?),
61 - # and in any case there is no advantage to using one once a specific version has been released.
62 - sed -i -e "s/^__version__ = open(.\+$/__version__ = '${PV}'/" solo/__init__.py || die "Failed to set the version number"
63 - distutils-r1_src_prepare
64 -}