Hello community,
here is the log from the commit of package perl-Net-Whois-Raw for
openSUSE:Factory checked in at 2012-03-07 13:44:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Net-Whois-Raw (Old)
and /work/SRC/openSUSE:Factory/.perl-Net-Whois-Raw.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Net-Whois-Raw", Maintainer is ""
Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Net-Whois-Raw/perl-Net-Whois-Raw.changes
2011-09-23 12:38:22.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.perl-Net-Whois-Raw.new/perl-Net-Whois-Raw.changes
2012-03-07 13:44:29.000000000 +0100
@@ -1,0 +2,47 @@
+Mon Feb 13 13:02:38 UTC 2012 - [email protected]
+
+- update to 2.40
+ - Fixed problem with passing server parameter from command line in pwhois
+ - Fixed problem with encoding detection in pwhois on Windows
+ - Added convertation to punycode in pwhois
+
+ - Added domain name validation in pwhois
+ - Updated some 'not found' string
+
+ - whois.relcom.ru is no more. Using whois.nic.ru instead.
+ - Removed crutches for whois.relcom.ru / www_whois
+
+ - Further migration from whois.relcom.ru to whois.nic.ru
+
+ - confess -> die :: no need to die such verbosely
+
+ - Added whois server for .SO zone
+
+ - Deleted whitespaces removing from the whois result
+
+ - Added whois server for .CO.UA zone
+
+ - Added whois server for .IN.UA zone
+
+ - Added whois server for .XXX zone
+ - Fixed BZ whois (restored whois.belizenic.bz server)
+
+ - Fixed regexp for .PRO whois check
+
+ - Fixed whois server address for *.ua domains
+
+ - Confess instead of die to simplify error tracing
+
+ - internet tests updated
+ - Net::Whois::Raw::Data addons / updates, thanx to Guillaume
+
+ - Now you can redefine SOCK_CLASS::getline method as you want
+ - require_once for Data::Dumper
+
+
+-------------------------------------------------------------------
+Mon Feb 13 10:52:16 UTC 2012 - [email protected]
+
+- patch license to follow spdx.org standard
+
+-------------------------------------------------------------------
Old:
----
Net-Whois-Raw-2.25.tar.bz2
New:
----
Net-Whois-Raw-2.40.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-Net-Whois-Raw.spec ++++++
--- /var/tmp/diff_new_pack.971Gbo/_old 2012-03-07 13:44:32.000000000 +0100
+++ /var/tmp/diff_new_pack.971Gbo/_new 2012-03-07 13:44:32.000000000 +0100
@@ -1,7 +1,7 @@
#
# spec file for package perl-Net-Whois-Raw
#
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -15,62 +15,52 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
-# norootforbuild
-
Name: perl-Net-Whois-Raw
+Version: 2.40
+Release: 0
%define cpan_name Net-Whois-Raw
Summary: Get Whois information for domains
-Version: 2.25
-Release: 1
-License: GPL+ or Artistic
+License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Net-Whois-Raw/
-#Source:
http://www.cpan.org/modules/by-module/Net/Net-Whois-Raw-%{version}.tar.gz
-Source: %{cpan_name}-%{version}.tar.bz2
+Source:
http://www.cpan.org/authors/id/D/DE/DESPAIR/%{cpan_name}-%{version}.tar.gz
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
BuildRequires: perl
-BuildRequires: perl(Module::Build)
BuildRequires: perl-macros
-BuildRequires: perl(Encode)
-BuildRequires: perl(Test::More)
-#
-BuildRequires: perl(Getopt::Long) >= 2
BuildRequires: perl(HTTP::Headers)
BuildRequires: perl(HTTP::Request)
BuildRequires: perl(LWP::UserAgent)
+BuildRequires: perl(Module::Build)
+BuildRequires: perl(Net::IDN::Punycode) >= 1
BuildRequires: perl(URI::URL)
-#
-Requires: perl(Getopt::Long) >= 2
+#BuildRequires: perl(DBI)
+#BuildRequires: perl(Net::Whois::Raw)
+#BuildRequires: perl(Net::Whois::Raw::Common)
+#BuildRequires: perl(Net::Whois::Raw::Data)
Requires: perl(HTTP::Headers)
Requires: perl(HTTP::Request)
Requires: perl(LWP::UserAgent)
+Requires: perl(Net::IDN::Punycode) >= 1
Requires: perl(URI::URL)
+%{perl_requires}
%description
Net::Whois::Raw queries WHOIS servers about domains. The module supports
recursive WHOIS queries. Also queries via HTTP is supported for some TLDs.
-Setting the variables $OMIT_MSG and $CHECK_FAIL will match the results against
-a set of known patterns. The first flag will try to omit the copyright
-message/disclaimer, the second will attempt to determine if the search failed
-and return undef in such a case.
-
-IMPORTANT: these checks merely use pattern matching; they will work on several
-servers but certainly not on all of them.
-
-Author:
--------
- Ariel Brosh [email protected]
- Gabor Szabo [email protected]
- Corris Randall [email protected]
- Walery Studennikov [email protected]
+Setting the variables $OMIT_MSG and $CHECK_FAIL will match the results
+against a set of known patterns. The first flag will try to omit the
+copyright message/disclaimer, the second will attempt to determine if the
+search failed and return undef in such a case.
+
+*IMPORTANT*: these checks merely use pattern matching; they will work on
+several servers but certainly not on all of them.
%prep
%setup -q -n %{cpan_name}-%{version}
-%{__chmod} 0644 pwhois
+find . -type f -print0 | xargs -0 chmod 644
%build
%{__perl} Build.PL installdirs=vendor
@@ -80,14 +70,11 @@
./Build test
%install
-./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
+./Build install destdir=%{buildroot} create_packlist=0
%perl_gen_filelist
-%clean
-%{__rm} -rf $RPM_BUILD_ROOT
-
%files -f %{name}.files
-%defattr(-,root,root,-)
+%defattr(-,root,root,755)
%doc Changes COPYRIGHT pwhois README
%changelog
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]