From owner-svn-ports-all@freebsd.org Wed Jul 29 13:07:45 2015 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 3FDB69ADBD0; Wed, 29 Jul 2015 13:07:45 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org (repo.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 165A08D7; Wed, 29 Jul 2015 13:07:45 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t6TD7iWt039415; Wed, 29 Jul 2015 13:07:44 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t6TD7hHT039411; Wed, 29 Jul 2015 13:07:43 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201507291307.t6TD7hHT039411@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Wed, 29 Jul 2015 13:07:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393158 - in head/net: . py-netif 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: Wed, 29 Jul 2015 13:07:45 -0000 Author: wg Date: Wed Jul 29 13:07:42 2015 New Revision: 393158 URL: https://svnweb.freebsd.org/changeset/ports/393158 Log: net/py-netif: Python network configuration library for FreeBSD WWW: https://github.com/freenas/py-netif Added: head/net/py-netif/ head/net/py-netif/Makefile (contents, props changed) head/net/py-netif/distinfo (contents, props changed) head/net/py-netif/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Wed Jul 29 13:01:15 2015 (r393157) +++ head/net/Makefile Wed Jul 29 13:07:42 2015 (r393158) @@ -930,6 +930,7 @@ SUBDIR += py-msrplib SUBDIR += py-ndg_httpsclient SUBDIR += py-netaddr + SUBDIR += py-netif SUBDIR += py-netifaces SUBDIR += py-netlib SUBDIR += py-netstring Added: head/net/py-netif/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-netif/Makefile Wed Jul 29 13:07:42 2015 (r393158) @@ -0,0 +1,34 @@ +# Created by: William Grzybowski +# $FreeBSD$ + +PORTNAME= netif +PORTVERSION= 1.0 +CATEGORIES= net python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wg@FreeBSD.org +COMMENT= Python network configuration library for FreeBSD + +LICENSE= BSD2CLAUSE + +BUILD_DEPENDS= cython>0:${PORTSDIR}/lang/cython + +USE_GITHUB= yes +GH_ACCOUNT= freenas +GH_PROJECT= py-netif +GH_TAGNAME= 87ed51c + +USES= python +USE_PYTHON= autoplist distutils + +.include + +.if ${PYTHON_REL} < 3400 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}enum34>0:${PORTSDIR}/devel/py-enum34 +.endif + +.if ${OPSYS} == FreeBSD && ${OSVERSION} <= 1000000 +IGNORE= This module requires at least FreeBSD 10 +.endif + +.include Added: head/net/py-netif/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-netif/distinfo Wed Jul 29 13:07:42 2015 (r393158) @@ -0,0 +1,2 @@ +SHA256 (freenas-py-netif-1.0-87ed51c_GH0.tar.gz) = 62a3a5d8b8ead84727a97a6d9180a7af5e96460e04814e11730a1a5c6f38a5a7 +SIZE (freenas-py-netif-1.0-87ed51c_GH0.tar.gz) = 15743 Added: head/net/py-netif/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-netif/pkg-descr Wed Jul 29 13:07:42 2015 (r393158) @@ -0,0 +1,3 @@ +Python network configuration library for FreeBSD. + +WWW: https://github.com/freenas/py-netif