dev-python/pathspec: initial import
authorTim Harder <radhermit@gentoo.org>
Sun, 17 Nov 2019 02:09:55 +0000 (19:09 -0700)
committerTim Harder <radhermit@gentoo.org>
Sun, 17 Nov 2019 02:33:59 +0000 (19:33 -0700)
Signed-off-by: Tim Harder <radhermit@gentoo.org>
dev-python/pathspec/Manifest [new file with mode: 0644]
dev-python/pathspec/metadata.xml [new file with mode: 0644]
dev-python/pathspec/pathspec-0.6.0.ebuild [new file with mode: 0644]

diff --git a/dev-python/pathspec/Manifest b/dev-python/pathspec/Manifest
new file mode 100644 (file)
index 0000000..9c3c4f1
--- /dev/null
@@ -0,0 +1 @@
+DIST pathspec-0.6.0.tar.gz 24159 BLAKE2B ac3f75d7f4b3f6d092d216176823f061fe91f3bead10947b01315267655133a0f99a29288283cbeeff7c2c9305c499b4ade1efcdccc554d756ecaaae2f84896c SHA512 e08baa05a3fe58ec6ecd651577834115cdeef26b75eef274d843c3c6444cf771e86f99a2a2b2980a6d1ece946997f1ebe714f79ddd5c296071c2e18b73955a84
diff --git a/dev-python/pathspec/metadata.xml b/dev-python/pathspec/metadata.xml
new file mode 100644 (file)
index 0000000..a3135fd
--- /dev/null
@@ -0,0 +1,12 @@
+<?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">pathspec</remote-id>
+    <remote-id type="github">cpburnz/python-path-specification</remote-id>
+  </upstream>
+</pkgmetadata>
diff --git a/dev-python/pathspec/pathspec-0.6.0.ebuild b/dev-python/pathspec/pathspec-0.6.0.ebuild
new file mode 100644 (file)
index 0000000..867c106
--- /dev/null
@@ -0,0 +1,22 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 python3_{5,6,7,8} pypy{,3} )
+
+inherit distutils-r1
+
+DESCRIPTION="Utility library for gitignore style pattern matching of file paths."
+HOMEPAGE="https://github.com/cpburnz/python-path-specification https://pypi.org/project/pathspec/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc"
+
+BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
+python_test() {
+       esetup.py test
+}