drop unused fritzconnection-1.11.0
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
b02ace69ab
commit
c9e9c20781
@ -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 1769 Ebuilds in total, 1758 of them have in total 1779 (43 different) licenses assigned.
|
||||
There are 1768 Ebuilds in total, 1757 of them have in total 1778 (43 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1032|
|
||||
|MIT|1031|
|
||||
|Apache-2.0|372|
|
||||
|GPL-3|106|
|
||||
|BSD|101|
|
||||
|
@ -1,5 +1,3 @@
|
||||
DIST fritzconnection-1.11.0.gh.tar.gz 147539 BLAKE2B def880bcf80bb99864bca942b86c86adcda878fb62b7c0e35db4a746310e5ec8ad00bc25f43acac23c0d5410dc8790875b8b0822aa6d944a0e1197379e015e22 SHA512 bb517a63616a961f9c2c701d44093024f0763c093f89b99d205fb1fd1492342b568b871ebaf699a69a9d56e724735b975c48e4abd1780726d10c13e075cf08f2
|
||||
DIST fritzconnection-1.4.2.tar.gz 31492 BLAKE2B 7b7ba85c8473f96eaad9444e937f6c7f0a3704b24269e6f5aeca90c081269c3185ed9ed0044d5b1c24b81384f53935af97804b8d76ab065dd81486e3dd5ed89e SHA512 68e8b15fb3ae4bcd311c7a3c5a76c493a96479f9cb43471d178f52cc31bc539009fd4212a40c903985b0159b97a39679b6a3ca9e5ec69ddd8698bfb3d9af1f1b
|
||||
EBUILD fritzconnection-1.11.0.ebuild 1126 BLAKE2B 75a32cda1d52e3d676aa09ff8ea77707328b26388b5dbf46301f3b2f686e1e32574d99d7ff689bf7718dc7fa68a5087d8a003e9881f16bc044f563a0bb770a27 SHA512 c0135f253140e60cd64fab909d5d7b02e63b2a50c21208f13a808930bf2a536315f8df924fa6a5320cd3c885bb6c5161d402556b139dcfec27843a290830a28d
|
||||
EBUILD fritzconnection-1.4.2.ebuild 621 BLAKE2B 28451cc49aae9bd4dc00fd4b161a1e1a2c872a12a9a1edd37dd3b5ff288a74c0a23b4b45737d1997aa6141ba7f0cf07261cc13e654b54a3cfaf5969b9b584ac6 SHA512 41d20e958b81e62d2ed1d921e09bf0742f7af889ee65f368f27bceb8c46eb6a2f944782fd875e1421ef5149e589329109633841ae61f1d9bdc610579356f6271
|
||||
MISC metadata.xml 524 BLAKE2B 9c7ab7d57698d15104811afe93c8383d376c53a971e5d2cba26267323b5b3e459b1729cd45ae2926e6c4028fd79c140443572fb7c8a34d45a5738c51ae568cf7 SHA512 1eb7ffe373ebfd6859550a57c8e5c174235ae71a39aca39d70f018692c149eb555ed27c37b60d735285107aa19c1415d65a3fd4bb0f0959a4fc2407257f07283
|
||||
|
@ -1,51 +0,0 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Lib/tool to communicate with AVM FRITZ! devices using TR-064 protocol over UPnP"
|
||||
HOMEPAGE="
|
||||
https://github.com/kbr/fritzconnection/
|
||||
https://pypi.org/project/fritzconnection/
|
||||
"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
|
||||
if [[ "${PV}" == "9999" ]]; then
|
||||
EGIT_REPO_URI="https://github.com/kbr/fritzconnection"
|
||||
inherit git-r3
|
||||
else
|
||||
SRC_URI="
|
||||
https://github.com/kbr/fritzconnection/archive/${PV}.tar.gz
|
||||
-> ${P}.gh.tar.gz
|
||||
"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
fi
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/requests-2.22[${PYTHON_USEDEP}]
|
||||
"
|
||||
BDEPEND="
|
||||
test? (
|
||||
dev-python/pytest-mock[${PYTHON_USEDEP}]
|
||||
)
|
||||
"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
EPYTEST_DESELECT=(
|
||||
# flaky (relies on time.sleep(0.01) magically being sufficient)
|
||||
fritzconnection/tests/test_fritzmonitor.py::test_terminate_thread_on_failed_reconnection
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
# upstream is pinning for py3.6 compat x_x
|
||||
sed -i -e 's:,<[0-9.]*::' setup.py || die
|
||||
distutils-r1_src_prepare
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user