dev-python/pysabnzbd: drop 1.1.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-11-01 23:19:56 +01:00 committed by Andreas Billmeier
parent efb654f4d6
commit d5cf583c78
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 36 deletions

View File

@ -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 1920 Ebuilds in total, 1909 of them have in total 1927 (40 different) licenses assigned.
There are 1919 Ebuilds in total, 1908 of them have in total 1926 (40 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1104|
|MIT|1103|
|Apache-2.0|419|
|GPL-3|123|
|BSD|105|

View File

@ -1,5 +1,3 @@
DIST pysabnzbd-1.1.0.tar.gz 2305 BLAKE2B 64d8b57a428488592d2c38ddeb712a486463567a14baefa5a18858cdbf84f1fe48ed34d056e232cba0f65bfe91efdf3004d0b8799ea9b2d4bbe366dbc236c069 SHA512 d2823610ea31fe92eb292966200841fe37ed67736daa33a802f732cbd050396fd763364f811bbbfe25059c370055133a6bb01c4271a1d833e2ee386e194e89ce
DIST pysabnzbd-1.1.1.gh.tar.gz 2744 BLAKE2B 156f3cfe6059fb85775cb8dac0a95cd150ea4214d506f52cbc1a9b024f92582d841ff4ca1db4788dfd70fb41da4c571ca7e6f5cff3e4d4396186ba4188a11449 SHA512 753141305929cc23c6b0e5f5992afc602c3eec649eadadae751a840e605a4ccd6d7f6c92d96315a151898abc0d3f161fab3615d8967f8664933fe32e223ee0de
EBUILD pysabnzbd-1.1.0.ebuild 698 BLAKE2B d8a4b64fd716b623a35ab0bf5d57415e700b8963db2468a1fc59471643dc15efc0219c13fa367cfe0d5c1da7908ee57487db90a3eee8954df762bb60f0682076 SHA512 f5c2f99a1d3e4813265c3c8385bdacbc284f73917936d4fa934fed225a11edde1c66e3f5e8d944d9354992d3c87b8336ffba0e344d1e528bbbbbef8967d4f80c
EBUILD pysabnzbd-1.1.1.ebuild 779 BLAKE2B aceae0f9e75b3715aa6985090a13295296718acf2ce8869716235b032570ac0833bb8986376c381c6f14c75e0c67b37cca7b47166442d2818517d0f5b57575a1 SHA512 5ad68dddb895fb4b7f287db46909763070c8b46d7c68df8129a286a71906cba3e7cc14228125bae11d16fe45a54018e35e3c9ff631e74de4d8b23eb6203dda35
MISC metadata.xml 516 BLAKE2B 725dffcd604b7fca97917493a1bc0b806ee4a8fcc3925643e23e93e9d33558d55bdf421980e8c3347c2054f76412d890b24ef088569592599bc8c7bc45bf428a SHA512 5145236b5d2744cb6097549a7e7fbbfdda4f2efcf85842ecdce4c0a0b527f9377114da456dd6d29629e3faa1c388b65eaeb9726e3d09b96d47a58b5d014482b6

View File

@ -1,32 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
inherit distutils-r1
DESCRIPTION="Python wrapper for SABnzbd API"
HOMEPAGE="https://github.com/jeradM/pysabnzbd https://pypi.org/project/pysabnzbd/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
#DOCS="README.md"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/async-timeout[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}