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: Sun, 06 Nov 2022 07:59:34
Message-Id: 1667721561.428ac45c4f42c3aada0edb063b1a5d20f34bac84.mgorny@gentoo
1 commit: 428ac45c4f42c3aada0edb063b1a5d20f34bac84
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 6 07:37:05 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 6 07:59:21 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=428ac45c
7
8 dev-python/dill: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/dill/Manifest | 1 -
13 dev-python/dill/dill-0.3.5.1.ebuild | 35 -----------------------------------
14 2 files changed, 36 deletions(-)
15
16 diff --git a/dev-python/dill/Manifest b/dev-python/dill/Manifest
17 index 30211d4ca627..e02d5488759c 100644
18 --- a/dev-python/dill/Manifest
19 +++ b/dev-python/dill/Manifest
20 @@ -1,2 +1 @@
21 -DIST dill-0.3.5.1.gh.tar.gz 161203 BLAKE2B 2f778f3d2792d5606f8a5d7fd7d993490592da5ade701a38a270f756d129ad49f2aa44277fcb1f69a14779fe2541e2a720dc643ebd0fad258725d5d9452c048f SHA512 3dcf5e262110031412d9dfaee5548fed80bfc4d6b404cddbc2d9a6f65e2b80fae45a622ef73768e7996d2fc9e8d2757ac04e2a73f3700c526037dbabaa8adf15
22 DIST dill-0.3.6.gh.tar.gz 171608 BLAKE2B 3b0c6f20218230685c91c10edb4d9bfdbb913464903ce03c92c85ad607ab3973c61c39f9a9807d55c1d3aa3736f5de4575e5beb0784f2b17f0af850210bebd61 SHA512 921bd5122b9b90fd3426a7af5fc8ba70d09b92d740951f5db5d481abb280915d722410f174ab028134acff9a3659899c8f315242caa7a44d8e4b38dd02bb1fa3
23
24 diff --git a/dev-python/dill/dill-0.3.5.1.ebuild b/dev-python/dill/dill-0.3.5.1.ebuild
25 deleted file mode 100644
26 index 434de8bec1ad..000000000000
27 --- a/dev-python/dill/dill-0.3.5.1.ebuild
28 +++ /dev/null
29 @@ -1,35 +0,0 @@
30 -# Copyright 1999-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
39 -
40 -DESCRIPTION="Serialize all of Python (almost)"
41 -HOMEPAGE="
42 - https://github.com/uqfoundation/dill/
43 - https://pypi.org/project/dill/
44 -"
45 -SRC_URI="
46 - https://github.com/uqfoundation/dill/archive/${P}.tar.gz
47 - -> ${P}.gh.tar.gz
48 -"
49 -S=${WORKDIR}/${PN}-${P}
50 -
51 -LICENSE="BSD"
52 -SLOT="0"
53 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
54 -
55 -python_test() {
56 - local fail= t
57 - for t in tests/test_*.py; do
58 - ebegin "\t${t}"
59 - "${EPYTHON}" "${t}"
60 - eend ${?} || fail=1
61 - done
62 -
63 - [[ ${fail} ]] && die "Tests fail with ${EPYTHON}"
64 -}