dev-python/globre: version bump.
authorPatrice Clement <monsieurp@gentoo.org>
Mon, 23 Jul 2018 08:43:32 +0000 (10:43 +0200)
committerPatrice Clement <monsieurp@gentoo.org>
Wed, 25 Jul 2018 17:27:47 +0000 (19:27 +0200)
Package-Manager: Portage-2.3.40, Repoman-2.3.9

dev-python/globre/Manifest
dev-python/globre/globre-0.1.5.ebuild [new file with mode: 0644]

index efe358f3482be2a5e6d5aa53aaf3766fa5127b8a..6913e886b45f10e78ee14d3d089ff0824ec1e4f2 100644 (file)
@@ -1 +1,2 @@
 DIST globre-0.1.4.tar.gz 19274 BLAKE2B 6b05f531e9a3819f9916d16679a39c2a281056446afc8f395ba16dcccd25878355c749820c8b1fcfdd1e855ec7a8d0f10cc5a23e3a4e77c877e0e7180e9c24dd SHA512 288b2a6e9e1b7e646f7b06db73b255f9710007c0305466a8d4e26245ab73efb14e5b543291937edb3f0d1dd9205391a08a073d106f4ed687e2a21d181a83840b
+DIST globre-0.1.5.tar.gz 20388 BLAKE2B cc3dce578d4c30d0309a60a054dfea11b53d5039adcc3251fedccc1ee8a8ceb70e844799e8a7fffb398d0f8022a51ff2460a74102d1c39f1e49d5fa2eb8fe07b SHA512 8b102150acd17a77c8c3ce1f01e36f0c9258a051b44348b6d9494ea9d2f8247bb534de250c5d506641d889042107f3b93c05a313ed46ae54f6fb47ae997ffdfa
diff --git a/dev-python/globre/globre-0.1.5.ebuild b/dev-python/globre/globre-0.1.5.ebuild
new file mode 100644 (file)
index 0000000..310157c
--- /dev/null
@@ -0,0 +1,27 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_4 python3_5 python3_6 )
+
+inherit distutils-r1
+
+DESCRIPTION="A glob matching library, providing an interface similar to the 're' module"
+HOMEPAGE="https://pypi.org/project/globre/ https://github.com/metagriffin/globre"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-3+"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+DEPEND="
+       dev-python/setuptools[${PYTHON_USEDEP}]
+       test? (
+               >=dev-python/nose-1.3.0[${PYTHON_USEDEP}]
+       )"
+
+python_test() {
+       nosetests --verbose || die
+}