From owner-svn-ports-all@freebsd.org Fri Feb 23 06:31:22 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1D548F2BF88; Fri, 23 Feb 2018 06:31:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C508B6F475; Fri, 23 Feb 2018 06:31:21 +0000 (UTC) (envelope-from yuri@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A75E112E3F; Fri, 23 Feb 2018 06:31:21 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1N6VLLD023784; Fri, 23 Feb 2018 06:31:21 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1N6VLht023780; Fri, 23 Feb 2018 06:31:21 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201802230631.w1N6VLht023780@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 23 Feb 2018 06:31:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462674 - in head/net: . py-iptools X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/net: . py-iptools X-SVN-Commit-Revision: 462674 X-SVN-Commit-Repository: ports 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.25 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: Fri, 23 Feb 2018 06:31:22 -0000 Author: yuri Date: Fri Feb 23 06:31:21 2018 New Revision: 462674 URL: https://svnweb.freebsd.org/changeset/ports/462674 Log: New port: net/py-iptools: Collection of python utilities for manipulating IPv4, IPv6 addresses PR: 226028 Submitted by: Jeremy Baggs Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D14481 Added: head/net/py-iptools/ head/net/py-iptools/Makefile (contents, props changed) head/net/py-iptools/distinfo (contents, props changed) head/net/py-iptools/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Fri Feb 23 06:22:56 2018 (r462673) +++ head/net/Makefile Fri Feb 23 06:31:21 2018 (r462674) @@ -1006,6 +1006,7 @@ SUBDIR += py-impacket SUBDIR += py-ipaddress SUBDIR += py-iplib + SUBDIR += py-iptools SUBDIR += py-kafka-python SUBDIR += py-kombu SUBDIR += py-ldap Added: head/net/py-iptools/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-iptools/Makefile Fri Feb 23 06:31:21 2018 (r462674) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= iptools +DISTVERSION= 0.6.1 +CATEGORIES= net +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jbaggs2016@gmail.com +COMMENT= Collection of python utilities for manipulating IPv4, IPv6 addresses + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/net/py-iptools/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-iptools/distinfo Fri Feb 23 06:31:21 2018 (r462674) @@ -0,0 +1,3 @@ +TIMESTAMP = 1519355898 +SHA256 (iptools-0.6.1.tar.gz) = 0f03875a5bed740ba4bf44decb6a78679cca914a1ee8a6cc468114485c4d98e3 +SIZE (iptools-0.6.1.tar.gz) = 13928 Added: head/net/py-iptools/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-iptools/pkg-descr Fri Feb 23 06:31:21 2018 (r462674) @@ -0,0 +1,5 @@ +The iptools package is a collection of utilities for dealing with IP addresses. +Utilities for manipulating IPv4 and IPv6 addresses including a class that +can be used to include CIDR network blocks in Django's INTERNAL_IPS setting. + +WWW: https://github.com/bd808/python-iptools