From e5b740e7b4d2b84d982bc358cf0e37d277609fc9 Mon Sep 17 00:00:00 2001 From: "Liguros - Gitlab CI/CD [develop]" Date: Thu, 24 Nov 2022 18:50:26 +0000 Subject: Adding metadata --- dev-python/pycodestyle/Manifest | 2 +- dev-python/pycodestyle/pycodestyle-2.10.0.ebuild | 36 ++++++++++++++++++++++++ dev-python/pycodestyle/pycodestyle-2.9.0.ebuild | 36 ------------------------ 3 files changed, 37 insertions(+), 37 deletions(-) create mode 100644 dev-python/pycodestyle/pycodestyle-2.10.0.ebuild delete mode 100644 dev-python/pycodestyle/pycodestyle-2.9.0.ebuild (limited to 'dev-python/pycodestyle') diff --git a/dev-python/pycodestyle/Manifest b/dev-python/pycodestyle/Manifest index 15515f54125b..a4f201320d7c 100644 --- a/dev-python/pycodestyle/Manifest +++ b/dev-python/pycodestyle/Manifest @@ -1,2 +1,2 @@ -DIST pycodestyle-2.9.0.tar.gz 102014 BLAKE2B ee2c2cad332e7442f9e557f388c3de09ea0ea65b0678c65d64d6293de18aa884a39a6a65ce47a99ac04b98da4e4bad14d2ccd228b22bdbd7361a3a0ca2c27afb SHA512 82926bf1c5b72decc0679d4fcec705d707b91b347ea0eec52b1f05301b96e55fc75afdb367ecdec674976fe1f2f7b475498a8e9a2ba19e3dfd483584a9ef841e +DIST pycodestyle-2.10.0.tar.gz 81136 BLAKE2B d7a011208d542a9c1ba9a05f8fff0c9ada2e6c12152cef202c4b107e678478c8d8355f32169356bb586864ce8d142bfeeb2e0e5619711c6a34b9d32d1bc27e2f SHA512 b094421d4954fe3fa31b9ddb26a258caf035fe109c2addfbbab2ba8d94f0bb6bd9d71fcf0917da77b157d77056de0a218dd808d686f6d01e713a5bc0a890225a DIST pycodestyle-2.9.1.tar.gz 81435 BLAKE2B 7d6102e900b39b04d8e051a99a3763bd13f321df299409c5bd7e28b79b95d6d6ead5fc0b0ddc7a52e5056288de08e66d160b7dd8ca6f28be2c00ad922031cb3d SHA512 420248fa90b67a625acc7cca0bde4e8a0f69e0de9e2798ddd3b3c6ee8c9917b0c8c970dde2f01881ac446354d75131a84bbe7c207754190343f6df5d3b125ab7 diff --git a/dev-python/pycodestyle/pycodestyle-2.10.0.ebuild b/dev-python/pycodestyle/pycodestyle-2.10.0.ebuild new file mode 100644 index 000000000000..2c1b0617319a --- /dev/null +++ b/dev-python/pycodestyle/pycodestyle-2.10.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 2020-2022 Liguros Authors +# Distributed under the terms of the GNU General Public License v2 +EAPI=8 + +PYTHON_COMPAT=( python3_{7,8,9,10,11} ) + +inherit distutils-r1 + +DESCRIPTION="Python style guide checker (fka pep8)" +HOMEPAGE="https://pypi.org/project/pycodestyle/" +SRC_URI="https://github.com/PyCQA/pycodestyle/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="doc" + +RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" + +python_compile_all() { + use doc && emake -C docs html +} + +python_test() { + PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py -v --statistics pycodestyle.py || die + PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py -v --testsuite=testsuite || die + PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py --doctest -v || die + esetup.py test +} + +python_install_all() { + use doc && local HTML_DOCS=( docs/_build/html/. ) + distutils-r1_python_install_all +} diff --git a/dev-python/pycodestyle/pycodestyle-2.9.0.ebuild b/dev-python/pycodestyle/pycodestyle-2.9.0.ebuild deleted file mode 100644 index 43c0d9d4c477..000000000000 --- a/dev-python/pycodestyle/pycodestyle-2.9.0.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 2020-2022 Liguros Authors -# Distributed under the terms of the GNU General Public License v2 -EAPI=8 - -PYTHON_COMPAT=( python3_{7,8,9,10,11} pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Python style guide checker (fka pep8)" -HOMEPAGE="https://pypi.org/project/pycodestyle/" -SRC_URI="https://github.com/PyCQA/pycodestyle/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="doc" - -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" - -python_compile_all() { - use doc && emake -C docs html -} - -python_test() { - PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py -v --statistics pycodestyle.py || die - PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py -v --testsuite=testsuite || die - PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py --doctest -v || die - esetup.py test -} - -python_install_all() { - use doc && local HTML_DOCS=( docs/_build/html/. ) - distutils-r1_python_install_all -} -- cgit v1.3