summaryrefslogtreecommitdiff
path: root/dev-python/pycodestyle/pycodestyle-2.12.0.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-03-31 06:13:28 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-03-31 06:13:28 +0000
commitea96ffabd1ec563b10a4f21542178662d32938de (patch)
treea2751f2bdfc639e46b0433f87d08d87986052367 /dev-python/pycodestyle/pycodestyle-2.12.0.ebuild
parentfde0a0b5c69d3aad6ff9c3bc3e5a409811dff086 (diff)
downloadbaldeagleos-repo-ea96ffabd1ec563b10a4f21542178662d32938de.tar.gz
baldeagleos-repo-ea96ffabd1ec563b10a4f21542178662d32938de.tar.xz
baldeagleos-repo-ea96ffabd1ec563b10a4f21542178662d32938de.zip
Adding metadata
Diffstat (limited to 'dev-python/pycodestyle/pycodestyle-2.12.0.ebuild')
-rw-r--r--dev-python/pycodestyle/pycodestyle-2.12.0.ebuild36
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-python/pycodestyle/pycodestyle-2.12.0.ebuild b/dev-python/pycodestyle/pycodestyle-2.12.0.ebuild
deleted file mode 100644
index 1b63cd97b62f..000000000000
--- a/dev-python/pycodestyle/pycodestyle-2.12.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2020-2024 Liguros Authors
-# Distributed under the terms of the GNU General Public License v2
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9,10,11,12,13} )
-
-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
-}