vp-build/srcpkgs/python-pyflakes/template

36 lines
960 B
Bash

# Template file for 'python-pyflakes'
pkgname=python-pyflakes
version=1.6.0
revision=2
noarch=yes
replaces="pyflakes>=0"
wrksrc="pyflakes-${version}"
build_style=python-module
pycompile_module="pyflakes"
hostmakedepends="python-setuptools python3-setuptools"
depends="python-setuptools"
short_desc="Passive checker of Python programs (Python2)"
maintainer="Alessio Sergi <al3hex@gmail.com>"
homepage="https://github.com/PyCQA/pyflakes"
license="MIT"
distfiles="${PYPI_SITE}/p/pyflakes/pyflakes-${version}.tar.gz"
checksum=8d616a382f243dbf19b54743f280b80198be0bca3a5396f1d2e1fca6223e8805
alternatives="pyflakes:pyflakes:/usr/bin/pyflakes2"
post_install() {
vlicense LICENSE
}
python3-pyflakes_package() {
noarch=yes
pycompile_module="pyflakes"
depends="python3-setuptools"
short_desc="${short_desc/Python2/Python3}"
alternatives="pyflakes:pyflakes:/usr/bin/pyflakes3"
pkg_install() {
vmove usr/bin/*3
vmove usr/lib/python3*
vlicense LICENSE
}
}