update holidays-0.11.2

This commit is contained in:
Andreas Billmeier 2021-08-07 08:11:09 +02:00 committed by Andreas Billmeier
parent 3a3c161af5
commit bc35fc9255
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 38 additions and 0 deletions

View File

@ -1,5 +1,7 @@
DIST holidays-0.10.5.2.tar.gz 121756 BLAKE2B 6d59859d4c8bbda47e7e3cda36e9e35f2c3016f80075cab103eb668af19418d2a08923ef1b927ecd9b4bef1446a6eef0eedcb05ebf5cf1a7f15861747c4866ce SHA512 03718664a643a2af3e954fc00960730799c3ea468f4079a73b492cefe2be0ab0553c94eeacdaf14a80a1824a45f0a6ef2c36a161c08597919f821b0c3bc43afd
DIST holidays-0.11.1.tar.gz 90565 BLAKE2B 0d5e86285bd2b18f7ae6bdbb5fc4f2bf7815b4c6c3bfe15b1fdb51980fd8b5fd4dba32f16e9fde517b0057b98d54814a7ca6cc2d697545cfa5e2a0529da9e284 SHA512 ee87b4042cd13ff06a14968acb165182ba268fca0fe967577cda3a1f7e6e563f3a5424c690aa956df6c91f3886d00143a639b85790d8695a9e51e9a3be248d65
DIST holidays-0.11.2.tar.gz 97279 BLAKE2B 7e4521091583087352a6a79c6ac28df29fd2b1e0c3cea310574c3fcef4be2603a65011cf0a9c3243b71658b58e6de7deec91a6af3eae70f093916a8fa006872d SHA512 42fd76209c232755cad99636f05a04c127b528ff8a129782204920067fb260ba2e7ca79058c9f856a3b11bf775f64b54488f95111bd4cf8f9e5b507027ab4437
EBUILD holidays-0.10.5.2-r1.ebuild 929 BLAKE2B cf07a9105cd630042abbd890df081572cf6ddd829e4c7dc1c37d4f44589a5b36ebc3ccd06654c79df809289884b1addeaba898a5e25723da9d0c22204c8786c6 SHA512 96d0a6291013761c1b7044345219491730f2692859342c6f83450511e2736755d7c52de18b411f1b2b9e4dc6210826d15ca3e9f756b80c7a993bc093a1b8193d
EBUILD holidays-0.11.1.ebuild 930 BLAKE2B 0638b870181c8785252b84f40b81ff00226acdee55ac286313f2b43ecc175b2d6875c41e46652d3d135477a559f3571127f853e0892da8af485363f25a46c611 SHA512 bd9a0cd1cf49064f00b3fe52684ce7edb760208b0231ee2b65b7b0f4a25c425b627d7d1d9718e4b50397569645c98c60ad6ca351e7b6a118f6be0181dff5f696
EBUILD holidays-0.11.2.ebuild 925 BLAKE2B e5240fa4d52b0953986ca036b68307ebcd71d518d1c29abfd4f203f27b51ac59c74b6b88d81f2a9f0938be0c8ef14d89c515641153c4139070a92d4c55700a44 SHA512 6ac369a84eb7399848cb9f13abd68e82fb715dff3ae00eb94717aa9526d6a361f87a4309d9cc7a511c20f2598fb3e30be6df2d48079600536ce2b614903c412b
MISC metadata.xml 456 BLAKE2B 21261fe82e9179daaac3941be5460289b839f741fc30cf0f9af3780ea12e369701fd4a38fafcd8848f2c130a30fa50d707342b92e31fa09895d7bdfe2b88bf1b SHA512 51dc05362a104a8fcbfb24f884583015ebdea5c058e64fc8efae6e32135b6a3ae3af54b9554fd25c10eec0efaa0695f0dfadcca67fe9c000bb34d79669f45b46

View File

@ -0,0 +1,36 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Generate and work with holidays in Python"
HOMEPAGE="https://github.com/dr-prodigy/python-holidays https://pypi.org/project/holidays/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86 amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND="dev-python/python-dateutil[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
>=dev-python/convertdate-2.3.0[${PYTHON_USEDEP}]
dev-python/korean-lunar-calendar[${PYTHON_USEDEP}]
dev-python/hijri-converter[${PYTHON_USEDEP}]"
BDEPEND="
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
}