dev-python/aioswitcher: add 3.4.

Closes: #2722
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-01-27 10:36:42 +01:00
parent e3d8d7df20
commit fa1fd79320
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 41 additions and 4 deletions

View File

@ -617,12 +617,12 @@ 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 1670 Ebuilds in total, 1659 of them have in total 1678 (42 different) licenses assigned.
There are 1671 Ebuilds in total, 1660 of them have in total 1679 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|952|
|Apache-2.0|365|
|Apache-2.0|366|
|GPL-3|110|
|BSD|94|
|LGPL-3|23|

View File

@ -1,3 +1,5 @@
DIST aioswitcher-3.3.0.tar.gz 519923 BLAKE2B a3a08b0d93ba42e8fbd775975717836610e5e1e0c37572a9899b4423db149752b42d8f579d77bba7c2208b91c811b20067001fa3a9b381aa7d4e8263b11357e4 SHA512 d4c79c8c084fc0381be2e1a98b2b86b7671d712cb7e872143256826d0e18e829cb8405d9cef62af3728f4804145d9b8c2ccb0ac5889567c0e7ee656b9742dc13
EBUILD aioswitcher-3.3.0.ebuild 694 BLAKE2B c29c3bd6753bdd4ee16a6bc8f17eeac6cacceb2145747bf391ec582eab4153a079594ecfea66825c80cf695018a08e160849cacfd6339cf763e319d339f9dbb6 SHA512 dc08889b18627e2d3f4fcb0f218d6c593e55127cbef2da5263921a06691a8a12c66efb661219a3a19d8e1487d40441668fa00c7d463c7cf3fc5debf999e66285
DIST aioswitcher-3.4.1.tar.gz 520199 BLAKE2B 03a1621cbcc4778659393a190b1361d0d532fd4ee17dfe4ec6d4befcf1618100f2b08c5de89eac418a47ce9ae8bd39ea1b28620c8a4344ce1566fb4aeccdbfb9 SHA512 45845f6614a3733b855ed83503b487e293de7619fa6ec4df51427bf9659b41fdb3770f8c15ab32e053860b2fac6533ee64562a3a53d51b0002abfb594a67893a
EBUILD aioswitcher-3.3.0.ebuild 694 BLAKE2B b9aa7132a3b991efb293b8c7c74edc8d651108559763b7cfe85940103a37e11c940a191a3d3fc454262e5c0ed8d8caa8fe799bf15ead76692dcb218be1aae7b5 SHA512 30125ac28e60d181633157fdd6d0a0099e59f03ab5f4b70129fbac942be6ccf1911b8dd5bb7a045aaca84786595bc81078029cc23c1989603c5f92085994c930
EBUILD aioswitcher-3.4.1.ebuild 694 BLAKE2B b9aa7132a3b991efb293b8c7c74edc8d651108559763b7cfe85940103a37e11c940a191a3d3fc454262e5c0ed8d8caa8fe799bf15ead76692dcb218be1aae7b5 SHA512 30125ac28e60d181633157fdd6d0a0099e59f03ab5f4b70129fbac942be6ccf1911b8dd5bb7a045aaca84786595bc81078029cc23c1989603c5f92085994c930
MISC metadata.xml 510 BLAKE2B e115fcc27984a1d8295b10ad5103987f3f45c52dab196e4b65896610128f107231ab54efe661c470f0352b4d7015870e3913c8bba62a7c1b79b3a35d7a176a59 SHA512 4fc1961d6e6eadda8d043c2ba33c3d7bf8f9570cfec29fdf2d4f44d36948d533732608043f85f2ae565a41193b6c2589bf0802adeb93b9679d8122a0b6357a8c

View File

@ -1,4 +1,4 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8

View File

@ -0,0 +1,35 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi
DESCRIPTION="Switcher Python Integration."
HOMEPAGE="https://github.com/tomerfi/aioswitcher/ https://pypi.org/project/aioswitcher/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest
src_prepare() {
# /usr/lib/python3.10/site-packages/py.typed ?
rm "${S}/py.typed" || die
eapply_user
}