dev-python/python-izone: change SRC_URI, drop olds
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
0a0f830c12
commit
dc2bf7c47c
@ -612,11 +612,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 1891 Ebuilds in total, 1880 of them have in total 1899 (40 different) licenses assigned.
|
||||
There are 1890 Ebuilds in total, 1879 of them have in total 1898 (40 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1091|
|
||||
|MIT|1090|
|
||||
|Apache-2.0|410|
|
||||
|GPL-3|122|
|
||||
|BSD|102|
|
||||
|
@ -1,5 +1,3 @@
|
||||
DIST python-izone-1.2.3.tar.gz 25840 BLAKE2B 42643ad0b7823ed20da2931c69866c3bf93f6f4a278c4cb3bbfa7d809ba45559247a2cd03d5f396b0a44cdb4fb66f2e29ad834a6ed9cb4352edac28dce3df83e SHA512 db5aa05f340f6b6465a7f3b1b6ab1fa8e6b9055228b82791588786f4a67e57152244511b6bbea4ba513a4e0b45acbabe475776911a95339d8f54e995f5a8d77c
|
||||
DIST python-izone-1.2.9.tar.gz 582805 BLAKE2B 3386b6a92814f0dacb6182650436b1572cc611b4dfb3bc45d8fc72821c804eaa8bfc2818d2f8ac3031e78636b9b93f4d122c5bf74406efb85cf8ce0a3c125ff6 SHA512 507f5aebb8deb038b82410245f6b19c3f23f9f437b522c8873d6f35047dc0fb5473ce5086aa328fd53b1e925921a6ca48bd22bd9cf15bd9403af5d24c4030d10
|
||||
EBUILD python-izone-1.2.3.ebuild 772 BLAKE2B 19aebf8a51655d5601451065123953f3486d0184752d5e5e7e0097e8919634103942b1e1b884716c99bf25b32a6d9705d9b4e592195fa277e152380556e702a3 SHA512 2d0e79db95ea90149427d2db18f5d416d68b1131ddb1b4c66fb1a3b3aa31a5ba1f31a5af045cf06302c73c6c933e63740013f7f4f6a7e74ab3f3089a8e39f7f9
|
||||
EBUILD python-izone-1.2.9.ebuild 847 BLAKE2B 3bf28b8db55d29cab5e34a75c7ecde0364316b3939411e7e524c1f9c2f48f6cf6940615a7033e20b5f94131b1674646c86a6950cde0dba1b610d5b1a217a876d SHA512 e0536aa1e04a04b47927de968fc0f5f5099a3d27a5e88f004653cc110a8488d5b622a39b3d139c4b48e99acc5ef57de755b6a055b6c59ebe315458800ec26acd
|
||||
EBUILD python-izone-1.2.9.ebuild 811 BLAKE2B f5173fa02f0b45a2206141d380ade2b2e01c70288468c857422115f19681ea5a06287dfbbee7cab461f4b83406854614986e46c74cd5e522767c2253b653d1eb SHA512 46e6a048198fe665205d225291f2cba524ff461035edabd49d95ec4886d4e2e918eda88cfd5de16d1676af16dbdf8c83b4aeb0265e6c4a434eecb9de25b38d79
|
||||
MISC metadata.xml 514 BLAKE2B 495c44dcea4266231de4561d8f896dfbfb73f1f6093a629a5a2341d68c06f252178b0498487895e614832740373f3056699d8e0a4932ce531068f38a14084da3 SHA512 95dd112540868500e5780f71a160781d20d372b063095ddf99d17ddbd400e369d2dd638423802cd9f6e7780c671abad96fdc6753a1c3c73e77e6f6e75073571f
|
||||
|
@ -1,33 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="A python interface to the iZone airconditioner controller"
|
||||
HOMEPAGE="https://github.com/Swamp-Ig/pizone https://pypi.org/project/python-izone/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
|
||||
RDEPEND=">=dev-python/aiohttp-3.4[${PYTHON_USEDEP}]
|
||||
dev-python/netifaces[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
dev-python/aiounittest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
@ -1,15 +1,14 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYPI_NO_NORMALIZE=1
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="A python interface to the iZone airconditioner controller"
|
||||
HOMEPAGE="https://github.com/Swamp-Ig/pizone https://pypi.org/project/python-izone/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
@ -23,7 +22,6 @@ RDEPEND=">=dev-python/aiohttp-3.4[${PYTHON_USEDEP}]
|
||||
dev-python/async-timeout[${PYTHON_USEDEP}]
|
||||
dev-python/netifaces[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
dev-python/aiounittest[${PYTHON_USEDEP}]
|
||||
|
Loading…
x
Reference in New Issue
Block a user