dev-python/pytile: add 2023.12.0

Closes: #3154
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-04-03 21:50:36 +02:00
parent 4f41cdd085
commit b7c6958a72
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 32 additions and 5 deletions

View File

@ -617,11 +617,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 1957 Ebuilds in total, 1946 of them have in total 1965 (42 different) licenses assigned.
There are 1958 Ebuilds in total, 1947 of them have in total 1966 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1104|
|MIT|1105|
|Apache-2.0|449|
|GPL-3|129|
|BSD|111|

View File

@ -1,3 +1,5 @@
DIST pytile-2023.12.0.tar.gz 10498 BLAKE2B 040bc376faa7ad931397fb28561a39c594faf8acb20f0ba6403d479e07a840b152a283a15c51a2b8606911a55798943823411233045a8637a1cdff64c5acfeea SHA512 48237541bd422a57f69a2ac2004fa475e20491ff6e5ea30e6a884b62c4dce1fdb85ab27e149c81f9f55546b7ba933fd2fb4be3d3ab0fa5b951cd1448cde6a111
DIST pytile-2023.4.0.tar.gz 10376 BLAKE2B 12532b7c5c75fb5cf691ed5cb403a636f897c0827b5c20acf241dbb312dbaea4116cc338a9e4326896bba6f2be38f5874b61f081ee88e2e257082e59b97b2653 SHA512 c80bbee904c5eb5bc39049ebe44771c86773baf6e726377031940239138d4c690542c8d6e40f58d33b28be6c255982c36226729316febabe8a0a539260b55dde
EBUILD pytile-2023.4.0.ebuild 643 BLAKE2B 7c2663a73f27eb6ecb508ed7a03e1ab006975163d88907e6d41409349a855a4fc24e129f002a51af9cc398c22ec7a9f822a5c1845ee5d4c5301d096881c4c899 SHA512 208d314114b8cdbdfd6c1b5c6c50c2e40b5543dfebd229f9c774262163711135a57d1bd49615d0639256f6afedd82f3f9366979e3d0fadacf3dbc5db4c3cd220
EBUILD pytile-2023.12.0.ebuild 635 BLAKE2B cc97616473ac2fb0a0ecdeaae8c99764d36a31867e20a4f18d9c31451e9b580708b2676586f19e21daf378e1fb8b8061c9c25386a3a8bcefbfe04430e14bf2f4 SHA512 39cabbe30cb3ddd4d4f7d7df85aef9c3daa7d70e52b760b6d6d830e8579465bcf17fe88b43ee0f202ed50cc76fc3cf148e16696b61cbf97fe44c6d8765c5141a
EBUILD pytile-2023.4.0.ebuild 643 BLAKE2B e6850cde4ecb4e1d248e1ff7124265c29e178f4d4f718bca5e879a39e0703bbf39ba5b2233a97e16d9e60b3b6abe6e82d84c8ff717ca40cd41362e463d26100b SHA512 51eaefbd488a4dbc8ec05a4eb4d86e761560a512e3bfb52831439ab7303b192692c942f8c33d10467f70019da567420c19f4280ec19e265a2946dd384b203b64
MISC metadata.xml 504 BLAKE2B 7321b5453aabaecb9ee65fb44b93423ed312e40e128cacd42f7c2d452e9c560df4d9f3114106b3201ab15e43153979ea5e4411a9a67e1a87b78c5fa6d3613711 SHA512 c757fb826eee32520534f699a32e7705fad84c78319a896afa2289838243bf4bb41a9ab40ac0f85fd2f3d5173ca60881cea10bcf0c850a7d2c686fa4a126f9ff

View File

@ -0,0 +1,25 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi
DESCRIPTION="A simple Python API for Tile Bluetooth trackers"
HOMEPAGE="https://github.com/bachya/pytile https://pypi.org/project/pytile/"
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}]
>=dev-python/certifi-2023.07.22[${PYTHON_USEDEP}]
>=dev-python/yarl-1.9.2[${PYTHON_USEDEP}]"
distutils_enable_tests pytest

View File

@ -1,9 +1,9 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi