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/expects/
Date: Fri, 17 Mar 2023 17:27:04
Message-Id: 1679074016.4e3f8748fa249ffbcca8568fb24cab8918768cf9.mgorny@gentoo
1 commit: 4e3f8748fa249ffbcca8568fb24cab8918768cf9
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 17 17:20:15 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 17 17:26:56 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e3f8748
7
8 dev-python/expects: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/expects/expects-0.9.0.ebuild | 26 --------------------------
13 1 file changed, 26 deletions(-)
14
15 diff --git a/dev-python/expects/expects-0.9.0.ebuild b/dev-python/expects/expects-0.9.0.ebuild
16 deleted file mode 100644
17 index a49e7b71d656..000000000000
18 --- a/dev-python/expects/expects-0.9.0.ebuild
19 +++ /dev/null
20 @@ -1,26 +0,0 @@
21 -# Copyright 1999-2023 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( python3_{9..10} )
27 -
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="Expressive and extensible TDD/BDD assertion library for Python"
31 -HOMEPAGE="https://github.com/jaimegildesagredo/expects"
32 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
33 -
34 -LICENSE="Apache-2.0"
35 -SLOT="0"
36 -KEYWORDS="amd64 arm64"
37 -IUSE="test"
38 -RESTRICT="!test? ( test )"
39 -
40 -BDEPEND="test? ( dev-python/mamba[${PYTHON_USEDEP}] )"
41 -
42 -distutils_enable_sphinx docs
43 -
44 -python_test() {
45 - mamba || die "tests failed under ${EPYTHON}"
46 -}