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: Mon, 02 Nov 2020 09:49:10
Message-Id: 1604310531.6af931ab308d03b137fc6e6e01e51a2be3382c7f.mgorny@gentoo
1 commit: 6af931ab308d03b137fc6e6e01e51a2be3382c7f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 2 07:48:50 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 2 09:48:51 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6af931ab
7
8 dev-python/dill: Bump to 0.3.3
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 insertions(+)
15
16 diff --git a/dev-python/dill/Manifest b/dev-python/dill/Manifest
17 index 8e822f26c21..8a6cf96ba1c 100644
18 --- a/dev-python/dill/Manifest
19 +++ b/dev-python/dill/Manifest
20 @@ -1 +1,2 @@
21 DIST dill-0.3.2.gh.tar.gz 148972 BLAKE2B a807350a2d2bb84e705d20c9c60d47834b41863b862a5d347ebc32273c1b9479c568cd3018126adb1cd052bb00f50e8424f7118b37524329458150b9a3e59e3d SHA512 74a0c01dd7c0126c7de21a3b3660e51486fec17f64f23b8e7f23b70243209908573fef8851f6eda53868e89ef1a8a5e351a3ef81dd9cb3e122a2dba33a86bbe1
22 +DIST dill-0.3.3.gh.tar.gz 149103 BLAKE2B b08830ad1eb47ceb29c6be6ae88ab38338d9a8a325188bc3890b71c7f393792988da4962819f9b82bf7ad9ebd668c96989ef8c55072a2c82483660c4ec01d072 SHA512 bb514c37902412380d99f38293d5cb9d3d6a6643a34e59e6e889c89d845f9b83e9fa3fa9f0a75218575aa56670f287144f2b00abc8359b5fc6cb450351b43b68
23
24 diff --git a/dev-python/dill/dill-0.3.3.ebuild b/dev-python/dill/dill-0.3.3.ebuild
25 new file mode 100644
26 index 00000000000..32554341e09
27 --- /dev/null
28 +++ b/dev-python/dill/dill-0.3.3.ebuild
29 @@ -0,0 +1,30 @@
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..9} )
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 +}