dev-python/pyialarm: rework, remove olds

This commit is contained in:
2022-10-15 08:32:21 +02:00
committed by Andreas Billmeier
parent f89d77d0cb
commit 20b41740f9
4 changed files with 4 additions and 40 deletions

View File

@@ -538,12 +538,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 1918 Ebuilds in total, 1911 of them have in total 1923 (35 different) licenses assigned.
There are 1917 Ebuilds in total, 1910 of them have in total 1922 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1160|
|Apache-2.0|359|
|Apache-2.0|358|
|GPL-3|122|
|BSD|106|
|LGPL-3|30|

View File

@@ -1,5 +1,3 @@
DIST pyialarm-1.9.0.tar.gz 8093 BLAKE2B 28f5b2f0286337d975c0df89428d6edd0435ee2d429b3f039475e45be0f94da82b5e8e7ff16d62bac5af50512fe34d7e41d7fd9c66a4d9c0f4965b2e56e343da MD5 5438bef75b84c76bfda932a75fcf4bf0 SHA512 5156242eef767f2ac6fc631e7b1045e74bcbc55ef1bd1802286a0ba8a712afb1bc86416f446cdf609bbf6600ed52198d9473bb5b425d59c8dfe08f260ac40753
DIST pyialarm-2.2.0.tar.gz 8098 BLAKE2B 62acfc29aede9d6d59f0ecd61322023a67971892450bee82589ba4311a903de9c6478fa661a50b0a13aa35e98bf89e1924478186c2474f74d17aa5cfa728d1ad SHA512 59c11dc35043450b1c9ae48c5481be86391eb7ea37e9f5e345e6f2d978c6b329119b7c2ec8ed1d0c6a5d1af9d14ac2318fbf6ba5ad8bc5fc9c842a73f6a9c883
EBUILD pyialarm-1.9.0.ebuild 820 BLAKE2B 60699d6447cb4e406da5e3a3d8a34a37f374a49c6a79dcb12523444b4b4f8ed07f401dc98770cee3a6bf37e03f2e4aebf1b63ae8a625a8accbaa032a027ce728 SHA512 0f677a3b0973a0dec0a92b4109660516a342df0870dd5827e621abfc8dde7bf6ce9f90d80f5270898c481ce65002a58293e6f5ae0e6bdeb8b506aa11d36ccb17
EBUILD pyialarm-2.2.0.ebuild 852 BLAKE2B 693637b8b34d8a562574993aa9706a19812c4d6f39178d97fca6f98bf182036205589fae17951e9ad0931d74f6ad80b92a6b0aff349bb047e43f55d5fe6f5153 SHA512 f314c3d282dfa5a7cca2586d156c7c2509845d2fb848563e155bbdea3fa4fe857613ac6d219c67bfba18c9269dc251b780c770debaebc7fc022c4f8fcc210aef
EBUILD pyialarm-2.2.0.ebuild 852 BLAKE2B da6999153b67ea533a8d7176f6facb3a4795deb65e25c79677d1467747dc8681828b11c1dcb02d0bee5060ee2997620d3ab3667e2a0bdb4299895f39dbeece55 SHA512 15b1b234857c02a98f37e8aff8e0d52113c891e0147a660ab539aa8e251a28d83dc06ec93a9c424f39b953c9219efac552b70a4621d6adf3a0e332391e339937
MISC metadata.xml 466 BLAKE2B 170b3c4629ef7d3efa2013f10df038e1a12a30a6cbe692c577dc2c09d157c7f575815413e8b9dfedcabdd7bce747ad556a47843f1c70d880c56fe2ee40426566 SHA512 034074c4b46e16faf70354ed9742ed27bfb8349ae01d1984530c39b470182a3dab0b25d5b87ca7a4ded7681b034c2061ba7f12eadfcaabc6de6213c68822a06b

View File

@@ -1,34 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="A simple library to interface with iAlarm systems, built for use with Home-Assistant"
HOMEPAGE="https://github.com/RyuzakiKK/pyialarm https://pypi.org/project/pyialarm/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/dicttoxml[${PYTHON_USEDEP}]
dev-python/xmltodict[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

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