dev-python/aiooncue: remove olds, cleanup, enable pytest

This commit is contained in:
2022-10-15 18:51:28 +02:00
committed by Andreas Billmeier
parent b0490758c2
commit b7de37bfb9
4 changed files with 7 additions and 41 deletions

View File

@@ -538,12 +538,12 @@ 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 1683 Ebuilds in total, 1676 of them have in total 1688 (35 different) licenses assigned.
There are 1682 Ebuilds in total, 1675 of them have in total 1687 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1008|
|Apache-2.0|324|
|Apache-2.0|323|
|GPL-3|100|
|BSD|96|
|LGPL-3|26|

View File

@@ -1,5 +1,3 @@
DIST aiooncue-0.3.2.tar.gz 13338 BLAKE2B 8ee0838b88e86bc358caa649f15c68935a4945a9a57afaefcfa36b43ce9daed5a83cc7daa11807c9103ff2c4c005444fa932b2c29f6ff6925a5de37b9ceb6649 SHA512 28c45aa07f3c194d8fa31973ec6d53bc589f49f4708b27f0b9bf1b5385f6ef93dccbc58b12720527ea49d4eb5db4fcbb334427137a57929ba66445618a289a64
DIST aiooncue-0.3.4.tar.gz 17420 BLAKE2B 62ef6a9d1845beb79b028cd20a60ab8cf07baa3a915c80d5f4bdd0e5be8138acd208c2e0c4ccc86653a15682d14e0cf15393bb3e6819da0eeeaebc3dce33efd0 SHA512 b23d94631f2c72da445ed238206a78673da40ae3c82792453796f4df678ae3eb19743df9899d01a1ae2d7a7299e9d355bb6dc31275dd3f45dd654f030ebc1324
EBUILD aiooncue-0.3.2.ebuild 743 BLAKE2B 74e3bef49b66a77f6ece6a7b8e0d198a8f0a59e9cdfa83626fa7528f548e34999e4aee0972cd4203a0a715a60367173291343e37a7b0640519beb467478ff006 SHA512 2b37e5a3a6b67ac6f9faa98f1f8a41ba9b07396e28eb82efc23de1f33271035448f92e61d8a05c9f4140de2f194f16e6493be49f8f02eadb065cdeecba2ad939
EBUILD aiooncue-0.3.4.ebuild 743 BLAKE2B 74e3bef49b66a77f6ece6a7b8e0d198a8f0a59e9cdfa83626fa7528f548e34999e4aee0972cd4203a0a715a60367173291343e37a7b0640519beb467478ff006 SHA512 2b37e5a3a6b67ac6f9faa98f1f8a41ba9b07396e28eb82efc23de1f33271035448f92e61d8a05c9f4140de2f194f16e6493be49f8f02eadb065cdeecba2ad939
EBUILD aiooncue-0.3.4.ebuild 746 BLAKE2B 097a117e682c0ad484513169d7b96b9a87933fb0a8abfd4d4b57a22b674e5efdc3aee099b4b58e623659622da31f9604d95d27bcf07f497122bdf2facc9563b4 SHA512 f92bbaa57a42fc0cbb035d9954ad2098464fad03db637e494f45c8e057e1fb54c8fd660099e0590b572ed9e3992de3785c88dcecaf35cef3709f3a1b68878510
MISC metadata.xml 450 BLAKE2B 04afce745aac1e7e24be306a8a69d88654f94b2e868cada21b88d4b76b0ca00d17d8dee9231f3b15a879643d1814e44b72c5700d464b7a0d2e0373e0dc50e876 SHA512 a459bee3bc9afb3cf707b4661659966e5fd5f0c0cf769bd7d69ee82b8ccdc6d66db69748ece798514891bdff09f5a3b15689b991115c9c0f79263ce67bb4704b

View File

@@ -1,34 +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="Async for Oncue"
HOMEPAGE="https://github.com/bdraco/aiooncue https://pypi.org/project/aiooncue/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=""
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/pytest-runner[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@@ -3,7 +3,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
@@ -32,3 +32,5 @@ python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest