cleanup PYTHON_COMPAT, remove unused Ebuilds (https://bugs.gentoo.org/793464)

This commit is contained in:
2021-06-04 11:07:04 +02:00
committed by Andreas Billmeier
parent c1d85609fd
commit bac826ee0e
1237 changed files with 1142 additions and 21454 deletions

View File

@@ -1,5 +1,3 @@
DIST pynx584-0.4.tar.gz 14221 BLAKE2B a81a25ebbf8a625342eb5199ac7d5ce47e606f13d7fa01a1e38857e975c0da832ab3d6fd3ed39ab7d6c9eb345ef34711ae30d8b265c45070254bc4261f81ec5a SHA512 9b8a197a934a564f7e96ecd6bfe1ff6da362f973368c10b1ef566f1752e857f8763ce01f45966343e1fad917ceac7f56092814d4835a2b5a69cd8027c2a88232
DIST pynx584-0.5.tar.gz 14755 BLAKE2B d6e3aceda6bd1197598815307d941c2e19a2b3c4a9ad2fd828d533c50af6df04a4a33a532c629eb7f1425784dad7b0feead56b838631fdbadf7b259265562a04 SHA512 a10b0f5641df1b5fd58be86744ae083c25a260766137aa19ad37229979ef8965f0c91ab16db1967f5228bab55f2ea1660475aeedc9470b6592ecf7f1389d89b5
EBUILD pynx584-0.4.ebuild 899 BLAKE2B 902f7f06692ac25cb881b404207397e78ea6a44dbd53f648e33ad6044c453347fb92349b1729b7c3ef8ca386ad40cc78a29b48f76aecd960ac005123f9908642 SHA512 1b5391e6f6cbf72f36eba5031c0a28754ea50b8ed91fefaab70a815fb4a84d748be9f584f92e9cbdc149b3d3c3ead078476957782f52dcbfbfbd22d3b6f5a388
EBUILD pynx584-0.5.ebuild 908 BLAKE2B b8adc3ad1d93fc07356bd3ec0da3835b535e70189ca930d45884fcbf432c3edae62686937fca9e195b94afa880e851ca82d50add609cd72f120ae24c643e4d70 SHA512 302d6697de8b2b8c9047a704d08d06aebce86500bc6c30c8c0ed386278e62267b925cfb25721023c61045dfaca9f33fc1175fc0efc012f9a10bcbd0da14ad8be
EBUILD pynx584-0.5.ebuild 907 BLAKE2B 530f739dfdc32f9bb67a5fcc4b4d2a96a933993affce4b9a8b4f6c350f334775d753fcdbada82d1d338cd0a38278c4219d1aa8cdf9658d25c4a56d272be9e373 SHA512 cf821714cf280be4ff9b270c0beab11127adf7ec3fcd36ed8e2efde32b82c3d2d61a0c13f57f7e39414ca2312ad6b4f79579532ec57d623bcbb55e598e507dcc
MISC metadata.xml 455 BLAKE2B 452f278396105e6ae6fdde8d4b298f51a451140db72042a6da6a9cb216ad98cf7f04fc5bfd441560e7401c2766a672d8898e6211626c603bbcfd6afde083951e SHA512 d0afb796982ab19306b1b39d84625b3012eba6d16b2352b3926990692bf0dce26d1c15fb5a398d773bc5feb528f2a18535abd5bba201f007e09bec5f36fe3c43

View File

@@ -1,36 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7} )
inherit distutils-r1
DESCRIPTION="NX584/NX8E Interface Library and Server"
HOMEPAGE="https://github.com/kk7ds/pynx584 https://pypi.org/project/pynx584/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="all-rights-reserved"
RESTRICT="mirror"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
dev-python/stevedore[${PYTHON_USEDEP}]
dev-python/prettytable[${PYTHON_USEDEP}]
dev-python/pyserial[${PYTHON_USEDEP}]
dev-python/flask[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
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
}

View File

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