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/dill/
Date: Tue, 26 Apr 2022 18:55:52
Message-Id: 1650999173.80f1ae96314638694ed6649a626b557de3a76a3c.mgorny@gentoo
1 commit: 80f1ae96314638694ed6649a626b557de3a76a3c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 26 18:52:53 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 26 18:52:53 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80f1ae96
7
8 dev-python/dill: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/dill/dill-0.3.4.ebuild | 30 ------------------------------
13 1 file changed, 30 deletions(-)
14
15 diff --git a/dev-python/dill/dill-0.3.4.ebuild b/dev-python/dill/dill-0.3.4.ebuild
16 deleted file mode 100644
17 index edfacf4878f7..000000000000
18 --- a/dev-python/dill/dill-0.3.4.ebuild
19 +++ /dev/null
20 @@ -1,30 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( python3_{8..10} )
27 -
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="Serialize all of python (almost)"
31 -HOMEPAGE="https://pypi.org/project/dill/"
32 -SRC_URI="
33 - https://github.com/uqfoundation/dill/archive/${P}.tar.gz
34 - -> ${P}.gh.tar.gz"
35 -S=${WORKDIR}/${PN}-${P}
36 -
37 -LICENSE="BSD"
38 -SLOT="0"
39 -KEYWORDS="amd64 ~arm64 ppc x86 ~amd64-linux ~x86-linux"
40 -
41 -python_test() {
42 - local fail= t
43 - for t in tests/test_*.py; do
44 - ebegin "\t${t}"
45 - "${EPYTHON}" "${t}"
46 - eend || fail=1
47 - done
48 -
49 - [[ ${fail} ]] && die "Tests fail with ${EPYTHON}"
50 -}