void-packages/srcpkgs/python-Cheroot/template
2020-02-11 13:45:56 +01:00

44 lines
1.2 KiB
Bash

# Template file for 'python-Cheroot'
pkgname=python-Cheroot
version=8.3.0
revision=1
archs=noarch
wrksrc="cheroot-${version}"
build_style=python-module
hostmakedepends="python-setuptools python3-setuptools"
depends="python-setuptools python-six python-more-itertools
python-backports.functools_lru_cache python-jaraco.functools"
short_desc="High-performance, pure-Python HTTP server (Python2)"
maintainer="bra1nwave <bra1nwave@protonmail.com>"
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=a0577e1f28661727d472671a7cc4e0c12ea0cbc5220265e70f00a8b8cb628931
alternatives="cheroot:cheroot:/usr/bin/cheroot2"
pre_build() {
vsed -i setup.cfg \
-e '/setuptools_scm/d' \
-e '/use_scm_version/d' \
-e "/name = /a\
version = ${version}"
}
post_install() {
vlicense LICENSE.md
}
python3-Cheroot_package() {
archs=noarch
depends="python3-setuptools python3-six python3-more-itertools
python3-jaraco.functools"
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
}
}