cleanup PYTHON_COMPAT, remove unused Ebuilds (https://bugs.gentoo.org/793464)
This commit is contained in:
@@ -1,7 +1,3 @@
|
||||
DIST zm-py-0.3.3.tar.gz 10119 BLAKE2B 66d7da0800f81382802c91325cd9c1d39f526bf6825883c50ad21bd924ebd42492b31376094a0db5c4e253606370139e030c9a93ee4fc499b1de6b98ebfe0680 SHA512 4a75e277307b9b27545a126168b9a6643bf52b68b49b2077bd8cde4b2f2f9857c66e74d6eb5e75e04e9efcefcefeb11b15b8ec010f6986ad727f1ceed6924a20
|
||||
DIST zm-py-0.4.0.tar.gz 12337 BLAKE2B 3f48941fabdfb5af704742bad07eeb083841ad17a53d38eea2b527bcfea841133fc23f40c8129d62d7649cf99e77a3799c6f6312d8c73361f9744cc42076104e SHA512 cf8a7035bf4a04100ae439bfdf8c97d278989c7e7ccfbb3a1519f1d565f1feb028ebd64322a3a7753d885c2705a69cddd8ab5cb12277e08c0cd09bd6d0aa1088
|
||||
DIST zm-py-0.5.2.tar.gz 12746 BLAKE2B 10905456f5e06addac22c3cf72eb2ec7c3425a2597305c369363c40055c17391d778d270ef508e2a886f0ec3af8d15e92a396844e8997bb5420ca8b0eed7dbd8 SHA512 4946c02d2e3a230d3113f68bddec7bd03da5f6b3e8334b84c5fcc943e5856089488dc1692e9e13f3e149d299e52887c02cc8a9b95615e336ed1588291193ef90
|
||||
EBUILD zm-py-0.3.3.ebuild 984 BLAKE2B 1ae0e3d51566d817513dbd331a1284eff5dbeb290ebfecc5bf52d4b7761a71f1543c225af0723732ccd4377daca586216fe8f1257486e26e0f34998664b4b044 SHA512 1ccf0731e239943df055e84a1484be254a585b01858356fd0cb85e78ff319e78d00a35fc70f80034e475c08f7c62d8a9415e5887c0f84c656973826a674376d3
|
||||
EBUILD zm-py-0.4.0.ebuild 1151 BLAKE2B 19853c60b083c95c9fcfad2ef66777d8ff943cfdec2aa0811e7b5c6105af8b11e703cb79a3b807c278eccfc00fc2a917213f1ac9a684e77fe1629f36aaf0c6c4 SHA512 b702fdb9d158ff8b9710600aa4c3502733b7f8774f4889903715eb19237f92cd52d8083430153a627388ed8fa76b8a0ae8f18c970782aff1b414968b6d2ed61b
|
||||
EBUILD zm-py-0.5.2.ebuild 989 BLAKE2B d0d39edf36cc693a1b37dc075ba0d1bcb06a97952c8da2c191afef478fba67262787d795cee86429ea8b7fed48b5ebf10e4b9b7712e786beb6b45becee16f19d SHA512 ba4c174c5123027b1be22dbe82c81c61c5a2adb0902cc807a4b6e998a6e7e5d68be91ddb7c9f51d6e75c12d639c9c71d5f6eabbaeefcac6f4dc56c460bc0cb6d
|
||||
EBUILD zm-py-0.5.2.ebuild 989 BLAKE2B 0f8bb5ff38a2ec792eb91ebfdf26931b6dbcdd7a86e3d50f3c21ac1466ed814a5b93dea76ccd804ffedd3f09e601ed4fdb3f36c34b9aae0e9f7f7a9a1bcb953d SHA512 61b431d2977d7c4a0cba64addc72d0ef1de4fc7c6bcb0d74c02f9bee9d73250b352f2730b83979418a9a055d7a2f1b58a8e5a5abbf0e3b3f1a70b8b0a638b5bb
|
||||
MISC metadata.xml 451 BLAKE2B 12eacbde2f0eb5af760ea38b3f6cbc5adcf5d5c24f796f8a48e8ae6a2b487660f6cd4f9f294339488b1b897b51cb93254325ea3601b63b848b574d397d36c919 SHA512 1c2c0dd51b5b97865420c18fb920410ab4360560c1f5a004846a367d051a4cad8b3f1ebccdc265320bf302c29a675e1d0d658389a93a407f64eb2b86c1bf6dc5
|
||||
|
||||
@@ -1,37 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python3_{5,6,7} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="A loose python wrapper around the ZoneMinder REST API."
|
||||
HOMEPAGE="https://github.com/rohankapoorcom/zm-py https://pypi.org/project/zm-py/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="test"
|
||||
|
||||
RDEPEND=">=dev-python/requests-2.0[${PYTHON_USEDEP}]"
|
||||
|
||||
DEPEND="${REDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/colorlog[${PYTHON_USEDEP}]
|
||||
dev-python/nose[${PYTHON_USEDEP}]
|
||||
dev-python/flake8[${PYTHON_USEDEP}]
|
||||
dev-python/flake8-docstrings[${PYTHON_USEDEP}]
|
||||
dev-python/mypy[${PYTHON_USEDEP}]
|
||||
dev-python/pydocstyle[${PYTHON_USEDEP}]
|
||||
dev-python/pylint[${PYTHON_USEDEP}]
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
nosetests --verbose || die
|
||||
py.test -v -v || die
|
||||
}
|
||||
@@ -1,43 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python3_{6,7,8} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="A loose python wrapper around the ZoneMinder REST API."
|
||||
HOMEPAGE="https://github.com/rohankapoorcom/zm-py https://pypi.org/project/zm-py/"
|
||||
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"
|
||||
|
||||
RDEPEND=">=dev-python/requests-2.0[${PYTHON_USEDEP}]"
|
||||
|
||||
DEPEND="${REDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/colorlog[${PYTHON_USEDEP}]
|
||||
dev-python/nose[${PYTHON_USEDEP}]
|
||||
dev-python/flake8[${PYTHON_USEDEP}]
|
||||
dev-python/flake8-docstrings[${PYTHON_USEDEP}]
|
||||
dev-python/mypy[${PYTHON_USEDEP}]
|
||||
dev-python/pydocstyle[${PYTHON_USEDEP}]
|
||||
dev-python/pylint[${PYTHON_USEDEP}]
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
# packages=find_packages()
|
||||
src_prepare() {
|
||||
sed -i "s/packages=find_packages()/packages=find_packages(exclude=['tests*'])/g" -i setup.py || die
|
||||
eapply_user
|
||||
}
|
||||
|
||||
python_test() {
|
||||
nosetests --verbose || die
|
||||
py.test -v -v || die
|
||||
}
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
EAPI="7"
|
||||
|
||||
PYTHON_COMPAT=( python3_{6..9} )
|
||||
PYTHON_COMPAT=( python3_{8..9} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user