remove unused aiotractive-0.5.3

This commit is contained in:
2022-04-02 14:44:31 +02:00
committed by Andreas Billmeier
parent 775264bbbf
commit fbf4ac26c0
4 changed files with 5 additions and 41 deletions

View File

@@ -496,12 +496,12 @@ 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 1685 Ebuilds in total, 1677 of them have in total 1685 (35 different) licenses assigned.
There are 1684 Ebuilds in total, 1677 of them have in total 1685 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1031|
|Apache-2.0|303|
|MIT|1030|
|Apache-2.0|304|
|GPL-3|102|
|BSD|90|
|LGPL-3|27|

View File

@@ -1,5 +1,3 @@
DIST aiotractive-0.5.2.tar.gz 7850 BLAKE2B 7a66421a1662897b95d3c8a229053a54250f4f8a6399a1dc13e43afc33e209dc66269dbe601e1f36d61929b5ff5c8c706d7fdb1232c408373fcd6059c3f0c7e5 SHA512 84fb0f585c93c828e1a19fda2b8dabc71ba67dec69677246401e9a1478ad214935ea42ac3e1419bbc48d7d2d78740d681ba5d770aba14c62807ba102200f2be7
DIST aiotractive-0.5.3.tar.gz 7763 BLAKE2B 7da3b438a81a83a00e2c2447bef92a22bdb15edcda3ecd23cf32bf2c61b5331c50deb3c50cf4e07b89ef7586f2eba5a31d9d32097ca0fc33e90a83b2e3b88787 SHA512 37948074e26e56cab03dd11bfd7eb004d13b9adc49f3c39493b839eb7d7f547a1e37916e63c1a64cb7cf06a07b50c494e5fe24304608cd0be66bbe959c9bdb3d
EBUILD aiotractive-0.5.2.ebuild 823 BLAKE2B af633f3e11a1c4414ddc1d830b1f397c38092cdc91f6fedd3953fe6ff5821478aff092952d0de2c2a6e3edd62b1d4669dbb1000ef9a4becdd8fd3f06fae40368 SHA512 e425f886296aba2580fa65966a8cf794c5e611fd0db4ed10af643ab806cc18156926c636594487878ba6ffe47b478e479ccc3e5166643dc5984bf3705fa6bceb
EBUILD aiotractive-0.5.3.ebuild 823 BLAKE2B af633f3e11a1c4414ddc1d830b1f397c38092cdc91f6fedd3953fe6ff5821478aff092952d0de2c2a6e3edd62b1d4669dbb1000ef9a4becdd8fd3f06fae40368 SHA512 e425f886296aba2580fa65966a8cf794c5e611fd0db4ed10af643ab806cc18156926c636594487878ba6ffe47b478e479ccc3e5166643dc5984bf3705fa6bceb
EBUILD aiotractive-0.5.2.ebuild 821 BLAKE2B 2cae76081c3ccfeb4e35f0130f495fff106e578d2d3f8527864d5388ed929877b3f21c99bb11e92eda6ea31e346423655640721f8767f02dd5d483657504ea9f SHA512 c44ecb68fd198f1ab8a0e06dfe9543c892f7c16df1a58f69582468e4ab208ee69bc47fe46fe488ec708c73f70b7427bb37ae5f83fc86469ebaf50bc672b464b8
MISC metadata.xml 460 BLAKE2B 0c908a4d5979f9bde798211118292ddb1bf68682e90bbdf2d9f86803f4289fcfb81258abfe5851f829afe5ff8dc85ee71c5e40f1cefde349c085c4439705bab5 SHA512 74610d76ddefd9b068595ab46a0bf87317c56167ca917e4c54cdc415f9ad4c0e8ef95b448195bf1b7ef172fa53373332e2ee09afbe9f7c8381e9914a83d41240

View File

@@ -1,7 +1,7 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )

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..10} )
inherit distutils-r1
DESCRIPTION="Asynchronous Python client for the Tractive REST API"
HOMEPAGE="https://github.com/zhulik/aiotractive https://pypi.org/project/aiotractive/"
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-3.7.4[${PYTHON_USEDEP}]
>=dev-python/yarl-1.6.3[${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
}