Hello community,

here is the log from the commit of package perl-Net-IDN-Encode for 
openSUSE:Factory checked in at 2013-08-01 15:58:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Net-IDN-Encode (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Net-IDN-Encode.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Net-IDN-Encode"

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Net-IDN-Encode/perl-Net-IDN-Encode.changes  
2012-03-05 18:01:08.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Net-IDN-Encode.new/perl-Net-IDN-Encode.changes 
    2013-08-01 15:58:52.000000000 +0200
@@ -1,0 +2,40 @@
+Tue Jul 30 04:54:38 UTC 2013 - [email protected]
+
+- updated to 2.003
+        - FIXES required version of Unicode::Normalize in UTS46.pm
+          (reported by CPAN testers)
+ 
+ 2.002 (2012-01-18)
+        - FIXES dependencies/required perl version
+        - FIXES: #74021 Makefile.PL bad value for
+          version-requirement
+ 
+ 2.001 (2012-01-12)
+        - FIXES XS_VERSION mismatch
+        - FIXES depencency on Unicode::Normalize (was 1.000 or higher,
+          but this is not needed).
+ 
+ 2.000 (2012-01-08)
+        - switch to Unicode Technical StandardĀ #46 (previously,
+          IDNA2003 has been used, which is now available as
+          Net::IDN::IDNA2003):
+        - add Net::IDN::UTS46 + test vectors from UTS #46
+        - remove Net::IDN::Nameprep (only required for IDNA2003)
+        - add documentation about IDNA Standards and IDNA module
+          Overview/Roadmad
+        - allow NON-LDH labels (e.g. for SRV records), even if
+          UseSTD3Rules=true (parameter now only applies to
+          U-labels and A-labels, i.e. labels that are converted by
+          IDNA).
+        - FIXES potential portability problems in
+          Net::IDN::Punycode XS 1.999_20120108
+        - FIXES 'wide character' warning with tests if tests
+          fail/if TB2 is used on modern perl installations.
+        - FIXES decoding bug in Net::IDN::Punycode::PP (discovered
+          through UTSĀ #46 test vectors)
+ 
+ 1.101 (2011-12-08)
+        - FIXES: #72615 faulty data in Build.PL causes a lack of
+          meta files, which breaks carton.
+
+-------------------------------------------------------------------

Old:
----
  Net-IDN-Encode-1.100.tar.gz

New:
----
  Net-IDN-Encode-2.003.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ perl-Net-IDN-Encode.spec ++++++
--- /var/tmp/diff_new_pack.zLFUxJ/_old  2013-08-01 15:58:53.000000000 +0200
+++ /var/tmp/diff_new_pack.zLFUxJ/_new  2013-08-01 15:58:53.000000000 +0200
@@ -1,8 +1,7 @@
-# vim: set sw=4 ts=4 et nu:
 #
 # spec file for package perl-Net-IDN-Encode
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -18,63 +17,56 @@
 
 
 Name:           perl-Net-IDN-Encode
-Version:        1.100
+Version:        2.003
 Release:        0
-Summary:        Internationalizing Domain Names in Applications (RFC 3490)
+%define cpan_name Net-IDN-Encode
+Summary:        Internationalizing Domain Names in Applications (IDNA)
 License:        Artistic-1.0 or GPL-1.0+
 Group:          Development/Libraries/Perl
-Source:         
http://search.cpan.org/CPAN/authors/id/C/CF/CFAERBER/Net-IDN-Encode-%{version}.tar.gz
 Url:            http://search.cpan.org/dist/Net-IDN-Encode/
+Source:         
http://www.cpan.org/authors/id/C/CF/CFAERBER/%{cpan_name}-%{version}.tar.gz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
-BuildRequires:  make
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(Net::IDN::Nameprep)
+BuildRequires:  perl(ExtUtils::CBuilder)
+BuildRequires:  perl(Module::Build) >= 0.38
 BuildRequires:  perl(Test::NoWarnings)
-Requires:       perl(Net::IDN::Nameprep)
+#BuildRequires: perl(Net::IDN::Encode)
+#BuildRequires: perl(Net::IDN::Punycode)
+#BuildRequires: perl(Net::IDN::Punycode::PP)
+#BuildRequires: perl(Net::IDN::UTS46)
+#BuildRequires: perl(Net::IDN::UTS46::_Mapping) >= 5.002
+%{perl_requires}
 
 %description
 This module provides an easy-to-use interface for encoding and decoding
 Internationalized Domain Names (IDNs).
 
-IDNs use characters drawn from a large repertoire (Unicode), but IDNA allows
-the non-ASCII characters to be represented using only the ASCII characters
-already allowed in so-called host names today (letter-digit-hypen,
-/[A-Z0-9-]/i).
+IDNs use characters drawn from a large repertoire (Unicode), but IDNA
+allows the non-ASCII characters to be represented using only the ASCII
+characters already allowed in so-called host names today
+(letter-digit-hypen, '/[A-Z0-9-]/i').
+
+Use this module if you just want to convert domain names (or email
+addresses), using whatever IDNA standard is the best choice at the moment.
 
 %prep
-%setup -q -n "Net-IDN-Encode-%{version}"
-find . -type f -name '*.pm' -exec %__chmod -x {} \;
+%setup -q -n %{cpan_name}-%{version}
+find . -type f -print0 | xargs -0 chmod 644
 
 %build
-%__perl ./Build.PL
-./Build
-
-%install
-./Build pure_install --destdir "%{buildroot}" --installdirs vendor
-%perl_process_packlist
+%{__perl} Build.PL installdirs=vendor optimize="%{optflags}"
+./Build build flags=%{?_smp_mflags}
 
 %check
 ./Build test
 
-%clean
-%{?buildroot:%__rm -rf "%{buildroot}"}
+%install
+./Build install destdir=%{buildroot} create_packlist=0
+%perl_gen_filelist
 
-%files
-%defattr(-,root,root)
-%doc Changes README LICENSE
-%dir %{perl_vendorarch}/Net
-%dir %{perl_vendorarch}/Net/IDN
-%{perl_vendorarch}/Net/IDN/Encode.pm
-%dir %{perl_vendorarch}/Net/IDN/Punycode.pm
-%{perl_vendorarch}/Net/IDN/Punycode
-%dir %{perl_vendorarch}/auto/Net
-%dir %{perl_vendorarch}/auto/Net/IDN
-%{perl_vendorarch}/auto/Net/IDN/Encode
-%{perl_vendorarch}/auto/Net/IDN/Punycode
-%doc %{perl_man3dir}/Net::IDN::Encode.%{perl_man3ext}%{ext_man}
-%doc %{perl_man3dir}/Net::IDN::Punycode.%{perl_man3ext}%{ext_man}
-%doc %{perl_man3dir}/Net::IDN::Punycode::*.%{perl_man3ext}%{ext_man}
+%files -f %{name}.files
+%defattr(-,root,root,755)
+%doc Changes eg LICENSE README
 
 %changelog

++++++ Net-IDN-Encode-1.100.tar.gz -> Net-IDN-Encode-2.003.tar.gz ++++++
++++ 5694 lines of diff (skipped)

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to