bump pyairvisual-2022.7.0
This commit is contained in:
parent
ab3230a5cb
commit
699c184cf0
@ -526,11 +526,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 1803 Ebuilds in total, 1796 of them have in total 1806 (35 different) licenses assigned.
|
||||
There are 1804 Ebuilds in total, 1797 of them have in total 1807 (35 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1090|
|
||||
|MIT|1091|
|
||||
|Apache-2.0|330|
|
||||
|GPL-3|109|
|
||||
|BSD|103|
|
||||
|
||||
@ -1,3 +1,5 @@
|
||||
DIST pyairvisual-2022.7.0.tar.gz 12655 BLAKE2B 498385c6a49ea9c72804125c39c5479385f6b4f8233cc209a577b660a3e036e57a2054353e3c84e1a18b0763c4cfffde2dc21540943b39d546dc50ef6682d232 SHA512 76eeb5338bff0931e9520ca7e1812d262eb8a76d1294d6d3c80e518d016eaaba573c1ca0758fd9930c41c36b1bc77384a425b8854c7350e83964de47a75b74e4
|
||||
DIST pyairvisual-5.0.9.tar.gz 12229 BLAKE2B 690c39f322e9c4fc5b5e3dee4c86e818709bf46c896211ea87da5593ac992590633d4f36e889b7ce105ff6d5c1db78ec48f9b0e775ec571dc3b00c7ee8d14e33 SHA512 d3c28d2d77ed1691e1c730b5f813ecd658656528b3544ffa231570bc7a36e7fbfeabeaf204c68202ad25dbf5233d7e811afae37674a2645a9253e3a8fe6982a9
|
||||
EBUILD pyairvisual-5.0.9.ebuild 758 BLAKE2B a0e73c789e5053f1db4934da7d79392648161042206291ff4043cf9ee35ff3ea2e0948055c9cdd7c75749fbeefd3df55e48b4a123944188ab93ae29ea5f48f04 SHA512 4401dee9956b9a2d49df22dd657801305a6d9751a9052a19d89d11c18d32892e6b9a0030dc42e5bc851eeb28052ebd22363f2730675d8b45fdc19d150a9ba03f
|
||||
EBUILD pyairvisual-2022.7.0.ebuild 764 BLAKE2B 31dc4a959bfabb3be0b06cc3aff6d3f5993b896ff7eaacade4313ae03b3ea6c9982de9bf2aadc541b146b69d81bb9fc1a87c771ffe4ccda55f064eefe5abf549 SHA512 da7c026e9b599f6f4fce333f54ae38220ba6a10000b8f078ef722fd57bc0713c90c9753b3d24c0699d16209876296c5dd8578bbd8130190b81e64045b9c245c9
|
||||
EBUILD pyairvisual-5.0.9.ebuild 733 BLAKE2B 629e1085ea10b0993028bf3ed8d9931249b4f348385a057c0829e43910f1d4b8e14bdcc997fad0d15e61955b38d373cded6b45fc222aff63a6494468a6f90570 SHA512 8d985d8812184e9215425ebb1695405cd8d4c7a90f2d3e786e9559f2532f999ad07b9c112dc3197a11055dfa3c1709bcbac67cd859d4b6911bcd7b713351938d
|
||||
MISC metadata.xml 454 BLAKE2B 0ad63bc8b075a7c218498efde8194a939e09eddb42373145a5c571b216ec1d90fb9fce09bd4c12aa26cd0bf92a318be980de40f869d7406352f788420d2c0a66 SHA512 4cd251da2f321f856f09488c892605d9cba760ff35d1b0b9ff0173888f03b2f264bd36f6aa30a63fd375ca402afedf7f84e28d9b373701d59b85ed7d7cfd86e0
|
||||
|
||||
35
dev-python/pyairvisual/pyairvisual-2022.7.0.ebuild
Normal file
35
dev-python/pyairvisual/pyairvisual-2022.7.0.ebuild
Normal 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..10} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="A simple API for AirVisual air quality data"
|
||||
HOMEPAGE="https://github.com/bachya/pyairvisual https://pypi.org/project/pyairvisual/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND="dev-python/aiohttp[${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
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
||||
@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm ~arm64 x86 amd64-linux ~x86-linux"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user