Gentoo Archives: gentoo-commits

From: Patrick Lauer <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyrsistent/
Date: Wed, 29 Jun 2016 08:54:28
Message-Id: 1467190428.07680821d37479183ab256b0b87694410d60f52e.patrick@gentoo
1 commit: 07680821d37479183ab256b0b87694410d60f52e
2 Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 08:53:13 2016 +0000
4 Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 08:53:48 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07680821
7
8 dev-python/pyrsistent: Bump
9
10 Package-Manager: portage-2.3.0
11
12 dev-python/pyrsistent/Manifest | 1 +
13 dev-python/pyrsistent/pyrsistent-0.11.13.ebuild | 37 +++++++++++++++++++++++++
14 2 files changed, 38 insertions(+)
15
16 diff --git a/dev-python/pyrsistent/Manifest b/dev-python/pyrsistent/Manifest
17 index 1cd011f..cbda766 100644
18 --- a/dev-python/pyrsistent/Manifest
19 +++ b/dev-python/pyrsistent/Manifest
20 @@ -1 +1,2 @@
21 DIST pyrsistent-0.11.12.tar.gz 88621 SHA256 255e6e3e1373b93e65158ae0a672a5ba6d01b18f92d8eab319969b81e784fe49 SHA512 66424adb4d1e69d500cfbb2f9dd0d3d5f9678cd7ee7ca02909a714b7351412022cdb9507417318df3027287f0ffed9f2872dd8fb489e236f1769527a81756d1c WHIRLPOOL 04a52d660c901156de93fed94dee337b2f218cce7ab4f7b8434176565216e543c7ff839c421e219ffaa9b20d1914d51a7514463e0f706baae3ad7b89eb9c17ba
22 +DIST pyrsistent-0.11.13.tar.gz 89444 SHA256 cfbf194cb33b97722f6a3d6efa7b6e7a93b09bb13571266cfc9c1556fdb26f29 SHA512 0911fd49598ea35a8a95cbda7ee28175b4708be1b3fe23340e731c7735e2436f6ec9ad390482e02dc51e337c6b9803920471ab76540b003e99a20b00649fbfe1 WHIRLPOOL 50a57cb2e2f2cd9d88587a229a890b0da46151bdb393b1acf5f42f3d6cfc58b561b5998ab9b7bcfd2c21c68d54c2929f2c017b3c1073d5f1a92c6f4865d51b59
23
24 diff --git a/dev-python/pyrsistent/pyrsistent-0.11.13.ebuild b/dev-python/pyrsistent/pyrsistent-0.11.13.ebuild
25 new file mode 100644
26 index 0000000..0a6c588
27 --- /dev/null
28 +++ b/dev-python/pyrsistent/pyrsistent-0.11.13.ebuild
29 @@ -0,0 +1,37 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Persistent/Functional/Immutable data structures"
41 +HOMEPAGE="https://github.com/tobgu/pyrsistent/ http://pypi.python.org/pypi/pyrsistent"
42 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
47 +IUSE="test"
48 +
49 +RDEPEND="
50 + dev-python/six[${PYTHON_USEDEP}]
51 +"
52 +DEPEND="${RDEPEND}
53 + dev-python/setuptools[${PYTHON_USEDEP}]
54 + test? (
55 + dev-python/hypothesis[${PYTHON_USEDEP}]
56 + dev-python/pytest[${PYTHON_USEDEP}]
57 + )"
58 +
59 +# https://github.com/tobgu/pyrsistent/issues/
60 +# fails
61 +#RESTRICT="test"
62 +
63 +python_test() {
64 + export PYTHONPATH="${S}:${PYTHONPATH}"
65 + py.test -v -v -x || die ${PYTHONPATH}
66 +}