mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
- Add p5-Net-Subnet 1.02
This is a simple but fast pure Perl module for determining whether a given IP address is in a given set of IP subnets. It's iterative, and it doesn't use any fancy tries, but because it uses simple bitwise operations on strings it's still very fast. All documented functions are exported by default. Subnets have to be given in "address/mask" or "address/length" (CIDR) format. The Socket and Socket6 modules are used to normalise addresses, which means that any of the address formats supported by inet_aton and inet_pton can be used with Net::Subnet. WWW: http://search.cpan.org/dist/Net-Subnet/ PR: ports/161335 Submitted by: Henk van Oers <hvo.pm@xs4all.nl>
This commit is contained in:
parent
a8ff0b8aa8
commit
62d8522a75
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=284358
5 changed files with 47 additions and 0 deletions
|
@ -641,6 +641,7 @@
|
|||
SUBDIR += p5-Net-Server
|
||||
SUBDIR += p5-Net-Server-Coro
|
||||
SUBDIR += p5-Net-Services
|
||||
SUBDIR += p5-Net-Subnet
|
||||
SUBDIR += p5-Net-Subnets
|
||||
SUBDIR += p5-Net-TCLink
|
||||
SUBDIR += p5-Net-TcpDumpLog
|
||||
|
|
26
net/p5-Net-Subnet/Makefile
Normal file
26
net/p5-Net-Subnet/Makefile
Normal file
|
@ -0,0 +1,26 @@
|
|||
# New ports collection makefile for: p5-Net-Subnet
|
||||
# Date created: 2011-10-06
|
||||
# Whom: Henk van Oers <hvo.pm@xs4all.nl>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= Net-Subnet
|
||||
PORTVERSION= 1.02
|
||||
CATEGORIES= net perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= perl@FreeBSD.org
|
||||
COMMENT= Fast IP-in-subnet matcher for IPv4 and IPv6, CIDR or mask
|
||||
|
||||
LICENSE= ART10
|
||||
|
||||
BUILD_DEPENDS= p5-Socket6>=0.23:${PORTSDIR}/net/p5-Socket6
|
||||
RUN_DEPENDS= p5-Socket6>=0.23:${PORTSDIR}/net/p5-Socket6
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MAN3= Net::Subnet.3
|
||||
|
||||
.include <bsd.port.mk>
|
2
net/p5-Net-Subnet/distinfo
Normal file
2
net/p5-Net-Subnet/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (Net-Subnet-1.02.tar.gz) = 1ba32e2b33160eddfe3c210298a201a2d54d3e9a1d0095d5f173ece795db98f0
|
||||
SIZE (Net-Subnet-1.02.tar.gz) = 4103
|
13
net/p5-Net-Subnet/pkg-descr
Normal file
13
net/p5-Net-Subnet/pkg-descr
Normal file
|
@ -0,0 +1,13 @@
|
|||
This is a simple but fast pure Perl module for determining whether a given IP
|
||||
address is in a given set of IP subnets. It's iterative, and it doesn't use any
|
||||
fancy tries, but because it uses simple bitwise operations on strings it's still
|
||||
very fast.
|
||||
|
||||
All documented functions are exported by default.
|
||||
|
||||
Subnets have to be given in "address/mask" or "address/length" (CIDR) format.
|
||||
The Socket and Socket6 modules are used to normalise addresses, which means that
|
||||
any of the address formats supported by inet_aton and inet_pton can be used with
|
||||
Net::Subnet.
|
||||
|
||||
WWW: http://search.cpan.org/dist/Net-Subnet/
|
5
net/p5-Net-Subnet/pkg-plist
Normal file
5
net/p5-Net-Subnet/pkg-plist
Normal file
|
@ -0,0 +1,5 @@
|
|||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Subnet/.packlist
|
||||
%%SITE_PERL%%/Net/Subnet.pm
|
||||
@dirrmtry %%SITE_PERL%%/Net
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/Subnet
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net
|
Loading…
Add table
Reference in a new issue