dev-python/croniter: version bump to 0.3.15
authorZac Medico <zmedico@gentoo.org>
Wed, 15 Mar 2017 07:19:20 +0000 (00:19 -0700)
committerZac Medico <zmedico@gentoo.org>
Wed, 15 Mar 2017 07:19:20 +0000 (00:19 -0700)
Package-Manager: Portage-2.3.4, Repoman-2.3.2

dev-python/croniter/Manifest
dev-python/croniter/croniter-0.3.15.ebuild [new file with mode: 0644]

index 6b8a52072ca7dfaf3648be75a75c1554c906f3ca..2cc808261da7d1883d7080335f848bdadfc21c44 100644 (file)
@@ -1 +1,2 @@
 DIST croniter-0.3.11.tar.gz 13647 SHA256 38fa316e95990a2d7f45bc7c29edb0c4777e87ac5dd49b102e67d0dae304492b SHA512 3413df2df1ad19e15a6914b387f841112bb65c87e9c315cb70a7b4b83ba737e17b1663950d4d5a758d231e1ac3a2dfda92814fb4506b0c5291641d64a0a79be1 WHIRLPOOL 68233a5844f645ee096d1967eb0b00f9bc593b0e4c2e92e29636140b705c683c32c9cb2d361c95cb0f879c2a0f88f24c3fc159fcc2068044ff06fec0e56c5e3f
+DIST croniter-0.3.15.tar.gz 15953 SHA256 ac0c9811ebdecd27bc29eb0711e2d87c8c280a53d0e92c48b600654d23b1d541 SHA512 88ade63242cc5f0038809c67ba3e5adf36457628eb01f1db8dc99a2d59db8f36b1b0beb9e1ecfa4d8d2bdd1c4f7d9b1cb6d7677851489f64b55ee5fd3fa91304 WHIRLPOOL 5a6bde0eafb737e6971c3fde74e23eb5d2c984d7bba22925e7bfabbd470b67d68e98c5b162a32055534566ea8c36063c05cdbcf3a89171fe21f8fd882a0f8b37
diff --git a/dev-python/croniter/croniter-0.3.15.ebuild b/dev-python/croniter/croniter-0.3.15.ebuild
new file mode 100644 (file)
index 0000000..bccced4
--- /dev/null
@@ -0,0 +1,23 @@
+# 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,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python module to provide iteration for datetime object"
+HOMEPAGE="https://github.com/kiorky/croniter https://pypi.python.org/pypi/croniter"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+       test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+
+python_test() {
+       py.test -v src/croniter/tests || die "tests failed"
+}