mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 21:30:08 +02:00
73 lines
2.0 KiB
Bash
73 lines
2.0 KiB
Bash
SUMMARY="Python style guide checker"
|
|
DESCRIPTION="pycodestyle is a tool to check your Python code against some of the style conventions \
|
|
in PEP 8.
|
|
This package used to be called pep8 but was renamed to pycodestyle to reduce confusion.
|
|
Further discussion can be found in the issue where Guido requested this change.
|
|
Features
|
|
* Plugin architecture: Adding new checks is easy.
|
|
* Parseable output: Jump to error location in your editor.
|
|
* Small: Just one Python file, requires only stdlib. You can use just the pycodestyle.py file for \
|
|
this purpose.
|
|
* Comes with a comprehensive test suite."
|
|
HOMEPAGE="https://pypi.org/project/gitdb/"
|
|
COPYRIGHT="2006-2009 Johann C. Rocholl
|
|
2009-2014 Florent Xicluna
|
|
2014-2020 Ian Lee"
|
|
LICENSE="MIT"
|
|
REVISION="2"
|
|
pypiVersion="b6/83/5bcaedba1f47200f0665ceb07bcb00e2be123192742ee0edfb66b600e5fd"
|
|
SOURCE_URI="https://files.pythonhosted.org/packages/$pypiVersion/pycodestyle-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="2c9607871d58c76354b697b42f5d57e1ada7d261c261efac224b664affdc5785"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
PROVIDES="
|
|
$portName = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
|
|
PYTHON_PACKAGES=(python38 python39 python310)
|
|
PYTHON_VERSIONS=(3.8 3.9 3.10)
|
|
for i in "${!PYTHON_PACKAGES[@]}"; do
|
|
pythonPackage=${PYTHON_PACKAGES[i]}
|
|
pythonVersion=${PYTHON_VERSIONS[$i]}
|
|
eval "PROVIDES_${pythonPackage}=\"\
|
|
${portName}_$pythonPackage = $portVersion\n\
|
|
cmd:pycodestyle\
|
|
\"; \
|
|
REQUIRES_$pythonPackage=\"\
|
|
haiku\n\
|
|
cmd:python$pythonVersion\
|
|
\""
|
|
BUILD_REQUIRES="$BUILD_REQUIRES
|
|
setuptools_$pythonPackage"
|
|
BUILD_PREREQUIRES="$BUILD_PREREQUIRES
|
|
cmd:python$pythonVersion"
|
|
done
|
|
|
|
INSTALL()
|
|
{
|
|
for i in "${!PYTHON_PACKAGES[@]}"; do
|
|
pythonPackage=${PYTHON_PACKAGES[i]}
|
|
pythonVersion=${PYTHON_VERSIONS[$i]}
|
|
|
|
python=python$pythonVersion
|
|
installLocation=$prefix/lib/$python/vendor-packages/
|
|
export PYTHONPATH=$installLocation:$PYTHONPATH
|
|
mkdir -p $installLocation
|
|
rm -rf build
|
|
$python setup.py build install \
|
|
--root=/ --prefix=$prefix
|
|
|
|
packageEntries $pythonPackage \
|
|
$prefix/lib/python* \
|
|
$prefix/bin
|
|
done
|
|
}
|