bump prayer-times-calculator-0.0.6

This commit is contained in:
Andreas Billmeier 2022-09-03 12:39:01 +02:00 committed by Andreas Billmeier
parent 5acdf32168
commit 0ad97c991e
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 43 additions and 6 deletions

View File

@ -523,11 +523,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
## Licenses
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
There are 1860 Ebuilds in total, 1853 of them have in total 1865 (35 different) licenses assigned.
There are 1861 Ebuilds in total, 1854 of them have in total 1866 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1128|
|MIT|1129|
|Apache-2.0|341|
|GPL-3|114|
|BSD|106|

View File

@ -1,3 +1,5 @@
DIST prayer-times-calculator-0.0.5.tar.gz 3333 BLAKE2B 3d71d0236e0a4ab6b29829a830b9c9a70471c59ebfe6727a6c391498ae97ce837529f64530e2c517f26fd0e6d8f63e4a65b93506eb87882b0121d0be7a5ed0f6 SHA512 aa7f9a6c328704dde452a7f20c610739cd7ff13508b85e681893df150b777e86ce605e676aa0924588833b4ee8ebb36d8dc89a9bd45f991fd7324eacbd7bef82
EBUILD prayer-times-calculator-0.0.5.ebuild 830 BLAKE2B fc9c4d8bedc5fca1c7d9b59dc45f0140ea25a99e0583ce58bf8a74800607c668f988867a03cbfab43d441a089c004a05fc0dc86f2942916c39c3042907a02e71 SHA512 51b14b3b32dbb0365a737dfd803511a92ec2337b02310c8ffb0df4c671749f0c95c6ddc372f2b8b0ff51ffe746a14f857e051a5d35a4398728dc7dc1e874fa9b
DIST prayer-times-calculator-0.0.6.tar.gz 3441 BLAKE2B f13393f8cf9bd61243b29c8d71ae6aee57a3654db9984cd0a3578730f32a34a826b86bd50079ed1d27a3dcae2d8e9ae8bda72236d3dd9deb7e1503b4e64ae396 SHA512 79236b0d0990a0adf5a6b235f4bf7b323619c1df442707880d54b06db8821632d1da7595f3525a4a3a2eb824fce9fb5ed60535e5314c157d5681eb6c50c99921
EBUILD prayer-times-calculator-0.0.5.ebuild 804 BLAKE2B 89d89645f80ae70dbcd1b266457a35306e75428c5ac60b9cbbedefbd3337f323dd35769a345d2de7a476f271a94d5bd4cfa27cb9fbbd9369dfe1b82dd6adeba9 SHA512 e1f4148da64be473674550a7394393cb56de6488a0235a875f73760025dbfe01bec51f1c0dbc255324f84ee548e2ce3ac542765609c3115c95db1be809cbb43b
EBUILD prayer-times-calculator-0.0.6.ebuild 814 BLAKE2B 4229878ae09df6e9983ca452586e389057c346655415c6e4784e3a41a2a99f54f4c09f4734ba53907aa9c9697f6bd262bd7fd25935e3fd36d81e981b81bc9099 SHA512 60fc21e33cfa76623633fe2da16a89d35d18c2278b5bf3457b77573ee8ded992e36655f79aa5ce86674bf9371c29296332c7f0999dfe62d8e96860ae3b325471
MISC metadata.xml 472 BLAKE2B 9bb86eafd516716c2e6c82abd36e9c5bd73e61def7d8150347c55dbf366eb07072863f228a28a7749d98320ca9850eef7f71059ced47aa91101bb0c25f4749bd SHA512 b45b2c18c37e81fccb863837345b50f39ae90d0538f0e074f1d7963edde0e0ee05fcd044681b23d7c4e713d26009684ab2d94da7fadc7c9688d9f80130995fc3

View File

@ -1,9 +1,9 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
@ -15,7 +15,7 @@ S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"

View File

@ -0,0 +1,35 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
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"
IUSE="test"
RESTRICT="!test? ( test )"
#DOCS="README.MD"
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
}