diff options
author | Tobias Klausmann <klausman@gentoo.org> | 2016-09-06 13:48:41 +0200 |
---|---|---|
committer | Tobias Klausmann <klausman@gentoo.org> | 2016-09-06 13:48:41 +0200 |
commit | 63b8828cea0cd0ef0cd0579f7d0a8220b0b61352 (patch) | |
tree | eb38d61de5abbba72d4f06b6f7928b13260ee650 /dev-python/pycodestyle | |
parent | dev-ml/stringext: remove old (diff) | |
download | gentoo-63b8828cea0cd0ef0cd0579f7d0a8220b0b61352.tar.gz gentoo-63b8828cea0cd0ef0cd0579f7d0a8220b0b61352.tar.bz2 gentoo-63b8828cea0cd0ef0cd0579f7d0a8220b0b61352.zip |
dev-python/pycodestyle: Initial addition to the tree
This is the successor project to pep8 and will be needed for the
upcoming bump of flake8.
Diffstat (limited to 'dev-python/pycodestyle')
-rw-r--r-- | dev-python/pycodestyle/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pycodestyle/metadata.xml | 9 | ||||
-rw-r--r-- | dev-python/pycodestyle/pycodestyle-2.0.0.ebuild | 38 |
3 files changed, 48 insertions, 0 deletions
diff --git a/dev-python/pycodestyle/Manifest b/dev-python/pycodestyle/Manifest new file mode 100644 index 000000000000..8ad2207ca8d6 --- /dev/null +++ b/dev-python/pycodestyle/Manifest @@ -0,0 +1 @@ +DIST pycodestyle-2.0.0.tar.gz 81701 SHA256 37f0420b14630b0eaaf452978f3a6ea4816d787c3e6dcbba6fb255030adae2e7 SHA512 c003a75bb8873d8ec09cbaf7391c75ebd4739eeab518bbea03c8b2cdc18839773190352166ded78d32992adb56895ee1502003bca11b2d63676c10facb879ac8 WHIRLPOOL 3f162936ea03c8bcd2ba7adbcb77c3d8e44549090875719c888a9fbd86bb9cbf16d4378ffc1c2f28050253520aa86753172816429bc530bc074a2f8fd3e88613 diff --git a/dev-python/pycodestyle/metadata.xml b/dev-python/pycodestyle/metadata.xml new file mode 100644 index 000000000000..639c1bc61f6b --- /dev/null +++ b/dev-python/pycodestyle/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>klausman@gentoo.org</email> + <name>Tobias Klausmann</name> + </maintainer> +</pkgmetadata> + diff --git a/dev-python/pycodestyle/pycodestyle-2.0.0.ebuild b/dev-python/pycodestyle/pycodestyle-2.0.0.ebuild new file mode 100644 index 000000000000..5edf90516fcb --- /dev/null +++ b/dev-python/pycodestyle/pycodestyle-2.0.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Python style guide checker (fka pep8)" +HOMEPAGE="https://pypi.python.org/pypi/pycodestyle" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~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 +} |