dev-python/sharkiqpy: remove unused sharkiqpy

This commit is contained in:
2022-10-17 23:33:11 +02:00
committed by onkelbeh
parent 91be236483
commit 2b73b9cadc
4 changed files with 2 additions and 53 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 1490 Ebuilds in total, 1483 of them have in total 1494 (34 different) licenses assigned.
There are 1489 Ebuilds in total, 1482 of them have in total 1493 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|872|
|MIT|871|
|Apache-2.0|302|
|GPL-3|91|
|BSD|89|
-3
View File
@@ -1,3 +0,0 @@
DIST sharkiqpy-0.1.8.tar.gz 12112 BLAKE2B 94379633bc5b0602b6feb4c684ae50d3bfce7fe8cd68b13554a0db331961c8a46fe19c32a9ca0f3b54748a02a72f5465bd7f5e9bf4311f0fb87ec74669ca66b6 SHA512 1ade0950a868f8f80be8d6f75dcdaddcc407502ee452eb9a8712778d41e9614c4c2dc0904657b712f2b9969f11aa73bc3eb2baa664dc942dd8074c8be612be23
EBUILD sharkiqpy-0.1.8.ebuild 777 BLAKE2B 5889ff7dc80c30bdfe961f23908ec3d1bc81b3d4311357730a1f8f234b1638cce5df641344d0fc73e5268324f23851c46cffb010fb62a52da81b947df016791d SHA512 d065a39baa1ab472ebfc0d2e3dcfc3e33cf73d1b0c6a90dd099ef257a9752ddb7a4820b6c2e47735b4eb642a24400b67a8443d4374d36dbf87f5d84761c82112
MISC metadata.xml 451 BLAKE2B defaeb9295c87883e0a20062943303d5eaa874e1958fa742cd762494aebe96c72e3a14c839f47352cb547c9b68b319882d5b278f8243c68e68b76db5e55b747a SHA512 4e8fe1a59078710fe470ff5918ff2f6a2c45f6929f97d95636266f2e6b4736a6b0abba4a77c13742782aadc4a6f14444beab9708f05414f828db2db300d5840a
-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">sharkiqpy</remote-id>
<maintainer status="unknown">
<email>ajmarks@gmail.com</email>
<name>Andrew Marks</name>
</maintainer>
</upstream>
</pkgmetadata>
@@ -1,33 +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="Python API for Shark IQ robots"
HOMEPAGE="https://github.com/ajmarks/sharkiq https://pypi.org/project/sharkiqpy/"
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.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/requests[${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
}