Skip to content

Commit 41b3229

Browse files
committed
dev-python/pylitterbot: add 2023.4.11
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3202 Signed-off-by: Andreas Billmeier <b@edevau.net>
1 parent 6319f71 commit 41b3229

4 files changed

Lines changed: 47 additions & 5 deletions

File tree

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 2010 Ebuilds in total, 1999 of them have in total 2018 (42 different) licenses assigned.
620+
There are 2011 Ebuilds in total, 2000 of them have in total 2019 (42 different) licenses assigned.
621621

622622
|License| Ebuilds using it|
623623
|-------|-----|
624-
|MIT|1135|
624+
|MIT|1136|
625625
|Apache-2.0|463|
626626
|GPL-3|130|
627627
|BSD|113|

dev-python/pylitterbot/Manifest

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
DIST pylitterbot-2023.4.11.tar.gz 25941 BLAKE2B f61a93c810f833600643372a3d121397af04be5634b7bfb93676670c738188a3322d39ac638237195ece20de68c813ce926b8e5a6b9201e5f92d7157a1660ede SHA512 5a7be46fd830ed7fbdb65433706518ce04d525cbb96683e1a88f867f67298d994b05372b7dde9d9a08e8b4b0ff250ef447612beb4741a98e47722534729353d6
12
DIST pylitterbot-2023.4.9.tar.gz 25830 BLAKE2B 4ba490a33733984e648b042ced328adbb5c212d7fdb27824be33ef9e749a96f5d93f616c38bfe07ea9f3d008dfbb4691f638bf0df58cbbc2422644e79970dcc0 SHA512 9e1045732ceffcb0202b9fda49c2b8c7513a7e9100a1bec072a83ce1764bcc66e4b51e85152cbefea70362b991775f9a50934d4fbeb79d148c750329ce4fed65
2-
EBUILD pylitterbot-2023.4.9.ebuild 941 BLAKE2B 461bf60d26232ff373474ca5c3b6f99874843b52548ec7a3830f901005e5fe02cd985be5cc8aa4902547c1508646f290bc8ec8ca374d21c787a2beee195a41c4 SHA512 a5f83b5e928a1e60b1dafb126c5ac1ea41744e46ca1cf1e03dc61f8c47840c84b38a3f2627146363b6529b1f9ef3fed3343c3a191c1bc0cbee238ed57772742f
3+
EBUILD pylitterbot-2023.4.11.ebuild 1165 BLAKE2B 2d2994556d1ff3d9f03887875ff47430b70a2a708ff4b99c9b9647772a610dcaac293a47cbc856ae2e12a053fc4bb336c7a40d4cc3458cf41804038f9d48728d SHA512 0fad11b24b9c110308f8e997dde263ce648d8b90960a1be001fc52bc89f4a47138bc4519b2528f465efaff6453b1e77779f92061db8caf99e64590909cc4887f
4+
EBUILD pylitterbot-2023.4.9.ebuild 941 BLAKE2B f50e273bdd883c08c757d5b4d3be3102f7fa34ec32dfb887081935eb2f8d77c6ddf8089e0087065b048c869002172ac060a16f361a0e35e014ff971a207f17ac SHA512 2bad466192953323d08312f9d092f3b41b4b6565783636859de849836f0fad70a4a61bbfa2f4144115b32974f596d0310238f36f925f3bac1c658329ca6affba
35
MISC metadata.xml 526 BLAKE2B c1964de2e0fe25ee808c8cac8412ef0df8b6aa7d3d9d397369e33d1441f5665a6cdcb9f9f88cafef448b1c78e11ad3e723bd7ffcf11a2ef7f8419ad0687f2888 SHA512 f4beb748db6d22eb23380e1b4cd220d58d203489fb850277143f41d5f8e1b2c9cc9429066b5e50585894012967cf3becb6c7f9362762fc9a77e3e85eabcb2e77
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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="Python package for controlling Whisker automatic robots."
11+
HOMEPAGE="https://github.com/natekspencer/pylitterbot https://pypi.org/project/pylitterbot/"
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.1[${PYTHON_USEDEP}]
22+
>=dev-python/deepdiff-6.2.1[${PYTHON_USEDEP}]
23+
>=dev-python/pyjwt-2.4.0[${PYTHON_USEDEP}]"
24+
BDEPEND="
25+
test? (
26+
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
27+
dev-python/pytest-cov[${PYTHON_USEDEP}]
28+
dev-python/pytest-freezegun[${PYTHON_USEDEP}]
29+
dev-python/pytest-timeout[${PYTHON_USEDEP}]
30+
)"
31+
32+
src_prepare() {
33+
# remove unsupported dynamic-versioning plugin
34+
sed 's/0.0.0/${PV}/g' -i pyproject.toml || die
35+
sed 's/, "poetry-dynamic-versioning>=1.0.0,<2.0.0"//g' -i pyproject.toml || die
36+
sed 's/poetry_dynamic_versioning.backend/poetry.core.masonry.api/g' -i pyproject.toml || die
37+
eapply_user
38+
}
39+
40+
distutils_enable_tests pytest

dev-python/pylitterbot/pylitterbot-2023.4.9.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)