dev-python/pytile: drop 2022.2.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2023-11-02 22:04:48 +01:00
committed by onkelbeh
parent 52859558b8
commit 53e6892fc8
4 changed files with 4 additions and 39 deletions
+2 -2
View File
@@ -612,11 +612,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 1911 Ebuilds in total, 1900 of them have in total 1919 (40 different) licenses assigned.
There are 1910 Ebuilds in total, 1899 of them have in total 1918 (40 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1098|
|MIT|1097|
|Apache-2.0|417|
|GPL-3|123|
|BSD|105|
+1 -3
View File
@@ -1,5 +1,3 @@
DIST pytile-2022.2.0.tar.gz 7537 BLAKE2B 027a6258a67dbbabe52c260abe03800b685540468aaa29429c462a14e8fe15f39b1c6bce227c4942676e457bc2fea1a3c9c1211c7fd8dc6b30673f3d7b9732e1 SHA512 46551222e61ad98452fb69d0d1ff2584673122cec76efaddae848157aa6bf6c91b669e2b9e84b3e0f8acd08562ae300361f9858353d373e661cf25973638271e
DIST pytile-2023.4.0.tar.gz 10376 BLAKE2B 12532b7c5c75fb5cf691ed5cb403a636f897c0827b5c20acf241dbb312dbaea4116cc338a9e4326896bba6f2be38f5874b61f081ee88e2e257082e59b97b2653 SHA512 c80bbee904c5eb5bc39049ebe44771c86773baf6e726377031940239138d4c690542c8d6e40f58d33b28be6c255982c36226729316febabe8a0a539260b55dde
EBUILD pytile-2022.2.0.ebuild 702 BLAKE2B 2cec6c97d027c2691012eeb826800577ae5e93f81454bf6a1fbfedc8dfd9346fffa6d15efce567ef383562a58a4f42962f6d6b6467028428c3c8b2c31f344922 SHA512 ed6b9ee45ea61df0570522b4aa01217d06f8307fc86d6608150afc7412141e31fa8e5bf9cac340393e050eb6a0eb0b9d97de2322fef1099b62d8757ceaf4289c
EBUILD pytile-2023.4.0.ebuild 683 BLAKE2B 14285350dcd99fcd9afa4a7202790f97ba75b50d8a8e71913b19d7cd4ccefd9eda9249e4844975f17211b5fb45c89d3aba1ea516a0a9691f6f55e9c113da808b SHA512 432a205b543e64a35f63dfde86f002b9d5f7523a71b7941acaee5d7f4192ad159e08685c81b7986c1633b7d9b35006aee74020d6936d93426fb4cc9ebf0f8218
EBUILD pytile-2023.4.0.ebuild 684 BLAKE2B 84c053b322028b92caa83a9be757b10549bb0689013f160cf206361581010e9bdd17979499f676674999a359b519905247317e284db4d9acc084ce91f0853be8 SHA512 5ac0940d0084d9da2ba76ed423d87c0059785c060f911bcbcb01d7150a8f9c54195e64784309c071c416ee04b731187ac4f5be94422d234df8535dc18086934e
MISC metadata.xml 504 BLAKE2B 7321b5453aabaecb9ee65fb44b93423ed312e40e128cacd42f7c2d452e9c560df4d9f3114106b3201ab15e43153979ea5e4411a9a67e1a87b78c5fa6d3613711 SHA512 c757fb826eee32520534f699a32e7705fad84c78319a896afa2289838243bf4bb41a9ab40ac0f85fd2f3d5173ca60881cea10bcf0c850a7d2c686fa4a126f9ff
-33
View File
@@ -1,33 +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="A simple Python API for Tile Bluetooth trackers"
HOMEPAGE="https://github.com/bachya/pytile https://pypi.org/project/pytile/"
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.8.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest
+1 -1
View File
@@ -3,7 +3,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi