dev-python/sleepyq: remove unused sleepyq

This commit is contained in:
2022-10-17 23:45:40 +02:00
committed by onkelbeh
parent b85b74f140
commit d82ffa5e79
4 changed files with 2 additions and 54 deletions
+2 -2
View File
@@ -547,11 +547,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 1486 Ebuilds in total, 1479 of them have in total 1490 (34 different) licenses assigned.
There are 1485 Ebuilds in total, 1478 of them have in total 1489 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|868|
|MIT|867|
|Apache-2.0|302|
|GPL-3|91|
|BSD|89|
-3
View File
@@ -1,3 +0,0 @@
DIST sleepyq-0.8.1.tar.gz 5165 BLAKE2B c801d7de62176fdd798eebbd622d1b2e28989b4c90216602a084ac51c16dbb668b6d305571aee2d1ed839f5fb701c6abbcaec5ed8fcd6f370468c1962846b58c SHA512 3d63bd237e61587c6ecb4d7a597c445ab79d46551fc5d6073f9aadbccfb5aa857383bc2f8fbe6a9f368ed9cc1ebaa63f929239577d5613efa84335be8a332d35
EBUILD sleepyq-0.8.1.ebuild 786 BLAKE2B 30057fa9eab76591483451e57701e54950dc3c9c30f9432413b6ef6a82bf2e9a4d596237d20cfda7bcbaad7aaa8cef24da3dab322ae9be07687649c78502dbd6 SHA512 823276ac2b299139eb0adc3f516de4a332267027eda2e49c78462b24b0a72c05ce41adb2b4fb66fab3f60568b2f6aa4d5a192bbc6ec1354e9690ca2bfd67a95c
MISC metadata.xml 457 BLAKE2B 54d81f21388967e3e5d2db4bc77cf1e8175df8b56008ea635b09222a62a2ff4114c66d401c9cb8d5171750e603285f8c86ae2b4dcb9c9c8c9a4e8c0aa9393261 SHA512 ed5218bf4fa8cb0b07b2bff92088923a49ebc27d34e86032a441c411204cccf82ade222f297d1564f95428b244d767cf28b63bcdd81ae3e4e774bb585ed4dec9
-15
View File
@@ -1,15 +0,0 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">sleepyq</remote-id>
<maintainer status="unknown">
<email>josh@technicalpickles.com</email>
<name>Josh Nichols</name>
</maintainer>
</upstream>
</pkgmetadata>
-34
View File
@@ -1,34 +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="SleepIQ API for Python"
HOMEPAGE="https://github.com/technicalpickles/sleepyq https://pypi.org/project/sleepyq/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/inflection[${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
}