From owner-svn-ports-all@freebsd.org Sun Jun 18 19:28:41 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A8D1BD8C547; Sun, 18 Jun 2017 19:28:41 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 7406979476; Sun, 18 Jun 2017 19:28:41 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v5IJSewo008202; Sun, 18 Jun 2017 19:28:40 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5IJSemx008198; Sun, 18 Jun 2017 19:28:40 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201706181928.v5IJSemx008198@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Sun, 18 Jun 2017 19:28:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443848 - in head/devel: . py-bsd 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.23 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: Sun, 18 Jun 2017 19:28:41 -0000 Author: wg Date: Sun Jun 18 19:28:40 2017 New Revision: 443848 URL: https://svnweb.freebsd.org/changeset/ports/443848 Log: devel/py-bsd: Python wrappers for various BSD libc and system calls WWW: https://github.com/freenas/py-bsd Added: head/devel/py-bsd/ head/devel/py-bsd/Makefile (contents, props changed) head/devel/py-bsd/distinfo (contents, props changed) head/devel/py-bsd/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jun 18 18:56:18 2017 (r443847) +++ head/devel/Makefile Sun Jun 18 19:28:40 2017 (r443848) @@ -4176,6 +4176,7 @@ SUBDIR += py-bluelet SUBDIR += py-boto SUBDIR += py-botocore + SUBDIR += py-bsd SUBDIR += py-cached-property SUBDIR += py-cachetools SUBDIR += py-calendar Added: head/devel/py-bsd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-bsd/Makefile Sun Jun 18 19:28:40 2017 (r443848) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= netif +PORTVERSION= 1.0.20170329 +CATEGORIES= devel python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Python wrappers for various BSD libc and system calls + +LICENSE= BSD3CLAUSE + +BUILD_DEPENDS= cython>0:lang/cython \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six + +USE_GITHUB= yes +GH_ACCOUNT= freenas +GH_PROJECT= py-bsd +GH_TAGNAME= 6d148fa + +USES= python +USE_PYTHON= autoplist distutils + +.include + +.if ${PYTHON_REL} < 3400 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}enum34>0:devel/py-enum34 +.endif + +.include Added: head/devel/py-bsd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-bsd/distinfo Sun Jun 18 19:28:40 2017 (r443848) @@ -0,0 +1,3 @@ +TIMESTAMP = 1497784988 +SHA256 (freenas-py-bsd-1.0.20170329-6d148fa_GH0.tar.gz) = 3398de5028f197572ed4bc2c8952283a2462cf1b38477d5a2a38ce26ce689b4a +SIZE (freenas-py-bsd-1.0.20170329-6d148fa_GH0.tar.gz) = 44561 Added: head/devel/py-bsd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-bsd/pkg-descr Sun Jun 18 19:28:40 2017 (r443848) @@ -0,0 +1,3 @@ +Python wrappers for various BSD libc and system calls. + +WWW: https://github.com/freenas/py-bsd