dev-python/rflink: add 0.0.66

Closes: #3013
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-03-10 18:20:34 +01:00
parent 80bf78d3c6
commit c211cb73c7
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 42 additions and 4 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 1877 Ebuilds in total, 1866 of them have in total 1885 (42 different) licenses assigned.
There are 1878 Ebuilds in total, 1867 of them have in total 1886 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1060|
|MIT|1061|
|Apache-2.0|432|
|GPL-3|124|
|BSD|104|

View File

@ -1,3 +1,5 @@
DIST rflink-0.0.65.tar.gz 22904 BLAKE2B 8906a4174df7fd0acc59d9fc62f982f2085806bfe93db6614211cdc7d3ad12943c39b12d70b7eb4ea362596c571d8d5c19f9799a7194fbaac6c319af436c3b8c SHA512 25916fb55657711b7f52bf103f95f657c6a94f6aa24752ac00414fad13da68208618eff1b78fad76e2eaac777b47fd9d7aa20e74b38418aa67e64c10fecd7346
EBUILD rflink-0.0.65.ebuild 978 BLAKE2B e4722a62c44c0abbc23f2ab53cfab0022acf2cda65cb26dd7baa260d03a00c053ac20bd991fbc302614e26b3590309db0c9edf3cb5def9174ce113e5d3661730 SHA512 1ca53aa9fa21b1d1fd225ba5f9c1df7e9c940463d5ea0b8d1c0f6e29170804474f070ae8477d5faf3288d8ab25a7fe56f6527267f495d103dbbb76dfdd5b2d95
DIST rflink-0.0.66.tar.gz 22967 BLAKE2B 56b11c6bd02d32948a2040ea15247ab775453faa7694ceddd0a27d2e82ca5d2df8d0da7c29223a9756f7173c1ed7d9e1bff7b4ad4aeec6c36a7c0c9dcf6574cc SHA512 a553528e3d9594d192d6917643d788c1c73d7d633264ca013f652522aa0070b5f2b99d182a78057d957820aa55423e7e0745f0074d0f30b9e27254f0605a9cf8
EBUILD rflink-0.0.65.ebuild 978 BLAKE2B 5f87ea6ed65ce864d0b8fb6ba6b864c7ca23da4c64ead0d5d02cf49cf7be34bd01d095d8b3362e73d1dba447c2c0e5b1325c000fabbb16a35ce08142986cc335 SHA512 4cdcda3738ccfb5eed336afa16ffc8afe4b6286ee69df2b8c4c4b43a16baa8d91dfb4a2e1af88f9f5c919a20cebf85c7d775f700598622fc9d59a53718f542d6
EBUILD rflink-0.0.66.ebuild 937 BLAKE2B 06ee664fa86cb34f72c02ede5b755905516205184a774ed0b49942d6f4389f1d34ead22e4318c783385a2ef7365bee23797551faa8246af17c4f1a2aee64ba95 SHA512 b0e6cf1d0bcfe429002b1b9d6d20c93a367ec7749744f2a820fa6cc081143dc95004702c86731252501bd09ed5e928eb8a83fba874e2aec21b02b07e55856f9d
MISC metadata.xml 514 BLAKE2B 16f2b2f53f8504516c2c351dee94b96121c677a5ab7e271794c0e2e6324a7b3c344db7613e9d9af0a174e859a6612ede80dcc33d52639183c592c0a00e2d5fed SHA512 25134f7749c649936ef5d5ed445f637d72837f0230cb45444e38c6640cf611b23ab633226bbeee2d650dad8cf3dd757052ae928138c1b8d9d26d7791545809b0

View File

@ -3,7 +3,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi

View File

@ -0,0 +1,36 @@
# 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=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Library and CLI tools for interacting with RFlink 433MHz transceiver."
HOMEPAGE="https://github.com/aequitas/python-rflink https://pypi.org/project/rflink/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND="dev-python/async-timeout[${PYTHON_USEDEP}]
dev-python/docopt[${PYTHON_USEDEP}]
dev-python/pyserial[${PYTHON_USEDEP}]
dev-python/pyserial-asyncio[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
# Patch for https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/25
src_prepare() {
sed -e "s;version=version_from_git();version='${PV}';" -i setup.py
eapply_user
}
distutils_enable_tests pytest