bump PyEssent

This commit is contained in:
Andreas Billmeier 2019-06-02 13:03:33 +02:00
parent 88d0bdf6ed
commit e06cc2b845
2 changed files with 32 additions and 0 deletions

View File

@ -1,3 +1,5 @@
DIST PyEssent-0.10.tar.gz 2677 BLAKE2B 0644da7ff8c6ad00d34857cbda8c3bd27a470f8e009f4c1faedf5598ca927f828b27ee9bf248e2a53276c6b4eed0d31514102aa3fcc47137a4367533dc546a7b SHA512 f116815a988c98e41f95a0b98334cd4efb7cf566bb0f6cbb19f7c68334932c01a4238ddedf057ad531aaa8eb398c145982ea8d1cf07602dce5ad721c292e1713
DIST PyEssent-0.12.tar.gz 2714 BLAKE2B ab0b3613812dc3c851aa17859ecbdf8bd966389eafdd2db96a26467fe19f183c62162efed6bd8a856c57faed7230ead91e42fee1b0dbe571585dd8cae5a4bce1 SHA512 95d7f17fe117ca636ec34620fc815923b3e704d26111d723797641333cec2df6f864c7a26fbb17f2d4691aed927465d908d98357430928ca26c6b8bcd7e709a2
EBUILD PyEssent-0.10.ebuild 668 BLAKE2B 41fb139a37f1e992673daf8396725ed5c162f608d678a3df524b2cbb5482748b0c31cf82b1dce8f4825fc9774ece8f2cd9349a928287e709dd88d183d12e918d SHA512 69ecb4846f3348a1efeb099ec4bd809fde90fab1448e9de0245538ec9f6cb3f939c60878189fca80f16e26347388a39654d06f1638a0c59980366fd4fe7e84ba
EBUILD PyEssent-0.12.ebuild 668 BLAKE2B 41fb139a37f1e992673daf8396725ed5c162f608d678a3df524b2cbb5482748b0c31cf82b1dce8f4825fc9774ece8f2cd9349a928287e709dd88d183d12e918d SHA512 69ecb4846f3348a1efeb099ec4bd809fde90fab1448e9de0245538ec9f6cb3f939c60878189fca80f16e26347388a39654d06f1638a0c59980366fd4fe7e84ba
MISC metadata.xml 462 BLAKE2B fc1d43a30389fcd94f075adc2ba2b92d0a38c983d53b263550d91b348b2b2be929c8a60f1cf9e4be5801a817988ec07b796d162fde3ecbd7564503cc308eb758 SHA512 c6f19a397fac37f4b5c90b67f774dc981029eed1d0046cbc0167b5d019ac947592433c76850ea51e5064ea4a98416add87dfbbaacd8d9731fc51cd73c251265f

View File

@ -0,0 +1,30 @@
# Copyright 1999-2019 Gentoo Authors Andreas Billmeier b (at) edevau.net
# Distributed under the terms of the GNU General Public License v3.0
EAPI="7"
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="A wrapper around Essent's API"
HOMEPAGE=" https://pypi.org/project/PyEssent/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}