Port details |
- p5-Net-Patricia Perl module for fast IP address lookups
- 1.22_1 net =6 1.22_1Version of this port present on the latest quarterly branch.
- Maintainer: perl@FreeBSD.org
- Port Added: 2001-03-13 18:12:21
- Last Update: 2022-09-07 21:58:51
- Commit Hash: fb16dfe
- People watching this port, also watch:: p5-File-Tail, p5-Digest-MD5, libevent, p5-libwww, p5-Digest-HMAC
- Also Listed In: perl5
- License: not specified in port
- WWW:
- https://metacpan.org/release/Net-Patricia
- Description:
- This module uses a Patricia Trie data structure to quickly perform
IP address prefix matching for applications such as IP subnet,
network or routing table lookups. The data structure is based on
a radix tree using a radix of two, so sometimes you see patricia
implementations called "radix" as well. The term "Trie" is derived
from the word "retrieval" but is pronounced like "try". Patricia
stands for "Practical Algorithm to Retrieve Information Coded as
Alphanumeric", and was first suggested for routing table lookups
by Van Jacobsen. Patricia Trie performance characteristics are
well-known as it has been employed for routing table lookups within
the BSD kernel since the 4.3 Reno release.
The BSD radix code is thoroughly described in "TCP/IP Illustrated,
Volume 2" by Wright and Stevens and in the paper ``A Tree-Based
Packet Routing Table for Berkeley Unix'' by Keith Sklower.
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- p5-Net-Patricia>0:net/p5-Net-Patricia
- To install the port:
- cd /usr/ports/net/p5-Net-Patricia/ && make install clean
- To add the package, run one of these commands:
- pkg install net/p5-Net-Patricia
- pkg install p5-Net-Patricia
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: p5-Net-Patricia
- Flavors: there is no flavor information for this port.
- distinfo:
- SHA256 (Net-Patricia-1.22.tar.gz) = 70835a926e1c5a8d0324c72fffee82eeb7ec6c141dee04fd446820b64f71c552
SIZE (Net-Patricia-1.22.tar.gz) = 27780
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- p5-Net-CIDR-Lite>=0.20 : net/p5-Net-CIDR-Lite
- perl5>=5.32.r0<5.33 : lang/perl5.32
- Runtime dependencies:
-
- p5-Socket6>=0 : net/p5-Socket6
- perl5>=5.32.r0<5.33 : lang/perl5.32
- This port is required by:
- for Build
-
- sysutils/p5-MogileFS-Network
- for Run
-
- net-mgmt/netdot
- sysutils/p5-MogileFS-Network
Configuration Options:
- No options to configure
- Options name:
- net_p5-Net-Patricia
- USES:
- perl5
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
1.22_1 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
1.22_1 20 Jul 2022 14:22:37 |
Tobias C. Berner (tcberner) |
net: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* <ports@c0decafe.net>
* Aaron Dalton <aaron@FreeBSD.org>
* Aaron Straup Cope <ascope@cpan.org>
* Aaron Zauner <az_mail@gmx.at>
* Adam Jette <jettea46@yahoo.com>
* Adam Weinberger <adamw@FreeBSD.org>
* Alan Eldridge <alane@geeksrus.net>
* Alex Bakhtin <Alex.Bakhtin@gmail.com>
* Alex Deiter <Alex.Deiter@Gmail.COM>
* Alex Dupre <ale@FreeBSD.org>
* Alex Dupre <sysadmin@alexdupre.com> (Only the first 15 lines of the commit message are shown above ) |
1.22_1 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
1.22_1 27 May 2018 20:15:20 |
sunpoet |
Update WWW
search.cpan.org is shutting down.
It will redirect to metacpan.org after June 25, 2018.
With hat: perl |
1.22_1 01 Apr 2016 14:16:20 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.
With hat: portmgr
Sponsored by: Absolight |
1.22_1 26 Nov 2014 13:08:38 |
mat |
Change the way Perl modules are installed, update the default Perl to 5.18.
Before, we had:
site_perl : lib/perl5/site_perl/5.18
site_perl/perl_arch : lib/perl5/site_perl/5.18/mach
perl_man3 : lib/perl5/5.18/man/man3
Now we have:
site_perl : lib/perl5/site_perl
site_arch : lib/perl5/site_perl/mach/5.18
perl_man3 : lib/perl5/site_perl/man/man3
Modules without any .so will be installed at the same place regardless of the (Only the first 15 lines of the commit message are shown above ) |
1.22 10 Jun 2014 12:14:14 |
mat |
Remove all the bootstrap files (.bs) from the plists.
Starting with perl 5.20, they're not installed any more if empty,
and on FreeBSD, they're (always ?) empty.
PR: 190681
Submitted by: mat
Exp-Run by: antoine
Sponsored by: Absolight |
1.22 25 Mar 2014 11:03:46 |
dinoex |
- fix buiild by addding: MAKE_JOBS_UNSAFE=yes
error:
libpatricia/libpatricia.a: could not read symbols: Archive has no index; run
ranlib to add one
*** [blib/arch/auto/Net/Patricia/Patricia.so] Error code 1 |
1.22 16 Oct 2013 07:07:01 |
culot |
- Update to 1.22
- Support staging
Changes: http://search.cpan.org/dist/Net-Patricia/Changes |
1.21 20 Sep 2013 22:10:25 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
net) |
1.21 04 Sep 2013 11:50:30 |
tobez |
Update to 1.21.
Changes: http://search.cpan.org/dist/Net-Patricia/Changes |
1.20 29 Aug 2013 04:08:54 |
sunpoet |
- Use single space after WWW: |
1.20 02 Aug 2013 18:52:11 |
mat |
- Convert to new perl framework
- Trim Makefile header
- Remove MAKE_JOBS_SAFE=yes, it's the default. |
1.20 17 Dec 2012 15:39:36 |
az |
Cleanup supporting perl version 5.8 and 5.10,
lang/perl5.8 and lang/5.10 will be removed from ports tree soon. |
1.20 12 Oct 2012 09:45:56 |
culot |
- Update to 1.20 [1]
- Remove dependency on p5-version (already in core)
- Add TEST_DEPENDS
Changes: http://search.cpan.org/dist/Net-Patricia/Changes
PR: ports/172580 [1]
Submitted by: Nick Hilliard <nick@foobar.org>
Feature safe: yes |
1.19 05 Jun 2012 09:46:27 |
az |
- Remove SITE_PERL from *_DEPENDS |
1.19 01 May 2012 01:47:10 |
swills |
- Assign clsung's p5- ports to perl@
Approved by: clsung via IRC |
1.19 03 Mar 2011 05:55:08 |
clsung |
- Update to 1.19 |
1.16_1 12 Jul 2010 08:02:27 |
clsung |
- misses runtime dependency on p5-Socket6
- bump PORTREVISION
Submitted by: ru |
1.16 22 Apr 2010 01:12:56 |
clsung |
- Update to 1.16
Changes: http://search.cpan.org/dist/Net-Patricia/Changes |
1.15_1 08 Jul 2009 01:46:55 |
clsung |
- requires p5-version to run
- bump PORTREVISION
PR: ports/136209
Submitted by: Matthew Luckie <mluckie_AT_cs dot waikato dot ac dot nz> |
1.15 24 Jun 2009 09:05:04 |
clsung |
- Update to 1.15
Changes: http://search.cpan.org/dist/Net-Patricia/Changes |
1.014 17 Apr 2008 14:30:31 |
araujo |
- Take advantage of CPAN macro from bsd.sites.mk, change
${MASTER_SITE_PERL_CPAN} to CPAN.
PR: ports/122674
Submitted by: Philip M. Gollucci <pgollucci@p6m7g8.com>
Reworked by: araujo (myself)
Approved by: portmgr (pav) |
1.014 22 Jan 2006 02:46:07 |
edwin |
Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtry
Approved by: krion@
PR: ports/88711 (related) |
1.014 11 Dec 2005 10:28:29 |
clsung |
- update to 1.014
- remove patch, since <sys/types.h> is included.
- take maintainership |
1.010 25 Nov 2005 16:48:31 |
pav |
- Add SHA256 |
1.010 29 Jan 2004 16:13:06 |
trevor |
SIZEify. |
1.010 24 Oct 2003 12:05:09 |
ijliao |
utilize SITE_PERL
PR: 58166
Submitted by: Cheng-Lung Sung <clsung@dragon2.net> |
1.010 20 Feb 2003 18:51:13 |
knu |
De-pkg-comment. |
1.010 27 Nov 2002 14:16:11 |
arved |
Fix Build on CURRENT
PR: 45790
Submitted by: Volker Stolz <vs@foldr.org> |
1.010 15 Mar 2002 05:10:46 |
pat |
Add CPAN as primary site to download tarball
PR: 35914
Submitted by: Kimura Fuyuki <fuyuki@mj.0038.net> |
25 Dec 2001 16:59:04 |
dirk |
portlint: - begin with a capital - don't end with '.' - remove port name
- don't exceed 70 characters |
14 Apr 2001 23:31:53 |
steve |
Remove empty directories on uninstall. |
13 Mar 2001 21:16:00 |
andreas |
oops, missed to import distinfo file |
13 Mar 2001 21:12:21 |
andreas |
new port p5-Net-Patricia |