From 6e7d296dd32f8836e9ee3308d3b0b8efcdb17bb2 Mon Sep 17 00:00:00 2001 From: Alessio Sergi Date: Sat, 20 Feb 2016 20:02:52 +0100 Subject: [PATCH] python-bitarray: fix pycompile_module, template cleanup --- srcpkgs/python-bitarray/template | 35 ++++++++++++++++---------------- 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/srcpkgs/python-bitarray/template b/srcpkgs/python-bitarray/template index 0bcb87eb5a6..feb1c96c92c 100644 --- a/srcpkgs/python-bitarray/template +++ b/srcpkgs/python-bitarray/template @@ -1,31 +1,30 @@ # Template file for 'python-bitarray' pkgname=python-bitarray version=0.8.1 -revision=1 -_realname=bitarray -wrksrc=$_realname-$version -pycompile_module="${_realname}.py" +revision=2 +wrksrc="bitarray-${version}" +pycompile_module="bitarray" python_versions="2.7 3.4" build_style=python-module -hostmakedepends="python-devel python-setuptools - python3.4-devel python3.4-setuptools" +hostmakedepends="python-setuptools python3.4-setuptools" makedepends="python-devel python3.4-devel libcurl-devel" -short_desc="Python object type for efficiently representing arrays of booleans" +short_desc="Python2 module for efficiently representing arrays of booleans" maintainer="Toyam Cox " -license="Python Software Foundation" +license="PSF-2" homepage="https://github.com/ilanschnell/bitarray" -distfiles="https://github.com/ilanschnell/${_realname}/archive/${version}.tar.gz" +distfiles="https://github.com/ilanschnell/bitarray/archive/${version}.tar.gz" checksum=428212974285eacf9f3b4a6fb60f365d727ab6e30b98de4eb2f238a7b0dd4b50 -python3.4-bitarray_package() { - short_desc="${short_desc/Python/Python3.4}" - pycompile_version="3.4" - depends="${sourcepkg}>=${version}_${revision}" - pkg_install() { - vmove usr/lib/python3.4 - } -} - post_install() { vlicense LICENSE } + +python3.4-bitarray_package() { + pycompile_version="3.4" + pycompile_module="bitarray" + short_desc="${short_desc/Python2/Python3.4}" + pkg_install() { + vmove usr/lib/python3.4 + vlicense LICENSE + } +}