From owner-svn-ports-all@freebsd.org Mon May 8 10:49:42 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 1C525D60C8F; Mon, 8 May 2017 10:49:42 +0000 (UTC) (envelope-from garga@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 C031B1C51; Mon, 8 May 2017 10:49:41 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v48Ane4Z081066; Mon, 8 May 2017 10:49:40 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v48AneDt081062; Mon, 8 May 2017 10:49:40 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201705081049.v48AneDt081062@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Mon, 8 May 2017 10:49:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r440412 - in head/net-mgmt: . iprange 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: Mon, 08 May 2017 10:49:42 -0000 Author: garga Date: Mon May 8 10:49:40 2017 New Revision: 440412 URL: https://svnweb.freebsd.org/changeset/ports/440412 Log: Add net-mgmt/iprange This tool is capable of managing sets of IPs. Why to use iprange over any other aggregate ? * simpler * supports many input formats, all together in the same file * faster, actually a lot faster (thanks to the original design by Gabriel Somlo) * can compare files with IPs to find if they overlap and to what degree * can find the IPs common to a set of files * can exclude IPs (merge a set of files while excluding all IPs matched by another set of files) WWW: https://github.com/firehol/iprange MFH: 2017Q2 Sponsored by: Rubicon Communications (Netgate) Added: head/net-mgmt/iprange/ head/net-mgmt/iprange/Makefile (contents, props changed) head/net-mgmt/iprange/distinfo (contents, props changed) head/net-mgmt/iprange/pkg-descr (contents, props changed) Modified: head/net-mgmt/Makefile Modified: head/net-mgmt/Makefile ============================================================================== --- head/net-mgmt/Makefile Mon May 8 10:45:04 2017 (r440411) +++ head/net-mgmt/Makefile Mon May 8 10:49:40 2017 (r440412) @@ -97,6 +97,7 @@ SUBDIR += ipcad SUBDIR += ipcalc SUBDIR += ipplan + SUBDIR += iprange SUBDIR += ipv6calc SUBDIR += ipv6gen SUBDIR += ipv6mon Added: head/net-mgmt/iprange/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/iprange/Makefile Mon May 8 10:49:40 2017 (r440412) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= iprange +PORTVERSION= 1.0.3 +CATEGORIES= net-mgmt +MASTER_SITES= https://firehol.org/download/iprange/releases/v1.0.3/ + +MAINTAINER= garga@FreeBSD.org +COMMENT= Manage IP ranges + +LICENSE= GPLv2+ + +USES= tar:xz +GNU_CONFIGURE= yes + +PLIST_FILES= bin/iprange \ + man/man1/iprange.1.gz + +.include Added: head/net-mgmt/iprange/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/iprange/distinfo Mon May 8 10:49:40 2017 (r440412) @@ -0,0 +1,3 @@ +TIMESTAMP = 1491930472 +SHA256 (iprange-1.0.3.tar.xz) = e22d528eadff3486147aa0763bdc20d4f9b7af6c6f0e4ce9205bc3bc7ca18f53 +SIZE (iprange-1.0.3.tar.xz) = 107436 Added: head/net-mgmt/iprange/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/iprange/pkg-descr Mon May 8 10:49:40 2017 (r440412) @@ -0,0 +1,13 @@ +This tool is capable of managing sets of IPs. + + Why to use iprange over any other aggregate ? + * simpler + * supports many input formats, all together in the same file + * faster, actually a lot faster (thanks to the original design + by Gabriel Somlo) + * can compare files with IPs to find if they overlap and to what degree + * can find the IPs common to a set of files + * can exclude IPs (merge a set of files while excluding all IPs matched + by another set of files) + +WWW: https://github.com/firehol/iprange