Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/zict/
Date: Wed, 25 Jul 2018 17:29:29
Message-Id: 1532539661.96a28f06eb3edb496b4fd7535f937465d7dcbcc4.monsieurp@gentoo
1 commit: 96a28f06eb3edb496b4fd7535f937465d7dcbcc4
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 23 08:39:19 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 25 17:27:41 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96a28f06
7
8 dev-python/zict: version bump.
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 dev-python/zict/Manifest | 1 +
13 dev-python/zict/zict-0.1.3.ebuild | 30 ++++++++++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/dev-python/zict/Manifest b/dev-python/zict/Manifest
17 index de70af65568..7a0098a5ee1 100644
18 --- a/dev-python/zict/Manifest
19 +++ b/dev-python/zict/Manifest
20 @@ -1 +1,2 @@
21 DIST zict-0.1.2.tar.gz 10839 BLAKE2B 6256e6202f6cca1db025d21c42b98163ad897ceda6a1b878e75165b358ec0a4b9150f04ecdc05f5408dd74c97212b8301d1f45d91f92dad138789570ffcfa562 SHA512 13fc6647bc1506bc5e8f69d39a07851a06634949ce917f294762ff3143c8a539117f8731b103df2663708fa1e8c968359985d9c4273aa952f500a89019c176e3
22 +DIST zict-0.1.3.tar.gz 11199 BLAKE2B f91c51888816b3b3693ee272379e36c58141afeba14cf25eff9e1416cd59900ca9ab146d7fe806a22939e97dfb3f1657e443eb1420f4d5170a3723df32c3d73b SHA512 2051ff589f9dfc822ceb6a0adebb62e7b782bd426be5035163e78031814927dca221bfcc27ce47fb3d0287b1ec7e1ff120ccebf150e447df213aaa2136f744a4
23
24 diff --git a/dev-python/zict/zict-0.1.3.ebuild b/dev-python/zict/zict-0.1.3.ebuild
25 new file mode 100644
26 index 00000000000..7879fdb202c
27 --- /dev/null
28 +++ b/dev-python/zict/zict-0.1.3.ebuild
29 @@ -0,0 +1,30 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Mutable mapping tools"
40 +HOMEPAGE="https://github.com/dask/zict/"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
46 +IUSE="test"
47 +
48 +RDEPEND="dev-python/HeapDict[${PYTHON_USEDEP}]"
49 +DEPEND="
50 + dev-python/setuptools[${PYTHON_USEDEP}]
51 + test? (
52 + dev-python/HeapDict[${PYTHON_USEDEP}]
53 + dev-python/lmdb[${PYTHON_USEDEP}]
54 + dev-python/pytest[${PYTHON_USEDEP}]
55 + )"
56 +
57 +python_test() {
58 + py.test || die
59 +}