cleanup incomfort-client-0.4.4, remove olds
This commit is contained in:
parent
374090b499
commit
6ff48e1a64
@ -496,11 +496,11 @@ From time to time a fresh compile test on empty boxes (one with Python 3.9 and o
|
||||
|
||||
## 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 1720 Ebuilds in total, 1712 of them have in total 1719 (34 different) licenses assigned.
|
||||
There are 1719 Ebuilds in total, 1711 of them have in total 1718 (34 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1043|
|
||||
|MIT|1042|
|
||||
|Apache-2.0|315|
|
||||
|GPL-3|105|
|
||||
|BSD|96|
|
||||
|
@ -1,5 +1,3 @@
|
||||
DIST incomfort-client-0.4.0.tar.gz 11428 BLAKE2B 872280ad10e5da7f837124d44298fb9cb8780c44621a03bccb6dabbb8a213a734aa4375a12867e6eb6822a70c2a657e6f71bd1319eff397747265daa926461fc SHA512 d6fa9322bbd7217f4a1b7c19511b9d75eb7ba80cdcf88a307d5cd279f0d00a0ef32a8a7aa1aebea4bfce4e4133e421add9e0c8a9e98ad8d2fb854dbe3d085765
|
||||
DIST incomfort-client-0.4.4.tar.gz 6342 BLAKE2B 4b3c28d3dd4ee2b0c0ad467a200a2ac8d90c3ff86295afad8aeaaa24b1251da7aa48eeb2b440d12e13acaf13accdb2b90c2ba910de16974a694873b6302e1feb SHA512 b72cbdb2c57630aa81a3d297acd3456804b32a7a12e4c7b2c9b69856f282b07d002f3a725b9095545da81502a949697780077770c8a09cdda275d741d91c9c56
|
||||
EBUILD incomfort-client-0.4.0-r1.ebuild 1663 BLAKE2B f9e3f7c59a650b860ebad84bdef8fef487c57f2c78c8dadd23e1739a9a11f9dda1d7403c4c12c6a16c1c6c06318d3067c7b50a8f6fe1773cf8d1b733ddbcd71a SHA512 cbd77549cad39c1454198413d65b6182fae7251a2c907c61a82c5934d2d707bdc02af7fbc0437b8537d08e64eaf6df625f80b24d7f8be1dadb2db4a91f9d3980
|
||||
EBUILD incomfort-client-0.4.4.ebuild 802 BLAKE2B ecb225612e12c74c75e14e6a492118cffd9513897902ac58ec2554800237ab801230c1334eb21bc635421b2add632c5587e3b10bff31f36fea8d5b56a6b12817 SHA512 243f698bef6f2d9614885050eb35fe37117099f53aaf599103924ca706fc3e62853965151f89e28c49363c458ecbaa094174f949ed92f78efcae9054e468e4e8
|
||||
EBUILD incomfort-client-0.4.4.ebuild 800 BLAKE2B d0d38c906520343c5fa5c274063b1c5f22166c96b00c3f8279c5539ae00fa1d80171e598259bea515aff4446877b91c9cd769d67bf99cffc85be912aba0851cd SHA512 9f93f74689b3863e6e6ee2c56921a4a6075af30fa445f505c56fa5fa0eac293e7efe88b48a743728075c9dfe69a3f23f804af0a5f089fbac76be2707a55a9615
|
||||
MISC metadata.xml 457 BLAKE2B b87fab9691b031c2d43125a13a1cb07937b5eec86ebe6f7b10cfc267b357f4ebdf902698735aa39dbc740a81b34053cc3cf89f93bda39f34a05372677b79a1e2 SHA512 82e7cd2cd956287446374c5cb23c446c0002769144370345af44f76f55047b5788db3360bc84d612aa8b30fd4185af8fc55a56034c273ef9ebd930d2b5915385
|
||||
|
@ -1,51 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
PYTHON_COMPAT=( python3_{8..9} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="A aiohttp-based client for Intergas InComfort/InTouch Lan2RF systems"
|
||||
HOMEPAGE="https://github.com/zxdavb/incomfort-client https://pypi.org/project/incomfort-client/"
|
||||
# Pypi SDIST is missing (at least) requirements.txt
|
||||
#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
SRC_URI="https://github.com/zxdavb/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
|
||||
~dev-python/async_timeout-3.0.1[${PYTHON_USEDEP}]
|
||||
dev-python/attrs[${PYTHON_USEDEP}]
|
||||
~dev-python/chardet-3.0.4[${PYTHON_USEDEP}]
|
||||
dev-python/idna[${PYTHON_USEDEP}]
|
||||
~dev-python/idna-ssl-1.1.0[${PYTHON_USEDEP}]
|
||||
dev-python/multidict[${PYTHON_USEDEP}]
|
||||
dev-python/typing-extensions[${PYTHON_USEDEP}]
|
||||
dev-python/yarl[${PYTHON_USEDEP}]"
|
||||
BDEPEND="${REDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/nose[${PYTHON_USEDEP}]
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
src_prepare() {
|
||||
sed "s/aiohttp==3.5.4/aiohttp/g" -i requirements.txt || die
|
||||
sed "s/attrs==19.1.0/attrs/g" -i requirements.txt || die
|
||||
sed "s/idna==2.8/idna/g" -i requirements.txt || die
|
||||
sed "s/multidict==4.5.2/multidict/g" -i requirements.txt || die
|
||||
sed "s/typing-extensions==3.7.2/typing-extensions/g" -i requirements.txt || die
|
||||
sed "s/yarl==1.3.0/yarl/g" -i requirements.txt || die
|
||||
eapply_user
|
||||
}
|
||||
|
||||
python_test() {
|
||||
nosetests --verbose || die
|
||||
py.test -v -v || die
|
||||
}
|
@ -1,7 +1,7 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{8..10} )
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user