From 31640ab74e9f3d0af4ef4e83c9735ce160c8dd39 Mon Sep 17 00:00:00 2001 From: Alessio Sergi Date: Sat, 12 Mar 2016 19:11:02 +0100 Subject: [PATCH] python-gntp: update to 1.0.3 - noarch=yes - add missing pycompile_module --- srcpkgs/python-gntp/template | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template index 093ff16e3b6..777474fdc92 100644 --- a/srcpkgs/python-gntp/template +++ b/srcpkgs/python-gntp/template @@ -1,24 +1,35 @@ -pkgname="python-gntp" -version=1.0.2 -revision=2 +# Template file for 'python-gntp' +pkgname=python-gntp +version=1.0.3 +revision=1 +noarch=yes wrksrc="gntp-${version}" build_style=python-module python_versions="2.7 3.4" +pycompile_module="gntp" hostmakedepends="python-devel python3.4-devel" -makedepends="${hostmakedepends}" depends="python" maintainer="Dominik Honnef " license="MIT" homepage="https://github.com/kfdm/gntp" -short_desc="A Python library for working with the Growl Notification Transport Protocol" -distfiles="https://github.com/kfdm/gntp/archive/v1.0.2.tar.gz" -checksum=c767142d0fd9540da84b34c7334da05f5c313e77a428be0e0412e62309c7d899 +short_desc="Python2 library for the Growl Notification Transport Protocol" +distfiles="https://github.com/kfdm/gntp/archive/v${version}.tar.gz" +checksum=e9fde29e5ec37dfb77a7659018a7c7f65cb1411054c864eae137ce3d008f794f + +post_install() { + vbin build-3.4/scripts-3.4/gntp gntp3.4 + vlicense LICENSE +} python3.4-gntp_package() { - short_desc="${short_desc//Python/Python3.4/}" + noarch=yes depends="python3.4" pycompile_version="3.4" + pycompile_module="gntp" + short_desc="${short_desc/Python2/Python3.4}" pkg_install() { + vmove usr/bin/gntp3.4 vmove usr/lib/python3.4 + vlicense LICENSE } }