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: Thu, 30 Jul 2020 20:41:19
Message-Id: 1596141659.109820d89b24b18cce757a38d860947c2e62f38f.mgorny@gentoo
1 commit: 109820d89b24b18cce757a38d860947c2e62f38f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 30 20:38:13 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 30 20:40:59 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=109820d8
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.1.1.ebuild | 27 ---------------------------
14 2 files changed, 28 deletions(-)
15
16 diff --git a/dev-python/dill/Manifest b/dev-python/dill/Manifest
17 index 27046d21661..8e822f26c21 100644
18 --- a/dev-python/dill/Manifest
19 +++ b/dev-python/dill/Manifest
20 @@ -1,2 +1 @@
21 -DIST dill-0.3.1.1.tar.gz 151986 BLAKE2B 71b364730805974117cb00965a2276aa240b6265f2a98ae8e70ca2f9d8bf7a4b801fac083f2395932fdc016de3f068fb46091f296910ce96725bc982e774a40a SHA512 e61610451972522316d7ed6bc8287e38521fcd2e6736b43200ae498f24596994caec92313be1da71cf1b536fbbe01505673fc8018bfcbaf7705147a294565ab9
22 DIST dill-0.3.2.gh.tar.gz 148972 BLAKE2B a807350a2d2bb84e705d20c9c60d47834b41863b862a5d347ebc32273c1b9479c568cd3018126adb1cd052bb00f50e8424f7118b37524329458150b9a3e59e3d SHA512 74a0c01dd7c0126c7de21a3b3660e51486fec17f64f23b8e7f23b70243209908573fef8851f6eda53868e89ef1a8a5e351a3ef81dd9cb3e122a2dba33a86bbe1
23
24 diff --git a/dev-python/dill/dill-0.3.1.1.ebuild b/dev-python/dill/dill-0.3.1.1.ebuild
25 deleted file mode 100644
26 index c1896db8f75..00000000000
27 --- a/dev-python/dill/dill-0.3.1.1.ebuild
28 +++ /dev/null
29 @@ -1,27 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{6,7,8,9} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Serialize all of python (almost)"
40 -HOMEPAGE="https://pypi.org/project/dill/"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="amd64 ~arm64 ppc x86 ~amd64-linux ~x86-linux"
46 -
47 -python_test() {
48 - local fail= t
49 - for t in tests/test_*.py; do
50 - ebegin "\t${t}"
51 - "${EPYTHON}" "${t}"
52 - eend || fail=1
53 - done
54 -
55 - [[ ${fail} ]] && die "Tests fail with ${EPYTHON}"
56 -}