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, 14 Jun 2021 06:51:13
Message-Id: 1623653461.c755f6ea42513e2f3bfbc892dba1a8270d3f43a3.mgorny@gentoo
1 commit: c755f6ea42513e2f3bfbc892dba1a8270d3f43a3
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 14 06:31:58 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 14 06:51:01 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c755f6ea
7
8 dev-python/dill: Bump to 0.3.4
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.4.ebuild | 30 ++++++++++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/dev-python/dill/Manifest b/dev-python/dill/Manifest
17 index 3a0452ee3da..5166b150912 100644
18 --- a/dev-python/dill/Manifest
19 +++ b/dev-python/dill/Manifest
20 @@ -1 +1,2 @@
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.4.ebuild b/dev-python/dill/dill-0.3.4.ebuild
25 new file mode 100644
26 index 00000000000..ad2d9fcfa59
27 --- /dev/null
28 +++ b/dev-python/dill/dill-0.3.4.ebuild
29 @@ -0,0 +1,30 @@
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_{8..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 +}