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, 26 Mar 2020 20:35:27
Message-Id: 1585254897.d96d6da745578e350a1e576373c2fa15536295f8.mgorny@gentoo
1 commit: d96d6da745578e350a1e576373c2fa15536295f8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 26 20:30:41 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 26 20:34:57 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d96d6da7
7
8 dev-python/dill: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/dill/Manifest | 2 --
13 dev-python/dill/dill-0.2.5.ebuild | 21 ---------------------
14 dev-python/dill/dill-0.3.0.ebuild | 27 ---------------------------
15 3 files changed, 50 deletions(-)
16
17 diff --git a/dev-python/dill/Manifest b/dev-python/dill/Manifest
18 index 62fd9439c6e..92665692295 100644
19 --- a/dev-python/dill/Manifest
20 +++ b/dev-python/dill/Manifest
21 @@ -1,3 +1 @@
22 -DIST dill-0.2.5.tgz 60572 BLAKE2B 43877e36cb62406b486f5619a54db0a4983f70b0a1712e39bcd77aa892fd17dc9ea774b85faa48441beaf993296a877249ff321fd0977a1317eeb25d0b020d80 SHA512 94942a736b4c2e1558eb9475f9bafe3a24f88a976abf9880beec386497a2bc769cb9be6bbfd2baac006c92578c372f5dfcfa165c5649876ea5076a3b207de6fc
23 -DIST dill-0.3.0.tar.gz 151375 BLAKE2B 11f22f18c5491633a2a3136d6993c59a1078d478f2e45d40e5a71fd9929527f4db98fe261d406c2cceb0cbafa277f620a17068123c73d85a44dc2252be138845 SHA512 d3e36716ec264fab2532264e82dedf2a0923ed11f2517b3df6e5576159d5701f336125e7967a37f4c80c37f60abf584b9f7cd4225ed68f942dca7af500c091cf
24 DIST dill-0.3.1.1.tar.gz 151986 BLAKE2B 71b364730805974117cb00965a2276aa240b6265f2a98ae8e70ca2f9d8bf7a4b801fac083f2395932fdc016de3f068fb46091f296910ce96725bc982e774a40a SHA512 e61610451972522316d7ed6bc8287e38521fcd2e6736b43200ae498f24596994caec92313be1da71cf1b536fbbe01505673fc8018bfcbaf7705147a294565ab9
25
26 diff --git a/dev-python/dill/dill-0.2.5.ebuild b/dev-python/dill/dill-0.2.5.ebuild
27 deleted file mode 100644
28 index 98b1dd978b6..00000000000
29 --- a/dev-python/dill/dill-0.2.5.ebuild
30 +++ /dev/null
31 @@ -1,21 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -PYTHON_COMPAT=( python3_{6,7} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Serialize all of python (almost)"
41 -HOMEPAGE="https://pypi.org/project/dill/"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tgz"
43 -
44 -LICENSE="BSD"
45 -SLOT="0"
46 -KEYWORDS="amd64 ~arm64 ppc x86 ~amd64-linux ~x86-linux"
47 -IUSE=""
48 -
49 -PATCHES=(
50 - "${FILESDIR}/${P}-avoid-installation-binaries.patch"
51 - "${FILESDIR}/${P}-remove-install_requires.patch"
52 -)
53
54 diff --git a/dev-python/dill/dill-0.3.0.ebuild b/dev-python/dill/dill-0.3.0.ebuild
55 deleted file mode 100644
56 index 6f550ad0469..00000000000
57 --- a/dev-python/dill/dill-0.3.0.ebuild
58 +++ /dev/null
59 @@ -1,27 +0,0 @@
60 -# Copyright 1999-2020 Gentoo Authors
61 -# Distributed under the terms of the GNU General Public License v2
62 -
63 -EAPI=7
64 -PYTHON_COMPAT=( python3_{6,7} )
65 -
66 -inherit distutils-r1
67 -
68 -DESCRIPTION="Serialize all of python (almost)"
69 -HOMEPAGE="https://pypi.org/project/dill/"
70 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
71 -
72 -LICENSE="BSD"
73 -SLOT="0"
74 -KEYWORDS="~amd64 ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux"
75 -IUSE=""
76 -
77 -python_test() {
78 - local fail= t
79 - for t in tests/test_*.py; do
80 - ebegin "\t${t}"
81 - "${EPYTHON}" "${t}"
82 - eend || fail=1
83 - done
84 -
85 - [[ ${fail} ]] && die "Tests fail with ${EPYTHON}"
86 -}