dev-python/aadict: 0.2.3
authorSebastian Pipping <sping@gentoo.org>
Fri, 10 Mar 2017 23:30:02 +0000 (00:30 +0100)
committerSebastian Pipping <sping@gentoo.org>
Fri, 10 Mar 2017 23:36:37 +0000 (00:36 +0100)
Package-Manager: Portage-2.3.4, Repoman-2.3.2

dev-python/aadict/Manifest
dev-python/aadict/aadict-0.2.3.ebuild [new file with mode: 0644]

index eccd927b85679553da81f49b0690609b5fd541ad..0c1c17797c45a6d6ef609605de6efe1b1ad23eca 100644 (file)
@@ -1 +1,2 @@
 DIST aadict-0.2.2.tar.gz 17698 SHA256 491d75eedad3d1d45204fdda3b70a12f6982d242d927dac68a7dbe69270b5491 SHA512 883ab22b036bbfc81ff97ab90d3d7246aea7cfc7b9e0bdd1f8e74e7036c003128002ba7bc645bb14f54a1e47423ecdb09969968127e71da0398e9f9398c2dd3f WHIRLPOOL 948d6914af59426c016d642cfff50939588fe40a214180bb1bb0621da1ad096f5f2af4a811b6ea60445125daa794feee9429246ff89bb25a6e71c0fb51a51f20
+DIST aadict-0.2.3.tar.gz 16511 SHA256 a77328ac55dbb5735da99441870251befe135f687ab707a7a178561363b27704 SHA512 16f3ff59f41d5dd1f9504ed11d660636766758332a0317544253daef9d76f2fdfc654add6346ad809e56e2be51c1f19a645c1047ef01e1e4aee8db24afcab113 WHIRLPOOL d6923d762cf858955cfec7d8bb806dac425ba5a01565c81a0f6970a0e71bee2ee4397c4bc1ed25f0cd123174962903d175ee9c2c2a615e2a461b8a53ccd170c1
diff --git a/dev-python/aadict/aadict-0.2.3.ebuild b/dev-python/aadict/aadict-0.2.3.ebuild
new file mode 100644 (file)
index 0000000..ec99c9d
--- /dev/null
@@ -0,0 +1,30 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{4,5} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="An auto-attribute dict (and a couple of other useful dict functions)"
+HOMEPAGE="https://github.com/metagriffin/aadict http://pypi.python.org/pypi/aadict"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="
+       >=dev-python/six-1.6.0[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+       dev-python/setuptools[${PYTHON_USEDEP}]
+       test? (
+               >=dev-python/nose-1.3.0[${PYTHON_USEDEP}]
+       )"
+
+python_test() {
+       nosetests --verbose || die
+}