update & rename prayer-times-calculator-0.0.5

This commit is contained in:
Andreas Billmeier 2021-07-02 19:54:14 +02:00 committed by Andreas Billmeier
parent 0604721dbc
commit 2613bc6ad5
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST prayer-times-calculator-0.0.5.tar.gz 3333 BLAKE2B 3d71d0236e0a4ab6b29829a830b9c9a70471c59ebfe6727a6c391498ae97ce837529f64530e2c517f26fd0e6d8f63e4a65b93506eb87882b0121d0be7a5ed0f6 SHA512 aa7f9a6c328704dde452a7f20c610739cd7ff13508b85e681893df150b777e86ce605e676aa0924588833b4ee8ebb36d8dc89a9bd45f991fd7324eacbd7bef82
EBUILD prayer-times-calculator-0.0.5.ebuild 807 BLAKE2B 9a9f218a8b52f0f26e71d642f9a117a57c92617633f2a1ba4b3443f9c65201f9ff2202031ed3a5ce01804e039b82e70dabbeed7517f475bd13e84fd75ef5006e SHA512 347acaa2cbad3bb0d9b2fb4444425118c2756da0a00cc5a1b58b30e7badcd68ff1af00205b8d03bb27aec6d7156d26fb43a67253f5c3c52e582bc38427ceaa69
MISC metadata.xml 472 BLAKE2B 9bb86eafd516716c2e6c82abd36e9c5bd73e61def7d8150347c55dbf366eb07072863f228a28a7749d98320ca9850eef7f71059ced47aa91101bb0c25f4749bd SHA512 b45b2c18c37e81fccb863837345b50f39ae90d0538f0e074f1d7963edde0e0ee05fcd044681b23d7c4e713d26009684ab2d94da7fadc7c9688d9f80130995fc3

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">prayer-times-calculator</remote-id>
<maintainer status="unknown">
<email>umair.chagani@gmail.com</email>
<name>Umair Chagani</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,34 @@
# 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="Prayer Times Calculator"
HOMEPAGE="https://github.com/uchagani/prayer-times-calculator https://pypi.org/project/prayer-times-calculator/"
MY_PN=${PN//-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS=""
RDEPEND="dev-python/requests[${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
}