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: Sat, 24 Jul 2021 17:30:14
Message-Id: 1627147794.ac06241a3f954e260e37bff5d561bd28e7268392.mgorny@gentoo
1 commit: ac06241a3f954e260e37bff5d561bd28e7268392
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 24 15:18:54 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 24 17:29:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac06241a
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.3.ebuild | 30 ------------------------------
14 2 files changed, 31 deletions(-)
15
16 diff --git a/dev-python/dill/Manifest b/dev-python/dill/Manifest
17 index 5166b150912..4635e25b6cd 100644
18 --- a/dev-python/dill/Manifest
19 +++ b/dev-python/dill/Manifest
20 @@ -1,2 +1 @@
21 -DIST dill-0.3.3.gh.tar.gz 149103 BLAKE2B b08830ad1eb47ceb29c6be6ae88ab38338d9a8a325188bc3890b71c7f393792988da4962819f9b82bf7ad9ebd668c96989ef8c55072a2c82483660c4ec01d072 SHA512 bb514c37902412380d99f38293d5cb9d3d6a6643a34e59e6e889c89d845f9b83e9fa3fa9f0a75218575aa56670f287144f2b00abc8359b5fc6cb450351b43b68
22 DIST dill-0.3.4.gh.tar.gz 152875 BLAKE2B 61c638f0459b94f5cc0dabd9d5fd224c3c010ab6ccc9b7e47943922e7e139bd74c7a5173657febb028fc79632792f807586e271316ad87bb505520163f85a300 SHA512 1b1991909a9782382ecdb2ada13249c8b446d3558de69501280c816f7cd6c6728f9d3303c826461245ab9e42c43c02e4605142f25e09244bb7ccc9ca68a4b565
23
24 diff --git a/dev-python/dill/dill-0.3.3.ebuild b/dev-python/dill/dill-0.3.3.ebuild
25 deleted file mode 100644
26 index e8db905be3d..00000000000
27 --- a/dev-python/dill/dill-0.3.3.ebuild
28 +++ /dev/null
29 @@ -1,30 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{7..10} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Serialize all of python (almost)"
40 -HOMEPAGE="https://pypi.org/project/dill/"
41 -SRC_URI="
42 - https://github.com/uqfoundation/dill/archive/${P}.tar.gz
43 - -> ${P}.gh.tar.gz"
44 -S=${WORKDIR}/${PN}-${P}
45 -
46 -LICENSE="BSD"
47 -SLOT="0"
48 -KEYWORDS="amd64 ~arm64 ppc x86 ~amd64-linux ~x86-linux"
49 -
50 -python_test() {
51 - local fail= t
52 - for t in tests/test_*.py; do
53 - ebegin "\t${t}"
54 - "${EPYTHON}" "${t}"
55 - eend || fail=1
56 - done
57 -
58 - [[ ${fail} ]] && die "Tests fail with ${EPYTHON}"
59 -}