dev-python/hijri-converter: update SRC_URI
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
d64c372c1d
commit
150f5a96a0
@ -1,5 +1,5 @@
|
||||
DIST hijri-converter-2.2.2.tar.gz 34238 BLAKE2B c4de73f6f341e290f9c7fef5d273243c9b20977540cc4c6484a29f343112c364af782be7d876bbc92f1708fea35577583e833784a0494328e1ca0d08d08eb48f SHA512 0eaa264cad251062d1f3dda26e0cc2a2526673cfb662e90516054102546db4fc792bb5a531f3a4cbb1aeba340a81b3ae8c0edeecee840c154a30509d61ffd6a8
|
||||
DIST hijri-converter-2.2.4.tar.gz 34899 BLAKE2B 749d50ed8f669766d4b605dbec30173c69be7a0a66eb7bcbfc65a915ad5c340a75f0948a045edafa4111a9c0386b8a502c92236168e691535dac95aeb0a08705 SHA512 3d11bf642c97ad5b2dd50f0015d69ba7f63557ab0977fd174418e3ee2ae4406189b571ce9f0e0f7960ea13248206ba12287d63a7090bb0781d3b9baf7b79dd98
|
||||
EBUILD hijri-converter-2.2.2.ebuild 665 BLAKE2B e44a7fbbc22d337006e2b470e621d47a955ad9fb8b3b0d9ce310548fe1ed289e64cff81b87edea2f16b47c935948236a65800b3998216c99850c84e733523a4a SHA512 84efadcb70e78b4e680333738daa34b67803c797a7c7d6493fd4cdcaa3f46cf645449b5c88e245dff8ad2d49082d9742e5af9a4dd087f91dedd045204e395989
|
||||
EBUILD hijri-converter-2.2.4.ebuild 696 BLAKE2B 4b786a289c1bc89fd6493a3e426753a00ec2b702864e0d7f8f3417dbeff68fbe3f384baa044632d12ee8b407c4fd472a7c5c711c1a82a8a4f68e8a2c8cc274ac SHA512 118945ec66a9ba289d656848c406fafda42d98a7a4ef3989d5a8ae604a5b54d8445d3e6e6292259235b4f537b73cc0675b1cbbe9ebc0f2b3d6d2acefab80e376
|
||||
EBUILD hijri-converter-2.2.2.ebuild 527 BLAKE2B 5609b92649e0536520a275f7e479673e8715334f14cba6419414fb99e8c60dff2618ae7bfbc5c1e9d937edcd1b5f402dc3c8b00f0e1921c66365f6d196139fe5 SHA512 883f6b30725dd2ac7342d81be465d1a00c426d50339617cc8acc09e49062b51b46487ad7d83fc4696dca85c624e4ba98b7775ab28fb8f9792b2f9f1ea3bb4e49
|
||||
EBUILD hijri-converter-2.2.4.ebuild 661 BLAKE2B 9fe1010543c685184bca875be2c97be1e9d2d73bb85034770ef0a8b83c027d0dc76151b6e8585d929c6056109b772b501558a16a565f8c38a36d643e212cccf8 SHA512 2147f4db2e11faa0930f8cbd3eb4204d837f05092590150d8c0647a8a53e36ce16b75bbbb087c74ec20f26b45dc580a87ea22de23f069ec1c63764c299245437
|
||||
MISC metadata.xml 402 BLAKE2B 7274a3fb932bea1d74f82b8aff6fc723ca69373ba3c231231ddd67d4a8e7460574e2a31f0f325d8dee651fcb53c04bff9b8974dad760b9d7088b5be8b7463e13 SHA512 e5a29e5e0807b9164d4b5518398953e83eb85b63c39556b1a8d5e1a4e1e98d074d7fb867557678687f7507e59348c5dc332000c05571547d085dd00cbc0496e0
|
||||
|
||||
@ -1,15 +1,15 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYPI_NO_NORMALIZE=1
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Accurate Hijri-Gregorian dates converter based on the Umm al-Qura calendar"
|
||||
HOMEPAGE="https://github.com/dralshehri/hijri-converter https://pypi.org/project/hijri-converter/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
@ -18,13 +18,3 @@ IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
@ -1,15 +1,15 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYPI_NO_NORMALIZE=1
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Accurate Hijri-Gregorian dates converter based on the Umm al-Qura calendar"
|
||||
HOMEPAGE="https://github.com/dralshehri/hijri-converter https://pypi.org/project/hijri-converter/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
@ -20,7 +20,6 @@ RESTRICT="!test? ( test )"
|
||||
DOCS="README.md"
|
||||
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user