dev-python/pyrsistent: Bump
authorPatrick Lauer <patrick@gentoo.org>
Wed, 29 Jun 2016 08:53:13 +0000 (10:53 +0200)
committerPatrick Lauer <patrick@gentoo.org>
Wed, 29 Jun 2016 08:53:48 +0000 (10:53 +0200)
Package-Manager: portage-2.3.0

dev-python/pyrsistent/Manifest
dev-python/pyrsistent/pyrsistent-0.11.13.ebuild [new file with mode: 0644]

index 1cd011f9db8816c8a6cafe84aebaa2db8f6f8ab3..cbda766b0c545e4349abbd7134fa1201f85159c6 100644 (file)
@@ -1 +1,2 @@
 DIST pyrsistent-0.11.12.tar.gz 88621 SHA256 255e6e3e1373b93e65158ae0a672a5ba6d01b18f92d8eab319969b81e784fe49 SHA512 66424adb4d1e69d500cfbb2f9dd0d3d5f9678cd7ee7ca02909a714b7351412022cdb9507417318df3027287f0ffed9f2872dd8fb489e236f1769527a81756d1c WHIRLPOOL 04a52d660c901156de93fed94dee337b2f218cce7ab4f7b8434176565216e543c7ff839c421e219ffaa9b20d1914d51a7514463e0f706baae3ad7b89eb9c17ba
+DIST pyrsistent-0.11.13.tar.gz 89444 SHA256 cfbf194cb33b97722f6a3d6efa7b6e7a93b09bb13571266cfc9c1556fdb26f29 SHA512 0911fd49598ea35a8a95cbda7ee28175b4708be1b3fe23340e731c7735e2436f6ec9ad390482e02dc51e337c6b9803920471ab76540b003e99a20b00649fbfe1 WHIRLPOOL 50a57cb2e2f2cd9d88587a229a890b0da46151bdb393b1acf5f42f3d6cfc58b561b5998ab9b7bcfd2c21c68d54c2929f2c017b3c1073d5f1a92c6f4865d51b59
diff --git a/dev-python/pyrsistent/pyrsistent-0.11.13.ebuild b/dev-python/pyrsistent/pyrsistent-0.11.13.ebuild
new file mode 100644 (file)
index 0000000..0a6c588
--- /dev/null
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Persistent/Functional/Immutable data structures"
+HOMEPAGE="https://github.com/tobgu/pyrsistent/ http://pypi.python.org/pypi/pyrsistent"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="
+       dev-python/six[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+       dev-python/setuptools[${PYTHON_USEDEP}]
+       test? (
+               dev-python/hypothesis[${PYTHON_USEDEP}]
+               dev-python/pytest[${PYTHON_USEDEP}]
+       )"
+
+# https://github.com/tobgu/pyrsistent/issues/
+# fails
+#RESTRICT="test"
+
+python_test() {
+       export PYTHONPATH="${S}:${PYTHONPATH}"
+       py.test -v -v -x || die ${PYTHONPATH}
+}