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/pyspnego/
Date: Tue, 31 May 2022 10:30:36
Message-Id: 1653993028.1229e04868698964bd7d6dd2aa797428caf358a2.mgorny@gentoo
1 commit: 1229e04868698964bd7d6dd2aa797428caf358a2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 31 09:58:47 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue May 31 10:30:28 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1229e048
7
8 dev-python/pyspnego: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pyspnego/Manifest | 1 -
13 dev-python/pyspnego/pyspnego-0.5.1.ebuild | 44 -------------------------------
14 2 files changed, 45 deletions(-)
15
16 diff --git a/dev-python/pyspnego/Manifest b/dev-python/pyspnego/Manifest
17 index 193a7045c21b..348ca37b23ba 100644
18 --- a/dev-python/pyspnego/Manifest
19 +++ b/dev-python/pyspnego/Manifest
20 @@ -1,2 +1 @@
21 -DIST pyspnego-0.5.1.tar.gz 325941 BLAKE2B b6acb16ff91dc5c0e4b738d729096e60346e8fc74c153d567f8d766a027b96733a00c6d26104fc9fe871974d92079e89ac899f79b7920ff87fba0475e399ef8f SHA512 d5632783103359d056f2c6597d06b134147705c42a63d52c71c6007542c0fc2a8e8255872944e8153b605fe231d26f80af79f17fd5cb19ffb7b2ee560a931aa5
22 DIST pyspnego-0.5.2.tar.gz 328222 BLAKE2B 7c811948d1d3890e2d03f4a532b9c0158195684b0cdee915811b1ee3bfa791b84632edb6d098562aa7b9f4c36eb00f244e249340b4de557999ec2a0f176ebd1e SHA512 805da232d138edaf4094614df0ebc4840f0c1b9deb9586026bffe0ec17d54553e4d3876ffc53d87b13687b741951a68334369f0f2475cf2f12359f072dc6a0c8
23
24 diff --git a/dev-python/pyspnego/pyspnego-0.5.1.ebuild b/dev-python/pyspnego/pyspnego-0.5.1.ebuild
25 deleted file mode 100644
26 index 261f1db15a3e..000000000000
27 --- a/dev-python/pyspnego/pyspnego-0.5.1.ebuild
28 +++ /dev/null
29 @@ -1,44 +0,0 @@
30 -# Copyright 2021-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_PEP517=setuptools
36 -PYTHON_COMPAT=( python3_{8..10} )
37 -
38 -inherit distutils-r1 optfeature
39 -
40 -DESCRIPTION="Library to handle SPNEGO and CredSSP authentication"
41 -HOMEPAGE="https://pypi.org/project/pyspnego/ https://github.com/jborean93/pyspnego"
42 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="MIT"
45 -SLOT="0"
46 -KEYWORDS="amd64 ~arm arm64 ~riscv x86"
47 -
48 -RDEPEND="
49 - dev-python/cryptography[${PYTHON_USEDEP}]
50 -"
51 -BDEPEND="
52 - test? (
53 - dev-python/gssapi[${PYTHON_USEDEP}]
54 - >=dev-python/krb5-0.3.0[${PYTHON_USEDEP}]
55 - dev-python/pytest-mock[${PYTHON_USEDEP}]
56 - dev-python/ruamel-yaml[${PYTHON_USEDEP}]
57 - )
58 -"
59 -
60 -distutils_enable_tests pytest
61 -
62 -EPYTEST_DESELECT=(
63 - # https://github.com/jborean93/pyspnego/issues/33
64 - 'tests/test_auth.py::test_kerberos_auth_keytab[negotiate-False]'
65 - 'tests/test_auth.py::test_kerberos_auth_keytab[negotiate-True]'
66 - 'tests/test_auth.py::test_kerberos_auth_ccache[negotiate-False]'
67 - 'tests/test_auth.py::test_kerberos_auth_env_cache[negotiate-False]'
68 -)
69 -
70 -pkg_postinst() {
71 - optfeature "Kerberos authentication" "dev-python/gssapi >=dev-python/krb5-0.3.0"
72 - optfeature "YAML output support" "dev-python/ruamel-yaml"
73 -}