dev-python/pyfibaro: drop 0.7.2

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-04-12 18:35:20 +02:00
parent 52d54c4f27
commit aa25a64a63
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 5 additions and 38 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 1866 Ebuilds in total, 1855 of them have in total 1875 (42 different) licenses assigned.
There are 1864 Ebuilds in total, 1853 of them have in total 1873 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1060|
|MIT|1058|
|Apache-2.0|412|
|GPL-3|126|
|BSD|105|

View File

@ -1,5 +1,3 @@
DIST pyfibaro-0.7.2.tar.gz 14190 BLAKE2B ac0835bc4d6e841e89cd27fbf2fcbd2475f188fba5ee1df3be3339bb2e9f5474ae9e4d9c93c5f796e061f90f29e9419d88c643b6e783ffcab4e5c8165cb82fe5 SHA512 5489e8411e52691da796c6a1ac6d78a506ea05cc978720160e8e4e23c3447a47c6b638064418715ad8bede2ed5661e341eac06abf5971614f2f4d09d8b15c7dc
DIST pyfibaro-0.7.6.tar.gz 15965 BLAKE2B 55c5a90d1fb9716bea053d57cf8b175598cb59fd595bcd8f730dc5af3797ae9f2d86bb76f67664b08b60cb749d71eee919f01ec6b8843f10389e4e13725eaa65 SHA512 011b5609e05bcf353446d97fff625c9c44cab784b90d9301e21ca014fe2ed4243fe65f7856c67c2539f5a19d7fc01ae1bc3454d2d04e3cfef83564939e95bb79
EBUILD pyfibaro-0.7.2.ebuild 707 BLAKE2B 9acea64896715b07379202bd90875148a28b56fa61147f562bd0790da3e5599c1dde51a82f56fceb4473386d21247ce466c30954bfb3d5c1da5aea9db059e6e0 SHA512 233b1bb2c1085de8d2afd98fb9131e0cc0180ee3b4ba9f4fb87bc9b791f2a57135def028e964d9361bf85735e03d544ef6ed1297bc7af580fc7daae14104bdfa
EBUILD pyfibaro-0.7.6.ebuild 707 BLAKE2B 9acea64896715b07379202bd90875148a28b56fa61147f562bd0790da3e5599c1dde51a82f56fceb4473386d21247ce466c30954bfb3d5c1da5aea9db059e6e0 SHA512 233b1bb2c1085de8d2afd98fb9131e0cc0180ee3b4ba9f4fb87bc9b791f2a57135def028e964d9361bf85735e03d544ef6ed1297bc7af580fc7daae14104bdfa
EBUILD pyfibaro-0.7.6.ebuild 707 BLAKE2B 9bb7df9823ef205ef7c32177737cde802ee508d3137fbb8db6b864367323984168e23c231b05c924be540f04d6183b7a2fcb1493109377e1ade61c1be1494e7c SHA512 45e9302a261329cb4f71ea48e77100486822272ba67404b217737529c3f26f7b9ef42b367c9c517fc0e0f28117b58d75be2963ccebf68fb3bfa855488f2c928d
MISC metadata.xml 386 BLAKE2B 52b48fa6342e4ae8781f654f258fa0be9f9b1d39c0addb350670b3908958ddbb624f95878930076a6243c9cdd2ddc4d8ed6135bf3dc1a893da07a6e45e3df58e SHA512 6a6913c1fcd32da6b0ad8737b9c489863226121c6db93e17cfa94d5db73e0a517a52f3672481cb00836c254ad3d5a63018a3c21e88806fd8bd0fa7c3bde3eb80

View File

@ -1,31 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Simple API to access fibaro home center from any Python 3 script. Designed for Home Assistant (but not only)"
HOMEPAGE="https://github.com/rappenze/pyfibaro https://pypi.org/project/pyfibaro/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
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=setuptools
inherit distutils-r1 pypi