void-packages/srcpkgs/python-Cheroot/template
2019-03-01 12:04:45 -03:00

47 lines
1.3 KiB
Bash

# Template file for 'python-Cheroot'
pkgname=python-Cheroot
version=6.5.4
revision=1
archs=noarch
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="Orphaned <orphan@voidlinux.org>"
license="BSD-3-Clause"
homepage="https://github.com/cherrypy/cheroot"
changelog="https://github.com/cherrypy/cheroot/blob/master/CHANGES.rst"
distfiles="${PYPI_SITE}/c/cheroot/cheroot-${version}.tar.gz"
checksum=beb8eb9eeff5746059607e81b72efd6f4ca099111dc13f8961ae9e4f63f7786b
alternatives="cheroot:cheroot:/usr/bin/cheroot2"
pre_build() {
sed -i setup.cfg \
-e '/setuptools_scm/d' \
-e '/setuptools_scm_git_archive/d' \
-e '/use_scm_version/d' \
-e '/backports.*/s/$/;python_version<"3.4"/' \
-e "/name = /a\
version = ${version}"
}
post_install() {
vlicense LICENSE.md
}
python3-Cheroot_package() {
archs=noarch
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
}
}