dev-python/python-awair: change SRC_URI, drop olds
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
0020fea0d6
commit
0a0f830c12
@ -612,13 +612,13 @@ 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 1893 Ebuilds in total, 1882 of them have in total 1901 (40 different) licenses assigned.
|
||||
There are 1891 Ebuilds in total, 1880 of them have in total 1899 (40 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1092|
|
||||
|MIT|1091|
|
||||
|Apache-2.0|410|
|
||||
|GPL-3|123|
|
||||
|GPL-3|122|
|
||||
|BSD|102|
|
||||
|GPL-2|27|
|
||||
|LGPL-3|24|
|
||||
|
@ -1,5 +1,3 @@
|
||||
DIST python-awair-0.2.3.tar.gz 14240 BLAKE2B c57ebc6c377c9f9b7254eebac2a75c5b28df1fa7633d32659d229a0fa57f5d1791430e82115ddc1035da7f78ae7a36b30386564cfa44a73cfeda5d1067c95192 SHA512 aa3260d906f17e0371cb5f8b299913c0a789b269a90d02856ade84417f1b16e0c3409a5f6b795bc7a8d30414ceffdbd4502267d0e7b98533ea669bac5cd63257
|
||||
DIST python-awair-0.2.4.tar.gz 14302 BLAKE2B a4f57957cdad66cfb02ac31693fd705e73f02d39031f42e29d5129593e7d0e339c75624c3a49e7a9901a67684a4636d527552604944749626cadc0ca4179cf13 SHA512 0576a7ff05f715598497e8c095612315e9345294ddc45e2c5f854efd3a4ba1e151a05f519937399ebc95fb2fccb6bcd30205e8fea954195ef2295a75e754b86b
|
||||
EBUILD python-awair-0.2.3.ebuild 729 BLAKE2B ee3598a552198e93b5e0088e5f68106068c8aa875ba385ab5fc56ea714c211791d1fce10c1aaa997f5d655e5fe515c03d30bf2aaf9ad2d2ca05324c5b4bee23b SHA512 c2a92dfb11e7852d8587627684e831ba87f52d26e51876403b0655f3945f3e31aba5418c6292aa612cab4ea1e2955fc089a77e13d3d2cecb1965df8c75a8fbc8
|
||||
EBUILD python-awair-0.2.4.ebuild 771 BLAKE2B b05ee5f888a9a2fb64e484a092596b48b15122299555478cd3f2d1074a716c601be8fd51c17d54842dedace55a5db6ddeac8fd4cf74758639b04239bca77dd9f SHA512 d8f9fe635f14133e4204be4d0f848029dc32f0ed087cb89ad8cbe26eda6c8dccf6a4520c494a63cb7f1e810062990a49996c363181f33873e399a639f605a412
|
||||
EBUILD python-awair-0.2.4.ebuild 731 BLAKE2B a372dc2aef08e3c653cadf45dd666d22aa89c3133cb6042301a47d38e95ea49efb5eaf9d83921e72df5d9861caba328e90b773e6b9063c716598a2b8451b2834 SHA512 6a8e5ac5e143648e300b1d874092c1f4921aa7a6c43fd9f831b18e9890f1abaf77bbe28171df3e5967cc1db9ba9156620508cf68449cef8c17c08dc9aad3b98b
|
||||
MISC metadata.xml 523 BLAKE2B c8f5c1cec2695c42edeffd16b4d4124f70ae0f794a980189fe5770ec4f29a518616525f25e568a7385d07e9f21beb313cbc36bd575644c895d236f8f6f0d06ef SHA512 70d5d0f40d6fcd3993db8031821aa5d12f7eca2d272a1ed2500366b399d53d739995cf55f8a49ceb7e4a1144d0172146b15bbeec0ffcc30de82da9cd5273116d
|
||||
|
@ -1,32 +0,0 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="asyncio client for the Awair GraphQL API"
|
||||
HOMEPAGE="https://github.com/ahayworth/python_awair https://pypi.org/project/python-awair/"
|
||||
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.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/voluptuous-0.11.7[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
@ -1,15 +1,14 @@
|
||||
# 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=poetry
|
||||
PYPI_NO_NORMALIZE=1
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="asyncio client for the Awair GraphQL and Local APIs"
|
||||
HOMEPAGE="https://github.com/ahayworth/python_awair https://pypi.org/project/python-awair/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
@ -22,7 +21,6 @@ DOCS="README.md"
|
||||
RDEPEND=">=dev-python/aiohttp-3.6.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/voluptuous-0.11.7[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
Loading…
x
Reference in New Issue
Block a user