python-CherryPy: add python3.4 version
- fix pycompile_module - various misc fixes/cleanups
This commit is contained in:
parent
70292ab80e
commit
ed44e2abb1
|
@ -1,20 +1,35 @@
|
||||||
# Template file for 'python-cherry'
|
# Template file for 'python-CherryPy'
|
||||||
_realname=CherryPy
|
pkgname=python-CherryPy
|
||||||
pkgname=python-${_realname}
|
|
||||||
version=5.0.1
|
version=5.0.1
|
||||||
revision=1
|
revision=2
|
||||||
wrksrc="${_realname}-${version}"
|
|
||||||
build_style=python-module
|
|
||||||
noarch=yes
|
noarch=yes
|
||||||
hostmakedepends="python"
|
wrksrc="CherryPy-${version}"
|
||||||
pycompile_module="${_realname}"
|
build_style=python-module
|
||||||
short_desc="A pythonic, object-oriented web development framework"
|
python_versions="2.7 3.4"
|
||||||
|
hostmakedepends="python-setuptools python3.4-setuptools"
|
||||||
|
depends="python"
|
||||||
|
pycompile_module="cherrypy"
|
||||||
|
short_desc="Object-oriented HTTP framework (Python2)"
|
||||||
maintainer="Andrea Brancaleoni <miwaxe@gmail.com>"
|
maintainer="Andrea Brancaleoni <miwaxe@gmail.com>"
|
||||||
license="BSD"
|
license="3-clause-BSD"
|
||||||
homepage="http://www.cherrypy.org"
|
homepage="http://www.cherrypy.org"
|
||||||
distfiles="${PYPI_SITE}/${_realname:0:1}/${_realname}/${_realname}-${version}.tar.gz"
|
distfiles="${PYPI_SITE}/C/CherryPy/CherryPy-${version}.tar.gz"
|
||||||
checksum=6dd6a3c2890ff613b92c597126f548d41a59024448ae3439a1dba08013610403
|
checksum=6dd6a3c2890ff613b92c597126f548d41a59024448ae3439a1dba08013610403
|
||||||
|
|
||||||
post_install() {
|
post_install() {
|
||||||
vlicense cherrypy/LICENSE.txt
|
vlicense cherrypy/LICENSE.txt
|
||||||
|
vbin build-3.4/scripts-3.4/cherryd cherryd3.4
|
||||||
|
}
|
||||||
|
|
||||||
|
python3.4-CherryPy_package() {
|
||||||
|
noarch=yes
|
||||||
|
depends="python3.4"
|
||||||
|
pycompile_version="3.4"
|
||||||
|
pycompile_module="cherrypy"
|
||||||
|
short_desc="${short_desc/Python2/Python3.4}"
|
||||||
|
pkg_install() {
|
||||||
|
vmove usr/bin/cherryd3.4
|
||||||
|
vmove usr/lib/python3.4
|
||||||
|
vlicense cherrypy/LICENSE.txt
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
python-CherryPy
|
Loading…
Reference in New Issue