Date: Mon, 8 May 2017 10:49:40 +0000 (UTC) From: Renato Botelho <garga@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r440412 - in head/net-mgmt: . iprange Message-ID: <201705081049.v48AneDt081062@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201705081049.v48AneDt081062>