30 lines
895 B
Bash
30 lines
895 B
Bash
# Template file for 'python-yamllint'
|
|
pkgname=python-yamllint
|
|
version=1.6.1
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="yamllint-${version}"
|
|
build_style=python-module
|
|
pycompile_module="yamllint"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python-setuptools python-yaml"
|
|
short_desc="Python2 linter for YAML files"
|
|
maintainer="Joseph LaFreniere <joseph@lafreniere.xyz>"
|
|
homepage="https://github.com/adrienverge/yamllint"
|
|
license="GPL-3"
|
|
distfiles="${homepage}/archive/v${version}.tar.gz"
|
|
checksum=a100c738df43e9bf82abfb5f496c503c48ee1112c56c8906078bb11733bb6aa0
|
|
alternatives="yamllint:yamllint:/usr/bin/yamllint2"
|
|
|
|
python3-yamllint_package() {
|
|
noarch=yes
|
|
depends="python3-setuptools python3-yaml"
|
|
pycompile_module="yamllint"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
alternatives="yamllint:yamllint:/usr/bin/yamllint3"
|
|
pkg_install() {
|
|
vmove usr/bin/*3
|
|
vmove usr/lib/python3*
|
|
}
|
|
}
|