cleanup, add new Python Targets, Letter 'N' and parts of P Integrations

This commit is contained in:
2021-07-13 21:07:46 +02:00
committed by Andreas Billmeier
parent d5a883b3bf
commit 527641ec45
142 changed files with 244 additions and 1545 deletions

View File

@@ -1,5 +1,3 @@
DIST python-join-api-0.0.4.tar.gz 2358 BLAKE2B 483e6e424006fa5ce93b3310cca107aa1feef0590f042ca56836c7a143057b84222ceebada418f7ff4f113b841ebe5582690844845746a7b071f8991e08966b4 SHA512 895b65f75a416b4d282323e5faa0e7dc08d7d1fa4e6c532e99f051266e5b74d1d05a0b2eede8f9a7dd53ce7e3b1db1865ef64bdea0a3235b08b98241f7dba86a
DIST python-join-api-0.0.6.tar.gz 2876 BLAKE2B c4d64dcda614dda887c246f2a02ea26c92048329c8d770672a1005072907e59075c05aff9a13c2e13e14b180e4223eb38989f1958fc6d2a5298a11b64ba1cb02 SHA512 d4c98b4a708e4dbf574da80f36b9b0db04a32443555753992bb94a67bd3cce43322fe87b236c432217bec5e2615646165aadd56d014e7f4f425a2dc4fa64ee74
EBUILD python-join-api-0.0.4.ebuild 751 BLAKE2B 17fc489bf4d8c97e78d5f5c915de9c2d50d38bb71b85815d6ef77520af8b029e3915c421e3ebee41940c724f026416aa22cd17d95dcfb22db1b331c162171674 SHA512 e942cc8d566849357dac5566b3cd1d5d460db040fc9604d61e650db24ca159519acd93987ad888021ac7e3bac0f0857b7105308832dd6a2547e00b4581ca3c2d
EBUILD python-join-api-0.0.6.ebuild 751 BLAKE2B 17fc489bf4d8c97e78d5f5c915de9c2d50d38bb71b85815d6ef77520af8b029e3915c421e3ebee41940c724f026416aa22cd17d95dcfb22db1b331c162171674 SHA512 e942cc8d566849357dac5566b3cd1d5d460db040fc9604d61e650db24ca159519acd93987ad888021ac7e3bac0f0857b7105308832dd6a2547e00b4581ca3c2d
EBUILD python-join-api-0.0.6.ebuild 750 BLAKE2B be53c2206ea42b35559cb71cdfc939bafa38c05ecaafe38bdd02fe320c478d6c65194592a358e9d466945489e4d0b90bb4cd343bd30e75277f641cee4dcf45ad SHA512 d0022e08d25acf1c0abbe761d7fd03ad6e6356c97f8f9702692384b68374671f7624eb1ddbc11df16f6c21cf713eb51019f746af00959ad0b1a323042ddacab4
MISC metadata.xml 458 BLAKE2B ced6e1176b862fed126b9697e43160477eb9e7d3462440b88047f9bc8f8f6e03984ef27ea0920d386b62a3d786bd7ef7e663d754c109c8fc472c736d98a6a0ed SHA512 fd7ce8574b1f9124bb340c637a28540a9fb659056b5c08a713ba0470aca2ad68a93d3a7b27431db51f7d850792ce17e71d7f92525f81e2f2c8a550f94fb8790e

View File

@@ -1,30 +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,8} )
inherit distutils-r1
DESCRIPTION="Python API for interacting with Join by joaoapps."
HOMEPAGE="https://github.com/nkgilley/python-join-api https://pypi.org/project/python-join-api/"
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"
RDEPEND=">=dev-python/requests-2.0[${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..10} )
inherit distutils-r1
@@ -16,8 +16,10 @@ SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS=""
RDEPEND=">=dev-python/requests-2.0[${PYTHON_USEDEP}]"
DEPEND="${REDEPEND}
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]