Port details |
- pear-Net_IPv6 Check and validate IPv6 addresses
- 1.3.0.b4_2 net =5 1.3.0.b4_2Version of this port present on the latest quarterly branch.
- Maintainer: garga@FreeBSD.org
- Port Added: 2004-11-26 16:00:38
- Last Update: 2024-08-15 11:47:43
- Commit Hash: eb414fd
- People watching this port, also watch:: libXdamage, mDNSResponder, autoconf, php81-pear, libevent
- Also Listed In: pear
- License: BSD2CLAUSE
- WWW:
- https://pear.php.net/package/Net_IPv6
- Description:
- The class allows you to:
* check if an addresse is an IPv6 addresse
* compress/uncompress IPv6 addresses
* check for an IPv4 compatible ending in an IPv6 adresse
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - There is no configure plist information for this port.
- Dependency lines:
-
- php82-pear-Net_IPv6>0:net/pear-Net_IPv6
- To install the port:
- cd /usr/ports/net/pear-Net_IPv6/ && make install clean
- To add the package, run one of these commands:
- pkg install net/pear-Net_IPv6
- pkg install php82-pear-Net_IPv6
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: php82-pear-Net_IPv6
- Package flavors (<flavor>: <package>)
- php82: php82-pear-Net_IPv6
- php81: php81-pear-Net_IPv6
- php83: php83-pear-Net_IPv6
- php84: php84-pear-Net_IPv6
- distinfo:
- TIMESTAMP = 1657751183
SHA256 (PEAR/Net_IPv6-1.3.0b4.tgz) = ec676dc81c54e02f11b7162fffdf6f5211d25d5d7a00e21a7ded6b0042c9f61b
SIZE (PEAR/Net_IPv6-1.3.0b4.tgz) = 11437
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:
-
- pear : devel/pear@php82
- Runtime dependencies:
-
- php.h : lang/php82
- pear : devel/pear@php82
- This port is required by:
- for Run
-
- net-mgmt/observium
Configuration Options:
- No options to configure
- Options name:
- net_pear-Net_IPv6
- USES:
- pear
- 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 |
1.3.0.b4_2 15 Aug 2024 11:47:43 |
Po-Chuan Hsieh (sunpoet) |
net/pear-Net_IPv6: Add NO_ARCH
- While I'm here, remove outdated PORTSCOUT
Approved by: portmgr (blanket) |
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.3.0.b4_2 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.3.0.b4_2 16 Aug 2022 18:34:09 |
Renato Botelho (garga) Author: Reid Linnemann |
net/pear-Net_IPv6: Fix for PHP < 8
Previously added patches use str_ends_with(), which is only available
in php 8 and newer. This commit adds to the patch a definition of
str_ends_with() in the case it is undefined in an earlier version.
Sponsored by: Rubicon Communications, LLC ("Netgate")
Differential Revision: https://reviews.freebsd.org/D36219 |
1.3.0.b4_1 12 Aug 2022 11:23:28 |
Renato Botelho (garga) Author: Reid Linnemann |
net/pear-Net_IPv6: Add patches for handling zones
Summary:
The upstream Net/IPv6 package from PEAR has significant bugs revolving around
handling of string presentation v6 addresses which have RFC 4007 zones. Patches
are added in this commit to address them plus a handful of other errors until an
updated version of the package becomes available with these changes included.
* Add getZone() and removeZone() class methods
* Alter SplitV64() to remove any zone before attempting to split an address
into v6 and v4 parts. The zone has no meaning in this context
* Alter compress to remove and restore a zone prior to restoring a prefix
* Alter compress() to rejoin a compressed v6 part with a v4 part with a colon
if the v6 part does not already end with one
* Fix undefined variable '$address' in isCompressible() (Only the first 15 lines of the commit message are shown above ) |
1.3.0.b4 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.3.0.b4 20 Jul 2022 13:38:31 |
Renato Botelho (garga) Author: Reid Linnemann |
net/pear-Net_IPv6: Update to version 1.3.0b4
Summary:
- Removed patches included in 1.3.0b4
- Added php 8 compat patch to correct curly brace array accessor syntax
Sponsored by: Rubicon Communications, LLC ("Netgate")
Differential Revision: https://reviews.freebsd.org/D35818 |
1.3.0.b2_2 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
1.3.0.b2_2 13 Dec 2016 15:05:07 |
sunpoet |
- Update WWW: pear.php.net uses https://
Approved by: portmgr (blanket) |
1.3.0.b2_2 27 Oct 2016 09:27:45 |
garga |
Import a patch to fix compress("::") calls
Submitted by: Phil Davis
Obtained
from: https://github.com/phil-davis/Net_IPv6/commit/638b96a253164b65c63825c38e79812b6c5f448d
MFH: 2016Q4
Sponsored by: Rubicon Communications (Netgate) |
1.3.0.b2_1 31 Aug 2016 14:33:36 |
garga |
Fix some bad IPv6 validation issues
Following bad addresses are being validated as good by checkIPv6()
1:2:3:4:5:6:7:8:1.2.3.4
::1:2:3:4:5:6:7:8
1:2:3:4:5:6:7:8::
1:2:3:4:5:6:::8
::::a
::::
1::2::3
Obtained from: pfSense
MFH: 2016Q3
Sponsored by: Rubicon Communications (Netgate) |
1.3.0.b2 10 Aug 2016 17:45:21 |
garga |
- Update net/pear-Net_IPv6 to 1.3.0b2. It's BETA but has few changes and
important fixes when compared to last stable version 1.2.1, from 2011
- Added LICENSE
- Take maintainership
Sponsored by: Rubicon Communications (Netgate) |
1.2.1 25 Jul 2016 20:01:03 |
rene |
Reset miwi@'s ports, he stepped down from the Ports Team.
With hat: portmgr-secretary |
1.2.1 26 Nov 2015 12:04:01 |
miwi |
- Take Maintainership
Approved by: mat (mentor) |
1.2.1 18 Nov 2014 09:37:33 |
bapt |
Reset miwi's maintainership per his demand
Hope to see you back! Thank for all the work! |
1.2.1 23 Sep 2014 16:57:57 |
bapt |
Convert to USES=pear |
1.2.1 25 Nov 2013 17:59:59 |
antoine |
Stage support for non-IGNORED pear classes
Tested by: poudriere
Approved by: portmgr (bapt) |
1.2.1 20 Sep 2013 22:10:25 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
net) |
1.2.1 03 May 2012 15:12:36 |
miwi |
- Switch to PEAR_AUTOINSTALL
- Added PORTSCOUT Variable
PR: 167021
Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> |
1.2.1 21 Jan 2012 17:40:15 |
eadler |
At the moment 1385 ports use BUILD_DEPENDS= ${RUN_DEPENDS} and 450
ports use BUILD_DEPENDS:= ${RUN_DEPENDS}. This patch fixes ports that are
currently broken. This is a temporary measure until we organically stop using
:= or someone(s) spend a lot of time changing all the ports over.
Explicit duplication > := > = and this just moves ports one step to the left
Approved by: portmgr |
1.2.1 26 Feb 2011 08:43:42 |
miwi |
- Update to 1.2.1 |
1.1.0.r4 22 Aug 2009 21:32:00 |
miwi |
- Take over maintainership
Approved by: Wen Heping (maintainer) |
1.1.0.r4 07 Dec 2008 13:31:05 |
miwi |
- Update to 1.1.0RC4 |
1.1.0.r2 06 Dec 2008 21:07:51 |
miwi |
- Update to 1.1.0RC2 |
1.1.0.r1 24 Sep 2008 14:54:10 |
miwi |
- Update to 1.1.0RC4
- Pass maintainership to submitter
PR: 127586
Submitted by: Wen heping <wenheping@gmail.com> |
1.0.5 23 Sep 2006 00:23:36 |
linimon |
Reset maintainership of ports assigned to antonio@php.net after numerous
maintainer-timeouts and no response to email. We hope to see him back.
Hat: portmgr |
1.0.5 11 Jan 2006 18:52:12 |
pav |
- Update to 1.0.5
PR: ports/91650
Submitted by: Antonio Carlos Venancio Junior <antonio@php.net> (maintainer) |
1.0.3 09 Dec 2005 19:24:52 |
ale |
Remove pear ports obsolated by devel/pear and switch
dependencies of all the other pear ports.
Discussed with: thierry, antonio@php.net |
1.0.3 10 Apr 2005 20:25:30 |
flz |
- Update to 1.0.3.
PR: ports/79131
Submitted by: maintainer |
1.0.2 15 Feb 2005 20:43:02 |
pav |
- Update to 1.0.2
PR: ports/77516
Submitted by: Antonio Carlos Venancio Junior <antonio@php.net> (maintainer) |
1.0.1 26 Nov 2004 15:59:11 |
pav |
New port: net/pear-Net_IPv6
The class allows you to:
* check if an addresse is an IPv6 addresse
* compress/uncompress IPv6 addresses
* check for an IPv4 compatible ending in an IPv6 adresse
PR: ports/74364
Submitted by: Antonio Carlos Venancio Junior <antonio@php.net> |