Skip to content

Commit b7c6958

Browse files
committed
dev-python/pytile: add 2023.12.0
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3154 Signed-off-by: Andreas Billmeier <[email protected]>
1 parent 4f41cdd commit b7c6958

File tree

4 files changed

+32
-5
lines changed

4 files changed

+32
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -617,11 +617,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
617617

618618
## Licenses
619619
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.
620-
There are 1957 Ebuilds in total, 1946 of them have in total 1965 (42 different) licenses assigned.
620+
There are 1958 Ebuilds in total, 1947 of them have in total 1966 (42 different) licenses assigned.
621621

622622
|License| Ebuilds using it|
623623
|-------|-----|
624-
|MIT|1104|
624+
|MIT|1105|
625625
|Apache-2.0|449|
626626
|GPL-3|129|
627627
|BSD|111|

dev-python/pytile/Manifest

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
DIST pytile-2023.12.0.tar.gz 10498 BLAKE2B 040bc376faa7ad931397fb28561a39c594faf8acb20f0ba6403d479e07a840b152a283a15c51a2b8606911a55798943823411233045a8637a1cdff64c5acfeea SHA512 48237541bd422a57f69a2ac2004fa475e20491ff6e5ea30e6a884b62c4dce1fdb85ab27e149c81f9f55546b7ba933fd2fb4be3d3ab0fa5b951cd1448cde6a111
12
DIST pytile-2023.4.0.tar.gz 10376 BLAKE2B 12532b7c5c75fb5cf691ed5cb403a636f897c0827b5c20acf241dbb312dbaea4116cc338a9e4326896bba6f2be38f5874b61f081ee88e2e257082e59b97b2653 SHA512 c80bbee904c5eb5bc39049ebe44771c86773baf6e726377031940239138d4c690542c8d6e40f58d33b28be6c255982c36226729316febabe8a0a539260b55dde
2-
EBUILD pytile-2023.4.0.ebuild 643 BLAKE2B 7c2663a73f27eb6ecb508ed7a03e1ab006975163d88907e6d41409349a855a4fc24e129f002a51af9cc398c22ec7a9f822a5c1845ee5d4c5301d096881c4c899 SHA512 208d314114b8cdbdfd6c1b5c6c50c2e40b5543dfebd229f9c774262163711135a57d1bd49615d0639256f6afedd82f3f9366979e3d0fadacf3dbc5db4c3cd220
3+
EBUILD pytile-2023.12.0.ebuild 635 BLAKE2B cc97616473ac2fb0a0ecdeaae8c99764d36a31867e20a4f18d9c31451e9b580708b2676586f19e21daf378e1fb8b8061c9c25386a3a8bcefbfe04430e14bf2f4 SHA512 39cabbe30cb3ddd4d4f7d7df85aef9c3daa7d70e52b760b6d6d830e8579465bcf17fe88b43ee0f202ed50cc76fc3cf148e16696b61cbf97fe44c6d8765c5141a
4+
EBUILD pytile-2023.4.0.ebuild 643 BLAKE2B e6850cde4ecb4e1d248e1ff7124265c29e178f4d4f718bca5e879a39e0703bbf39ba5b2233a97e16d9e60b3b6abe6e82d84c8ff717ca40cd41362e463d26100b SHA512 51eaefbd488a4dbc8ec05a4eb4d86e761560a512e3bfb52831439ab7303b192692c942f8c33d10467f70019da567420c19f4280ec19e265a2946dd384b203b64
35
MISC metadata.xml 504 BLAKE2B 7321b5453aabaecb9ee65fb44b93423ed312e40e128cacd42f7c2d452e9c560df4d9f3114106b3201ab15e43153979ea5e4411a9a67e1a87b78c5fa6d3613711 SHA512 c757fb826eee32520534f699a32e7705fad84c78319a896afa2289838243bf4bb41a9ab40ac0f85fd2f3d5173ca60881cea10bcf0c850a7d2c686fa4a126f9ff
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Copyright 1999-2024 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
PYTHON_COMPAT=( python3_{11..12} )
7+
DISTUTILS_USE_PEP517=poetry
8+
inherit distutils-r1 pypi
9+
10+
DESCRIPTION="A simple Python API for Tile Bluetooth trackers"
11+
HOMEPAGE="https://github.com/bachya/pytile https://pypi.org/project/pytile/"
12+
13+
LICENSE="MIT"
14+
SLOT="0"
15+
KEYWORDS="amd64 arm arm64 x86"
16+
IUSE="test"
17+
RESTRICT="!test? ( test )"
18+
19+
DOCS="README.md"
20+
21+
RDEPEND=">=dev-python/aiohttp-3.8.0[${PYTHON_USEDEP}]
22+
>=dev-python/certifi-2023.07.22[${PYTHON_USEDEP}]
23+
>=dev-python/yarl-1.9.2[${PYTHON_USEDEP}]"
24+
25+
distutils_enable_tests pytest

dev-python/pytile/pytile-2023.4.0.ebuild

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Copyright 1999-2023 Gentoo Authors
1+
# Copyright 1999-2024 Gentoo Authors
22
# Distributed under the terms of the GNU General Public License v2
33

44
EAPI=8
55

6-
PYTHON_COMPAT=( python3_{10..12} )
6+
PYTHON_COMPAT=( python3_{11..12} )
77
DISTUTILS_USE_PEP517=poetry
88
inherit distutils-r1 pypi
99

0 commit comments

Comments
 (0)