Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/argon2-cffi/
Date: Thu, 13 Jan 2022 10:02:20
Message-Id: 1642068124.f7e05c33c1abe33b9df62bf6f5fc37d756d34a66.sam@gentoo
1 commit: f7e05c33c1abe33b9df62bf6f5fc37d756d34a66
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 13 09:54:02 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 13 10:02:04 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7e05c33
7
8 dev-python/argon2-cffi: drop 21.2.0, 21.3.0
9
10 Unsatisfiable deps (needed newer and older pyproject2setuppy).
11
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 dev-python/argon2-cffi/Manifest | 1 -
15 dev-python/argon2-cffi/argon2-cffi-21.2.0.ebuild | 45 ------------------------
16 dev-python/argon2-cffi/argon2-cffi-21.3.0.ebuild | 45 ------------------------
17 3 files changed, 91 deletions(-)
18
19 diff --git a/dev-python/argon2-cffi/Manifest b/dev-python/argon2-cffi/Manifest
20 index 4e1351bfbb5e..9e922e2ac44d 100644
21 --- a/dev-python/argon2-cffi/Manifest
22 +++ b/dev-python/argon2-cffi/Manifest
23 @@ -1,3 +1,2 @@
24 DIST argon2-cffi-21.1.0.tar.gz 1807800 BLAKE2B 47b1e785b7eb173b671a44e9212af76a59f453c3c0d0e5f2c437e7a62132abf86ab6baa8bdd656ad28d00a151296a66211d365c0afe228821c8c1ff1a0a66c46 SHA512 bbfebd2c075f360a6c1c187c0789be2aae7480b9398f36db7bdfe74f288d9e00b44a788918c54f4cc8bb1947136ab0493f61975de408c482a5131e2bf1a8f4d0
25 -DIST argon2-cffi-21.2.0.tar.gz 42399 BLAKE2B d2f1a7e7caf776239f343f5e5f2cd1fcd78f0dbdfc28814e3299df18e5c97a81cafa37bf10733614fe32ddc8d19fa5c5721285e8b96b9172eaf2322a5bb9e529 SHA512 40cdd18106d959bf58f20a35ea84ac3c3859d28ed6cfa28ee81655c12038b4e0f28bfe2d8ee9b96cd6009dfcebe0ef6aa4eb7fa9cd81cad0b32911ca723a8bdd
26 DIST argon2-cffi-21.3.0.tar.gz 38446 BLAKE2B e0464f501efcdfbf33d93e0c1c6dbc519ad6aee06c0b8692417156de608f6c6acf947f86b866c064601fe994087677e51d954ae2c1225cbbbba3534cf70c6296 SHA512 6cb2a075f3bb7040ee7f552d082bfa2f3df0854649d9c84fdfdb42bb4bee2133b8a35a20be2b3c887931efda12fbbb00815d8d88170b7e20b3ca19c86f97057e
27
28 diff --git a/dev-python/argon2-cffi/argon2-cffi-21.2.0.ebuild b/dev-python/argon2-cffi/argon2-cffi-21.2.0.ebuild
29 deleted file mode 100644
30 index 626912c37ddf..000000000000
31 --- a/dev-python/argon2-cffi/argon2-cffi-21.2.0.ebuild
32 +++ /dev/null
33 @@ -1,45 +0,0 @@
34 -# Copyright 1999-2022 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=8
38 -
39 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
40 -DISTUTILS_USE_SETUPTOOLS=pyproject.toml
41 -inherit distutils-r1
42 -
43 -DESCRIPTION="CFFI bindings to the Argon2 password hashing library"
44 -HOMEPAGE="https://github.com/hynek/argon2-cffi"
45 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 -
47 -LICENSE="MIT"
48 -SLOT="0"
49 -KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
50 -
51 -RDEPEND=">=dev-python/argon2-cffi-bindings-21.2.0[${PYTHON_USEDEP}]"
52 -BDEPEND="
53 - <dev-python/pyproject2setuppy-22[${PYTHON_USEDEP}]
54 - test? (
55 - dev-python/hypothesis[${PYTHON_USEDEP}]
56 - )
57 -"
58 -
59 -DOCS=( AUTHORS.rst CHANGELOG.md FAQ.rst README.rst )
60 -
61 -src_prepare() {
62 - # Patch the tool.flit.module.name entry in pyproject.toml to include
63 - # the "src" subfolder. This allows pyproject2setuppy to retrieve the
64 - # dynamic version and description correctly.
65 - sed -i -e 's:^name = "argon2":name = "src/argon2":' \
66 - "pyproject.toml" || die "Unable to patch package name"
67 - # Sphinx's conf.py uses importlib.metadata to determine the package
68 - # version. However, argon2-cffi is not installed when we try to build
69 - # the docs. Therefore, we patch the release version in conf.py.
70 - sed -i -e "/^release/s:= .*:= \"${PV}\":" \
71 - "docs/conf.py" || die "Unable to patch version in docs"
72 - distutils-r1_src_prepare
73 -}
74 -
75 -distutils_enable_sphinx docs \
76 - dev-python/furo \
77 - dev-python/sphinx-notfound-page
78 -distutils_enable_tests pytest
79
80 diff --git a/dev-python/argon2-cffi/argon2-cffi-21.3.0.ebuild b/dev-python/argon2-cffi/argon2-cffi-21.3.0.ebuild
81 deleted file mode 100644
82 index 00502332253a..000000000000
83 --- a/dev-python/argon2-cffi/argon2-cffi-21.3.0.ebuild
84 +++ /dev/null
85 @@ -1,45 +0,0 @@
86 -# Copyright 1999-2021 Gentoo Authors
87 -# Distributed under the terms of the GNU General Public License v2
88 -
89 -EAPI=8
90 -
91 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
92 -DISTUTILS_USE_SETUPTOOLS=pyproject.toml
93 -inherit distutils-r1
94 -
95 -DESCRIPTION="CFFI bindings to the Argon2 password hashing library"
96 -HOMEPAGE="https://github.com/hynek/argon2-cffi"
97 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
98 -
99 -LICENSE="MIT"
100 -SLOT="0"
101 -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
102 -
103 -RDEPEND=">=dev-python/argon2-cffi-bindings-21.2.0[${PYTHON_USEDEP}]"
104 -BDEPEND="
105 - <dev-python/pyproject2setuppy-22[${PYTHON_USEDEP}]
106 - test? (
107 - dev-python/hypothesis[${PYTHON_USEDEP}]
108 - )
109 -"
110 -
111 -DOCS=( AUTHORS.rst FAQ.rst README.rst )
112 -
113 -src_prepare() {
114 - # Patch the tool.flit.module.name entry in pyproject.toml to include
115 - # the "src" subfolder. This allows pyproject2setuppy to retrieve the
116 - # dynamic version and description correctly.
117 - sed -i -e 's:^name = "argon2":name = "src/argon2":' \
118 - "pyproject.toml" || die "Unable to patch package name"
119 - # Sphinx's conf.py uses importlib.metadata to determine the package
120 - # version. However, argon2-cffi is not installed when we try to build
121 - # the docs. Therefore, we patch the release version in conf.py.
122 - sed -i -e "/^release/s:= .*:= \"${PV}\":" \
123 - "docs/conf.py" || die "Unable to patch version in docs"
124 - distutils-r1_src_prepare
125 -}
126 -
127 -distutils_enable_sphinx docs \
128 - dev-python/furo \
129 - dev-python/sphinx-notfound-page
130 -distutils_enable_tests pytest