Hello community,

here is the log from the commit of package perl-URI for openSUSE:Factory 
checked in at 2015-04-25 21:15:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-URI (Old)
 and      /work/SRC/openSUSE:Factory/.perl-URI.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-URI"

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-URI/perl-URI.changes        2012-04-17 
22:00:44.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.perl-URI.new/perl-URI.changes   2015-04-25 
21:15:05.000000000 +0200
@@ -1,0 +2,80 @@
+Tue Apr 14 17:31:35 UTC 2015 - co...@suse.com
+
+- updated to 1.67
+   see /usr/share/doc/packages/perl-URI/Changes
+
+  Revision history for URI
+  
+  2015-02-24   Karen Etheridge <et...@cpan.org>
+  
+    Release 1.67
+  
+    Karen Etheridge:
+      - properly skip author test for normal user installs
+  
+  
+  2015-02-24   Karen Etheridge <et...@cpan.org>
+  
+    Release 1.66
+  
+    Adam Herzog:
+      - reorganize .pm files under lib/ (github #20)
+  
+  
+  2014-11-05   Karen Etheridge <et...@cpan.org>
+  
+    Release 1.65
+  
+    Karen Etheridge:
+      - add a TO_JSON method, to assist JSON serialization
+  
+  
+  2014-07-13   Karen Etheridge <et...@cpan.org>
+  
+    Release 1.64
+  
+    Eric Brine:
+      - better fix for RT#96941, that also works around utf8 bugs on older 
perls
+  
+  
+  2014-07-13   Karen Etheridge <et...@cpan.org>
+  
+    Release 1.63
+  
+    Karen Etheridge:
+      - mark utf8-related test failures on older perls caused by recent string
+        parsing changes as TODO (RT#97177, RT#96941)
+  
+  
+  2014-07-12   Karen Etheridge <et...@cpan.org>
+  
+    Release 1.62
+  
+    Karen Etheridge (2):
+      - use strict and warnings in all modules, tests and scripts
+      - remove all remaining uses of "use vars"
+  
+    Eric Brine:
+      - fixed new "\C is deprecated in regex" warning in 5.21.2 (RT#96941)
+  
+  
+  2014-07-01   Karen Etheridge <et...@cpan.org>
+  
+    Release 1.61
+  
+    David Schmidt:
+        Fix test failure if local hostname is 'foo' [RT#75519]
+  
+    Gisle Aas (2):
+        New 'has_recognized_scheme' interface [RT#71204]
+        Interfaces that return a single value now return undef rather than an
+        empty list in list context
+  
+    Slaven Rezic:
+        Fix bad regex when parsing hostnames
+  
+    Piotr Roszatycki:
+        Preferentially use $ENV{TMPDIR} for temporary test files over /tmp
+        (fixes tests on Android)
+
+-------------------------------------------------------------------

Old:
----
  URI-1.60.tar.gz

New:
----
  URI-1.67.tar.gz

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

Other differences:
------------------
++++++ perl-URI.spec ++++++
--- /var/tmp/diff_new_pack.nz4Rlb/_old  2015-04-25 21:15:06.000000000 +0200
+++ /var/tmp/diff_new_pack.nz4Rlb/_new  2015-04-25 21:15:06.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-URI
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,45 +16,57 @@
 #
 
 
-%bcond_with opt
-
 Name:           perl-URI
+Version:        1.67
+Release:        0
 %define cpan_name URI
 Summary:        Uniform Resource Identifiers (absolute and relative)
-License:        GPL-2.0+ or Artistic-1.0
+License:        Artistic-1.0 or GPL-1.0+
 Group:          Development/Libraries/Perl
-Version:        1.60
-Release:        0
 Url:            http://search.cpan.org/dist/URI/
-Source:         http://www.cpan.org/modules/by-module/URI/URI-%{version}.tar.gz
+Source:         
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
 BuildArch:      noarch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
 BuildRequires:  perl-macros
-%if %{with opt}
-BuildRequires:  perl(Business::ISBN)
-%endif
-BuildRequires:  perl(MIME::Base64) >= 2
-#
-Requires:       perl(MIME::Base64) >= 2
-%if 0%{?suse_version} > 0
-Suggests:       perl(Business::ISBN)
-%endif
+BuildRequires:  perl(Test::More) >= 0.96
+BuildRequires:  perl(parent)
+Requires:       perl(parent)
+%{perl_requires}
 
 %description
-This module implements the URI class. Objects of this class represent
+This module implements the 'URI' class. Objects of this class represent
 "Uniform Resource Identifier references" as specified in RFC 2396 (and
 updated by RFC 2732).
 
-URI objects can be used to access and manipulate the various
-components that make up these strings.  There are also methods to
-combine URIs in various ways.
+A Uniform Resource Identifier is a compact string of characters that
+identifies an abstract or physical resource. A Uniform Resource Identifier
+can be further classified as either a Uniform Resource Locator (URL) or a
+Uniform Resource Name (URN). The distinction between URL and URN does not
+matter to the 'URI' class interface. A "URI-reference" is a URI that may
+have additional information attached in the form of a fragment identifier.
+
+An absolute URI reference consists of three parts: a _scheme_, a
+_scheme-specific part_ and a _fragment_ identifier. A subset of URI
+references share a common syntax for hierarchical namespaces. For these,
+the scheme-specific part is further broken down into _authority_, _path_
+and _query_ components. These URIs can also take the form of relative URI
+references, where the scheme (and usually also the authority) component is
+missing, but implied by the context of the URI reference. The three forms
+of URI reference syntax are summarized as follows:
+
+  <scheme>:<scheme-specific-part>#<fragment>
+  <scheme>://<authority><path>?<query>#<fragment>
+  <path>?<query>#<fragment>
+
+The components into which a URI reference can be divided depend on the
+_scheme_. The 'URI' class provides methods to get and set the individual
+components. The methods available for a specific 'URI' object depend on the
+scheme.
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
-# rpmlint: spurious-executable-perm
-%{__chmod} 0644 uri-test
+find . -type f -print0 | xargs -0 chmod 644
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
@@ -65,18 +77,11 @@
 
 %install
 %perl_make_install
-# do not perl_process_packlist (noarch)
-# remove .packlist file
-%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
-# remove perllocal.pod file
-%{__rm} -rf $RPM_BUILD_ROOT%perl_archlib
+%perl_process_packlist
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf $RPM_BUILD_ROOT
-
 %files -f %{name}.files
-%defattr(-,root,root,-)
+%defattr(-,root,root,755)
 %doc Changes README uri-test
 
 %changelog

++++++ URI-1.60.tar.gz -> URI-1.67.tar.gz ++++++
++++ 13318 lines of diff (skipped)


Reply via email to