From owner-svn-ports-all@FreeBSD.ORG Tue Jun 23 22:54:23 2015 Return-Path: Delivered-To: svn-ports-all@nevdull.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 75A72A97; Tue, 23 Jun 2015 22:54:23 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 49898CC6; Tue, 23 Jun 2015 22:54:23 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5NMsNBL027236; Tue, 23 Jun 2015 22:54:23 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5NMsMgo027227; Tue, 23 Jun 2015 22:54:22 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201506232254.t5NMsMgo027227@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Tue, 23 Jun 2015 22:54:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390466 - in head/devel: . py-libzfs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2015 22:54:23 -0000 Author: wg Date: Tue Jun 23 22:54:21 2015 New Revision: 390466 URL: https://svnweb.freebsd.org/changeset/ports/390466 Log: devel/py-libzfs: Python libzfs bindings using cython. WWW: https://github.com/freenas/py-libzfs Added: head/devel/py-libzfs/ head/devel/py-libzfs/Makefile (contents, props changed) head/devel/py-libzfs/distinfo (contents, props changed) head/devel/py-libzfs/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jun 23 22:23:58 2015 (r390465) +++ head/devel/Makefile Tue Jun 23 22:54:21 2015 (r390466) @@ -3957,6 +3957,7 @@ SUBDIR += py-libpeas SUBDIR += py-libplist SUBDIR += py-libvirt + SUBDIR += py-libzfs SUBDIR += py-ll-core SUBDIR += py-lock_file SUBDIR += py-lockfile Added: head/devel/py-libzfs/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-libzfs/Makefile Tue Jun 23 22:54:21 2015 (r390466) @@ -0,0 +1,36 @@ +# Created by: William Grzybowski +# $FreeBSD$ + +PORTNAME= libzfs +PORTVERSION= 1.0 +CATEGORIES= devel python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Python libzfs bindings + +LICENSE= BSD2CLAUSE + +BUILD_DEPENDS= cython>0:${PORTSDIR}/lang/cython + +USE_GITHUB= yes +GH_ACCOUNT= freenas +GH_PROJECT= py-libzfs +GH_TAGNAME= af5d66e + +USES= python +USE_PYTHON= autoplist distutils + +MAKE_ENV= FREEBSD_SRC=${SRC_BASE} + +.include + +.if !exists(${SRC_BASE}/sys/Makefile) +IGNORE= requires kernel source files in ${SRC_BASE} +.endif + +.if ${OPSYS} == FreeBSD && ${OSVERSION} <= 1000000 +IGNORE= This module requires at least FreeBSD 10 +.endif + +.include Added: head/devel/py-libzfs/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-libzfs/distinfo Tue Jun 23 22:54:21 2015 (r390466) @@ -0,0 +1,2 @@ +SHA256 (freenas-py-libzfs-1.0-af5d66e_GH0.tar.gz) = 7c7e1ddeb4f9bd24c7b3d282dd6798c029bae8c3133b106427ab1b4e41559171 +SIZE (freenas-py-libzfs-1.0-af5d66e_GH0.tar.gz) = 18450 Added: head/devel/py-libzfs/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-libzfs/pkg-descr Tue Jun 23 22:54:21 2015 (r390466) @@ -0,0 +1,3 @@ +Python libzfs bindings using cython. + +WWW: https://github.com/freenas/py-libzfs