Hello community,

here is the log from the commit of package perl-LWP-MediaTypes for 
openSUSE:Factory checked in at 2019-03-22 14:51:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-LWP-MediaTypes (Old)
 and      /work/SRC/openSUSE:Factory/.perl-LWP-MediaTypes.new.25356 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-LWP-MediaTypes"

Fri Mar 22 14:51:46 2019 rev:10 rq:687148 version:6.04

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-LWP-MediaTypes/perl-LWP-MediaTypes.changes  
2012-03-01 17:24:41.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-LWP-MediaTypes.new.25356/perl-LWP-MediaTypes.changes
       2019-03-22 14:51:51.214151443 +0100
@@ -1,0 +2,6 @@
+Thu Mar 21 06:15:07 UTC 2019 - Stephan Kulow <co...@suse.com>
+
+- updated to 6.04
+   see /usr/share/doc/packages/perl-LWP-MediaTypes/Changes
+
+-------------------------------------------------------------------

Old:
----
  LWP-MediaTypes-6.02.tar.gz

New:
----
  LWP-MediaTypes-6.04.tar.gz
  cpanspec.yml

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

Other differences:
------------------
++++++ perl-LWP-MediaTypes.spec ++++++
--- /var/tmp/diff_new_pack.jpfhyB/_old  2019-03-22 14:51:51.714151145 +0100
+++ /var/tmp/diff_new_pack.jpfhyB/_new  2019-03-22 14:51:51.714151145 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-LWP-MediaTypes
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -12,24 +12,25 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:           perl-LWP-MediaTypes
-Version:        6.02
+Version:        6.04
 Release:        0
 %define cpan_name LWP-MediaTypes
-Summary:        guess media type for a file or a URL
-License:        Artistic-1.0 or GPL-1.0+
+Summary:        Guess media type for a file or a URL
+License:        Artistic-1.0 OR GPL-1.0-or-later
 Group:          Development/Libraries/Perl
-Url:            http://search.cpan.org/dist/LWP-MediaTypes/
-Source:         
http://www.cpan.org/authors/id/G/GA/GAAS/%{cpan_name}-%{version}.tar.gz
+Url:            https://metacpan.org/release/%{cpan_name}
+Source0:        
https://cpan.metacpan.org/authors/id/O/OA/OALDERS/%{cpan_name}-%{version}.tar.gz
+Source1:        cpanspec.yml
 BuildArch:      noarch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-#BuildRequires: perl(LWP::MediaTypes)
+BuildRequires:  perl(Test::Fatal)
 %{perl_requires}
 
 %description
@@ -45,29 +46,31 @@
 
 * guess_media_type( $uri )
 
-* guess_media_type( $filename_or_uri, $header_to_modify )
+* guess_media_type( $filename_or_object, $header_to_modify )
 
-  This function tries to guess media type and encoding for a file or a URI.
-  It returns the content type, which is a string like '"text/html"'. In
-  array context it also returns any content encodings applied (in the order
-  used to encode the file). You can pass a URI object reference, instead of
-  the file name.
-
-  If the type can not be deduced from looking at the file name, then
-  guess_media_type() will let the '-T' Perl operator take a look. If this
-  works (and '-T' returns a TRUE value) then we return _text/plain_ as the
-  type, otherwise we return _application/octet-stream_ as the type.
-
-  The optional second argument should be a reference to a HTTP::Headers
-  object or any object that implements the $obj->header method in a similar
-  way. When it is present the values of the 'Content-Type' and
-  'Content-Encoding' will be set for this header.
+This function tries to guess media type and encoding for a file or objects
+that support the a 'path' or 'filename' method, eg, URI or File::Temp
+objects. When an object does not support either method, it will be
+stringified to determine the filename. It returns the content type, which
+is a string like '"text/html"'. In array context it also returns any
+content encodings applied (in the order used to encode the file). You can
+pass a URI object reference, instead of the file name.
+
+If the type can not be deduced from looking at the file name, then
+guess_media_type() will let the '-T' Perl operator take a look. If this
+works (and '-T' returns a TRUE value) then we return _text/plain_ as the
+type, otherwise we return _application/octet-stream_ as the type.
+
+The optional second argument should be a reference to a HTTP::Headers
+object or any object that implements the $obj->header method in a similar
+way. When it is present the values of the 'Content-Type' and
+'Content-Encoding' will be set for this header.
 
 * media_suffix( $type, ... )
 
-  This function will return all suffixes that can be used to denote the
-  specified media type(s). Wildcard types can be used. In a scalar context
-  it will return the first suffix found. Examples:
+This function will return all suffixes that can be used to denote the
+specified media type(s). Wildcard types can be used. In a scalar context it
+will return the first suffix found. Examples:
 
     @suffixes = media_suffix('image/*', 'audio/basic');
     $suffix = media_suffix('text/html');
@@ -76,19 +79,19 @@
 
 * add_type( $type, @exts )
 
-  Associate a list of file extensions with the given media type. Example:
+Associate a list of file extensions with the given media type. Example:
 
       add_type("x-world/x-vrml" => qw(wrl vrml));
 
 * add_encoding( $type, @ext )
 
-  Associate a list of file extensions with an encoding type. Example:
+Associate a list of file extensions with an encoding type. Example:
 
    add_encoding("x-gzip" => "gz");
 
 * read_media_types( @files )
 
-  Parse media types files and add the type mappings found there. Example:
+Parse media types files and add the type mappings found there. Example:
 
       read_media_types("conf/mime.types");
 
@@ -96,11 +99,11 @@
 %setup -q -n %{cpan_name}-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
-%{__make} %{?_smp_mflags}
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
 
 %check
-%{__make} test
+make test
 
 %install
 %perl_make_install
@@ -110,5 +113,6 @@
 %files -f %{name}.files
 %defattr(-,root,root,755)
 %doc Changes README
+%license LICENSE
 
 %changelog

++++++ LWP-MediaTypes-6.02.tar.gz -> LWP-MediaTypes-6.04.tar.gz ++++++
++++ 3022 lines of diff (skipped)

++++++ cpanspec.yml ++++++
---
#description_paragraphs: 3
#description: |-
#  override description from CPAN
#summary: override summary from CPAN
#no_testing: broken upstream
#sources:
#  - source1
#  - source2
#patches:
#  foo.patch: -p1
#  bar.patch:
#preamble: |-
# BuildRequires:  gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s,  *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL 
#post_build: |-
# rm unused.files
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module

Reply via email to