From 88c39611f1f682f163aafb2c72fc60756fd2c47e Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sat, 9 May 2015 10:47:59 +0200 Subject: [PATCH] libcap-ng: added python3.4 bindings for native builds. --- srcpkgs/libcap-ng-python3.4 | 1 + srcpkgs/libcap-ng/template | 19 +++++++++++++++---- 2 files changed, 16 insertions(+), 4 deletions(-) create mode 120000 srcpkgs/libcap-ng-python3.4 diff --git a/srcpkgs/libcap-ng-python3.4 b/srcpkgs/libcap-ng-python3.4 new file mode 120000 index 00000000000..414bbce7c7f --- /dev/null +++ b/srcpkgs/libcap-ng-python3.4 @@ -0,0 +1 @@ +libcap-ng \ No newline at end of file diff --git a/srcpkgs/libcap-ng/template b/srcpkgs/libcap-ng/template index 8ee75b2a100..25dbd9fd930 100644 --- a/srcpkgs/libcap-ng/template +++ b/srcpkgs/libcap-ng/template @@ -1,9 +1,9 @@ # Template file for 'libcap-ng' pkgname=libcap-ng version=0.7.6 -revision=1 +revision=2 build_style=gnu-configure -hostmakedepends="python-devel swig" +hostmakedepends="python-devel python3.4-devel swig" short_desc="An alternate POSIX capabilities library" maintainer="Juan RP " homepage="http://people.redhat.com/sgrubb/libcap-ng/" @@ -11,10 +11,11 @@ license="GPL-2, LGPL-2.1" distfiles="http://people.redhat.com/sgrubb/$pkgname/$pkgname-$version.tar.gz" checksum=9de3caebcc6248f3e9f8c278068253dee89c39d7ffcd284a10fc6ce2b06a2dff -subpackages="libcap-ng-devel libcap-ng-progs libcap-ng-python" +subpackages="libcap-ng-devel libcap-ng-progs libcap-ng-python libcap-ng-python3.4" if [ "$CROSS_BUILD" ]; then subpackages="${subpackages/libcap-ng-python/}" + subpackages="${subpackages/libcap-ng-python3.4/}" configure_args+=" --without-python" fi @@ -37,12 +38,22 @@ libcap-ng-progs_package() { vmove usr/share } } +libcap-ng-python3.4_package() { + lib32disabled=yes + short_desc+=" - python3.4 bindings" + depends="python3.4" + pycompile_module="capng" + pycompile_version="3.4" + pkg_install() { + vmove "usr/lib/python3.4" + } +} libcap-ng-python_package() { lib32disabled=yes short_desc+=" - python bindings" depends="python" pycompile_module="capng" pkg_install() { - vmove "usr/lib/python*" + vmove "usr/lib/python2*" } }