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/pymacaroons/
Date: Wed, 30 Nov 2022 13:22:11
Message-Id: 1669814522.ee47cae863f20fa01883f67808a481f341fddcac.mgorny@gentoo
1 commit: ee47cae863f20fa01883f67808a481f341fddcac
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 30 13:05:58 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 30 13:22:02 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee47cae8
7
8 dev-python/pymacaroons: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pymacaroons/pymacaroons-0.13.0.ebuild | 39 ------------------------
13 1 file changed, 39 deletions(-)
14
15 diff --git a/dev-python/pymacaroons/pymacaroons-0.13.0.ebuild b/dev-python/pymacaroons/pymacaroons-0.13.0.ebuild
16 deleted file mode 100644
17 index a2bee30a6ff0..000000000000
18 --- a/dev-python/pymacaroons/pymacaroons-0.13.0.ebuild
19 +++ /dev/null
20 @@ -1,39 +0,0 @@
21 -# Copyright 2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -DISTUTILS_USE_PEP517=setuptools
27 -PYTHON_COMPAT=( python3_{9..10} )
28 -
29 -inherit distutils-r1
30 -
31 -DESCRIPTION="PyMacaroons is a Python implementation of Macaroons."
32 -HOMEPAGE="
33 - https://github.com/ecordell/pymacaroons
34 - https://pypi.org/project/pymacaroons/
35 -"
36 -SRC_URI="https://github.com/ecordell/pymacaroons/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
37 -
38 -LICENSE="MIT"
39 -SLOT="0"
40 -KEYWORDS="amd64 ~ppc64"
41 -IUSE="test"
42 -
43 -RESTRICT="!test? ( test )"
44 -
45 -RDEPEND="
46 - dev-python/pynacl[${PYTHON_USEDEP}]
47 - dev-python/six[${PYTHON_USEDEP}]
48 -"
49 -BDEPEND="test? (
50 - dev-python/mock[${PYTHON_USEDEP}]
51 - dev-python/nose[${PYTHON_USEDEP}]
52 - )
53 -"
54 -
55 -python_test() {
56 - # The package also contains property_tests, however, they are incompatible
57 - # with dev-python/hypothesis in gentoo. The package requires too old version.
58 - "${EPYTHON}" -m nose -v tests/functional_tests || die "Tests failed with ${EPYTHON}"
59 -}