vp-build/srcpkgs/python-Cheroot/template

41 lines
1.1 KiB
Bash

# Template file for 'python-Cheroot'
pkgname=python-Cheroot
version=6.3.2
revision=1
noarch=yes
wrksrc="cheroot-${version}"
build_style=python-module
pycompile_module="cheroot"
hostmakedepends="python-setuptools python3-setuptools"
depends="python-setuptools python-six python-more-itertools
python-backports.functools_lru_cache"
short_desc="High-performance, pure-Python HTTP server (Python2)"
maintainer="Andrea Brancaleoni <abc@pompel.me>"
license="BSD-3-Clause"
homepage="https://github.com/cherrypy/cheroot"
distfiles="${PYPI_SITE}/c/cheroot/cheroot-${version}.tar.gz"
checksum=52f915d077ce6201e59c95c4a2ef89617d9b90e6185defb40c03ff3515d2066f
alternatives="cheroot:cheroot:/usr/bin/cheroot2"
pre_build() {
sed -i setup.py \
-e '/setuptools_scm/d' \
-e "s|use_scm_version=True|version='${version}'|"
}
post_install() {
vlicense LICENSE.md
}
python3-Cheroot_package() {
noarch=yes
pycompile_module="cheroot"
depends="python3-setuptools python3-six python3-more-itertools"
alternatives="cheroot:cheroot:/usr/bin/cheroot3"
short_desc="${short_desc/Python2/Python3}"
pkg_install() {
vmove usr/bin/*3
vmove usr/lib/python3*
vlicense LICENSE.md
}
}