forked from pool/perl-NetAddr-IP
- updated to 4.058
up rev for documentation update update documentation in InetBase v0.06 Lite.pm v1.40 add call to InetBase::fillIPv4 to all uses of gethostbyname break out the code in InetBase v0.05 that expands short IPv4 addresses into dotquad format to account for broken BSD implementations of inet_aton and gethostbyname that do not recognize the short format. EXPORT this as sub 'fillIPv4' in Util.pm v1.45, add 'fillIPv4' to calls to gethostbyname to work around broken inet_aton and gethostbyname implementations in certain BSD implementations OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-NetAddr-IP?expand=0&rev=30
This commit is contained in:
committed by
Git OBS Bridge
parent
f8e1e8e97c
commit
efddbddfa4
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:a969578b8d028852d17b8c6d8dffa14b9123ea33354b5ede4d5ceff054387b7b
|
|
||||||
size 167826
|
|
3
NetAddr-IP-4.058.tar.gz
Normal file
3
NetAddr-IP-4.058.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1dfa6d99cd31693a0671c7b5518a3c950ff68f557cb7e9c06fbbb1f45c64a0ae
|
||||||
|
size 168778
|
@@ -1,3 +1,22 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Dec 19 16:17:24 UTC 2011 - coolo@suse.de
|
||||||
|
|
||||||
|
- updated to 4.058
|
||||||
|
up rev for documentation update
|
||||||
|
update documentation in InetBase v0.06
|
||||||
|
|
||||||
|
Lite.pm v1.40
|
||||||
|
add call to InetBase::fillIPv4 to all uses of gethostbyname
|
||||||
|
|
||||||
|
break out the code in InetBase v0.05 that expands short IPv4
|
||||||
|
addresses into dotquad format to account for broken BSD
|
||||||
|
implementations of inet_aton and gethostbyname that do
|
||||||
|
not recognize the short format. EXPORT this as sub 'fillIPv4'
|
||||||
|
|
||||||
|
in Util.pm v1.45, add 'fillIPv4' to calls to gethostbyname to
|
||||||
|
work around broken inet_aton and gethostbyname implementations
|
||||||
|
in certain BSD implementations
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 19 16:16:11 UTC 2011 - coolo@suse.de
|
Mon Dec 19 16:16:11 UTC 2011 - coolo@suse.de
|
||||||
|
|
||||||
|
@@ -17,24 +17,31 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: perl-NetAddr-IP
|
Name: perl-NetAddr-IP
|
||||||
Version: 4.056
|
Version: 4.058
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name NetAddr-IP
|
%define cpan_name NetAddr-IP
|
||||||
Summary: Manages IPv4 and IPv6 addresses and subnets
|
Summary: Manages IPv4 and IPv6 addresses and subnets
|
||||||
License: GPL-1.0+ or Artistic-1.0
|
License: Artistic-1.0 or GPL-1.0+
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/NetAddr-IP/
|
Url: http://search.cpan.org/dist/NetAddr-IP/
|
||||||
Source: http://www.cpan.org/authors/id/M/MI/MIKER/%{cpan_name}-%{version}.tar.gz
|
Source: http://www.cpan.org/authors/id/M/MI/MIKER/%{cpan_name}-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
|
#BuildRequires: perl(NetAddr::IP)
|
||||||
|
#BuildRequires: perl(NetAddr::IP::InetBase)
|
||||||
|
#BuildRequires: perl(NetAddr::IP::Lite) >= 1.41
|
||||||
|
#BuildRequires: perl(NetAddr::IP::Util) >= 1.46
|
||||||
|
#BuildRequires: perl(NetAddr::IP::Util_IS)
|
||||||
|
#BuildRequires: perl(NetAddr::IP::UtilPP)
|
||||||
|
#BuildRequires: perl(Socket6)
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This module provides an object-oriented abstraction on top of IP addresses
|
This module provides an object-oriented abstraction on top of IP addresses
|
||||||
or IP subnets, that allows for easy manipulations. Version 4.xx of
|
or IP subnets, that allows for easy manipulations. Version 4.xx of
|
||||||
NetAddr::IP will work with older versions of Perl and does *not* use
|
NetAdder::IP will will work with older versions of Perl and is compatible
|
||||||
Math::BigInt as in previous versions.
|
with Math::BigInt.
|
||||||
|
|
||||||
The internal representation of all IP objects is in 128 bit IPv6 notation.
|
The internal representation of all IP objects is in 128 bit IPv6 notation.
|
||||||
IPv4 and IPv6 objects may be freely mixed.
|
IPv4 and IPv6 objects may be freely mixed.
|
||||||
@@ -55,11 +62,8 @@ find . -type f -print0 | xargs -0 chmod 644
|
|||||||
%perl_process_packlist
|
%perl_process_packlist
|
||||||
%perl_gen_filelist
|
%perl_gen_filelist
|
||||||
|
|
||||||
%clean
|
|
||||||
%{__rm} -rf %{buildroot}
|
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,755)
|
%defattr(-,root,root,755)
|
||||||
%doc Changes README TODO
|
%doc Artistic Changes Copying TODO
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Reference in New Issue
Block a user