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: dev-python/argon2-cffi/
Date: Mon, 04 Oct 2021 20:54:41
Message-Id: 1633380747.278e504293420951a13ee4df55005d04b2049abe.mgorny@gentoo
1 commit: 278e504293420951a13ee4df55005d04b2049abe
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 4 20:52:27 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 4 20:52:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=278e5042
7
8 dev-python/argon2-cffi: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/argon2-cffi/Manifest | 1 -
13 dev-python/argon2-cffi/argon2-cffi-20.1.0.ebuild | 44 ------------------------
14 2 files changed, 45 deletions(-)
15
16 diff --git a/dev-python/argon2-cffi/Manifest b/dev-python/argon2-cffi/Manifest
17 index 000c51bb9b6..1210172f4cb 100644
18 --- a/dev-python/argon2-cffi/Manifest
19 +++ b/dev-python/argon2-cffi/Manifest
20 @@ -1,2 +1 @@
21 -DIST argon2-cffi-20.1.0.tar.gz 1814415 BLAKE2B c216349beffa263fd96df23f40a8102b56a88b8320e64ac062ecfea4582efa34b298ba223437bfbfc422b68a3d9b9ea769c384db078c633103f2aae3cd38bd5b SHA512 d1d798e3e51ed67c4f523a66081fea99479ee986b5cfc36b250954e757b9846625681445447f9347519d9988f8a2ace2e3c8ce5817c5c6b4767819cf56ee0af2
22 DIST argon2-cffi-21.1.0.tar.gz 1807800 BLAKE2B 47b1e785b7eb173b671a44e9212af76a59f453c3c0d0e5f2c437e7a62132abf86ab6baa8bdd656ad28d00a151296a66211d365c0afe228821c8c1ff1a0a66c46 SHA512 bbfebd2c075f360a6c1c187c0789be2aae7480b9398f36db7bdfe74f288d9e00b44a788918c54f4cc8bb1947136ab0493f61975de408c482a5131e2bf1a8f4d0
23
24 diff --git a/dev-python/argon2-cffi/argon2-cffi-20.1.0.ebuild b/dev-python/argon2-cffi/argon2-cffi-20.1.0.ebuild
25 deleted file mode 100644
26 index b25341a87d6..00000000000
27 --- a/dev-python/argon2-cffi/argon2-cffi-20.1.0.ebuild
28 +++ /dev/null
29 @@ -1,44 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="CFFI bindings to the Argon2 password hashing library"
39 -HOMEPAGE="https://github.com/hynek/argon2-cffi"
40 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="MIT"
43 -SLOT="0"
44 -KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~sparc x86"
45 -
46 -DEPEND="
47 - app-crypt/argon2:=
48 - dev-python/six[${PYTHON_USEDEP}]
49 - virtual/python-cffi[${PYTHON_USEDEP}]
50 -"
51 -RDEPEND="${DEPEND}"
52 -BDEPEND="test? (
53 - dev-python/hypothesis[${PYTHON_USEDEP}]
54 - )
55 -"
56 -
57 -DOCS=( AUTHORS.rst CHANGELOG.rst FAQ.rst README.rst )
58 -
59 -distutils_enable_sphinx docs
60 -distutils_enable_tests pytest
61 -
62 -python_configure_all() {
63 - export ARGON2_CFFI_USE_SYSTEM=1
64 -}
65 -
66 -python_test() {
67 - local deselect=()
68 - [[ ${EPYTHON} == python3.10 ]] && deselect+=(
69 - # fails due to changed Enum repr
70 - tests/test_utils.py::TestParameters::test_repr
71 - )
72 - epytest ${deselect[@]/#/--deselect }
73 -}