void-packages/srcpkgs/python-dulwich/template
Alessio Sergi 93d53f5f82 python-dulwich: update to 0.15.0
Now dual licensed Apache-2.0 and GPL-2.
2016-10-12 02:31:03 +02:00

41 lines
1.2 KiB
Bash

# Template file for 'python-dulwich'
pkgname=python-dulwich
version=0.15.0
revision=1
wrksrc="dulwich-${version}"
build_style=python-module
python_versions="2.7 3.4"
hostmakedepends="python-setuptools python3.4-setuptools"
makedepends="python-devel python3.4-devel"
pycompile_module="dulwich"
short_desc="Python2 implementation of the Git file formats and protocols"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
homepage="https://www.dulwich.io/"
license="GPL-2, Apache-2.0"
distfiles="${PYPI_SITE}/d/dulwich/dulwich-${version}.tar.gz"
checksum=6f0a09d93f01caf1ba054b3f751d5cc1f0e6afc5c97fd23d67d7acf92f0d0b16
alternatives="
dulwich:dul-receive-pack:/usr/bin/dul-receive-pack2.7
dulwich:dul-upload-pack:/usr/bin/dul-upload-pack2.7
dulwich:dulwich:/usr/bin/dulwich2.7"
post_install() {
# remove extra docs
rm -rf ${DESTDIR}/usr/lib/python*/site-packages/docs
}
python3.4-dulwich_package() {
alternatives="
dulwich:dul-receive-pack:/usr/bin/dul-receive-pack3.4
dulwich:dul-upload-pack:/usr/bin/dul-upload-pack3.4
dulwich:dulwich:/usr/bin/dulwich3.4"
pycompile_version="3.4"
pycompile_module="dulwich"
short_desc="${short_desc/Python2/Python3.4}"
pkg_install() {
vmove usr/bin/*3.4
vmove usr/lib/python3.4
}
}