dev-python/pluggy: New package, ebuild written by me
authorJustin Lecher <jlec@gentoo.org>
Mon, 1 Feb 2016 14:12:07 +0000 (15:12 +0100)
committerJustin Lecher <jlec@gentoo.org>
Mon, 1 Feb 2016 15:44:20 +0000 (16:44 +0100)
Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>
dev-python/pluggy/Manifest [new file with mode: 0644]
dev-python/pluggy/metadata.xml [new file with mode: 0644]
dev-python/pluggy/pluggy-0.3.1.ebuild [new file with mode: 0644]

diff --git a/dev-python/pluggy/Manifest b/dev-python/pluggy/Manifest
new file mode 100644 (file)
index 0000000..76351b4
--- /dev/null
@@ -0,0 +1 @@
+DIST pluggy-0.3.1.tar.gz 15821 SHA256 159cc783e056c07da6552aa5aef6b1e6c0064b4f18bd49c531fd2d40aafb0ea3 SHA512 ebff28ef6d5eb78d8043fcf3860e43dd80bd800c12f6f744ae2a8757815f94034c858dbd6f4ab35dd4c609d4446aeb1783ace4f54ea6c3de6ec295ec06c7abb8 WHIRLPOOL a1b516135fa770c519994e0e1f045ac1c16e9166f169edc6b5fe79a0b68308273c8c28d6db138f7042dfe95d2e97e5bddd1d7fcfcc3b89cf5e4aee2da9d73c23
diff --git a/dev-python/pluggy/metadata.xml b/dev-python/pluggy/metadata.xml
new file mode 100644 (file)
index 0000000..9722362
--- /dev/null
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="project">
+    <email>python@gentoo.org</email>
+    <name>Python</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="pypi">pluggy</remote-id>
+    <maintainer status="unknown">
+      <email>holger@merlinux.eu</email>
+      <name>Holger Krekel</name>
+    </maintainer>
+  </upstream>
+</pkgmetadata>
diff --git a/dev-python/pluggy/pluggy-0.3.1.ebuild b/dev-python/pluggy/pluggy-0.3.1.ebuild
new file mode 100644 (file)
index 0000000..cb12139
--- /dev/null
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_{3,4,5}} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="plugin and hook calling mechanisms for python"
+HOMEPAGE=" http://pypi.python.org/pypi/pluggy"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+       dev-python/setuptools[${PYTHON_USEDEP}]
+       test? (
+               dev-python/pytest[${PYTHON_USEDEP}]
+       )"
+
+python_test() {
+       py.test -v -v || die
+}