From 675e7bbb1f06a1bce7e7d14fd78db0ace5e513ea Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Tue, 28 Feb 2023 07:04:43 +0100 Subject: [PATCH] dev-python/pyairnow: add 1.2.1 Signed-off-by: Andreas Billmeier --- README.md | 4 +-- dev-python/pyairnow/Manifest | 2 ++ dev-python/pyairnow/pyairnow-1.2.1.ebuild | 31 +++++++++++++++++++++++ 3 files changed, 35 insertions(+), 2 deletions(-) create mode 100644 dev-python/pyairnow/pyairnow-1.2.1.ebuild diff --git a/README.md b/README.md index fe6766ad1..bfd695a5c 100644 --- a/README.md +++ b/README.md @@ -573,11 +573,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 1734 Ebuilds in total, 1723 of them have in total 1727 (34 different) licenses assigned. +There are 1735 Ebuilds in total, 1724 of them have in total 1728 (34 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|1011| +|MIT|1012| |Apache-2.0|372| |GPL-3|107| |BSD|91| diff --git a/dev-python/pyairnow/Manifest b/dev-python/pyairnow/Manifest index 8a0597253..b284db82f 100644 --- a/dev-python/pyairnow/Manifest +++ b/dev-python/pyairnow/Manifest @@ -1,3 +1,5 @@ DIST pyairnow-1.1.0.tar.gz 8492 BLAKE2B ae9263d3d0eabbc94ad36704a3b928b73278620a146995867b097f1b87dd42224e2c70c6381e0ce7b5d627cdb646660a78b14facbc8f958fdc876fc8768dba03 SHA512 3ed00b057b4ca7107fd4b08c5968a71ac924d4603f4848626763cf6a265fca97a2d2bcb3dc5284909d224023dbf9bd1103c85a226db7758f8bc63a244d0ce7c1 +DIST pyairnow-1.2.1.tar.gz 7516 BLAKE2B 912991f0bfd24d1aee156002942d8a43d8b05cdc69f30b181ce267bd8dfca72ad7bd46b6a1c69c8c107658e2432ff56b16740eee0523612b606e2e32a94bf8ed SHA512 d5964074aeaca25203d71de4cdfbfd74ad91a3cc2bc5c726a56e9bf1cede3d963116da5534aa88f05a65f02989fc12fd286dd2b4ce16bf1247186ed061a44467 EBUILD pyairnow-1.1.0.ebuild 721 BLAKE2B c61fa0943ffe8062d4d3183b98c62f1652aa495ff7f223771c5e9833d3d307faa8c63622a855358f443fcbbd377cf78a20616e09475b9804b212daab1d8d2a14 SHA512 80546a67cb70dbebe24d2fe8315c1f8cc73ebfc4cadd5785848a23c44961bdb640def4e4442b95307638a50ac350f0c15e09221c7d9dac7c30c85b3696807db4 +EBUILD pyairnow-1.2.1.ebuild 706 BLAKE2B b20007b80390ae772257b53d8d83c92bfcd39c903e8702e6dfa7d8abf9740c2ed660105efb8fa76267e8cfb656fc03195a56ce914fbdedd27b6d04cf0e318064 SHA512 966aee72da74a5842cd24d5328e3c7454c276828efa2efae5853688fc7f6b6cc4ac76f644e72ce7dc4e8c3092c11296d4fa017b259964f91e4dcc0afca363963 MISC metadata.xml 517 BLAKE2B 6c89dbc83965da9b1b961df4bde3bbfd2c6151147acd9c3bf70159c98f6a29cb22a3e6b7e7ee8dd476523b371ef3ca5568fdd5eaa432fd1601de5d8f9ee284ca SHA512 69f1c9bf8abeea7eee45257683f2c4d72e45d5f1e8afe24f0568abaa35378b30ba6b63412ed85b16b3012af7cfd00d46f590787c64f04caa462528d1e9e1cd96 diff --git a/dev-python/pyairnow/pyairnow-1.2.1.ebuild b/dev-python/pyairnow/pyairnow-1.2.1.ebuild new file mode 100644 index 000000000..b0590488e --- /dev/null +++ b/dev-python/pyairnow/pyairnow-1.2.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +DISTUTILS_USE_PEP517=poetry +PYTHON_COMPAT=( python3_{9..11} ) +inherit distutils-r1 + +DESCRIPTION="A lightweight Python wrapper for EPA AirNow Air Quality API" +HOMEPAGE="https://github.com/asymworks/pyairnow https://pypi.org/project/pyairnow/" +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-3.6.2[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + )" + +python_test() { + py.test -v -v || die +} + +distutils_enable_tests pytest