Hello community,

here is the log from the commit of package perl-Test-utf8 for openSUSE:Factory 
checked in at 2020-03-06 21:24:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Test-utf8 (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Test-utf8.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Test-utf8"

Fri Mar  6 21:24:05 2020 rev:2 rq:781235 version:1.02

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Test-utf8/perl-Test-utf8.changes    
2018-10-11 11:50:49.438376695 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Test-utf8.new.26092/perl-Test-utf8.changes 
2020-03-06 21:24:14.501447577 +0100
@@ -1,0 +2,11 @@
+Mon Mar  2 03:17:32 UTC 2020 -  <[email protected]>
+
+- updated to 1.02
+   see /usr/share/doc/packages/perl-Test-utf8/CHANGES
+
+  1.02 Fix for 5.26 not including '.' in INC, which was breaking the
+       Module::Install stuff (thanks to preaction)
+  
+       Fix to link to the github repo (thanks to dsteinbrunner)
+
+-------------------------------------------------------------------

Old:
----
  Test-utf8-1.01.tar.gz

New:
----
  Test-utf8-1.02.tar.gz
  cpanspec.yml

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

Other differences:
------------------
++++++ perl-Test-utf8.spec ++++++
--- /var/tmp/diff_new_pack.htm33Q/_old  2020-03-06 21:24:15.433448092 +0100
+++ /var/tmp/diff_new_pack.htm33Q/_new  2020-03-06 21:24:15.437448094 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Test-utf8
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 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,24 @@
 # 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-Test-utf8
-Version:        1.01
+Version:        1.02
 Release:        0
 %define cpan_name Test-utf8
 Summary:        Handy utf8 tests
-License:        Artistic-1.0 or GPL-1.0+
+License:        Artistic-1.0 OR GPL-1.0-or-later
 Group:          Development/Libraries/Perl
-Url:            https://metacpan.org/pod/Test::utf8
-Source:         
http://www.cpan.org/authors/id/M/MA/MARKF/%{cpan_name}-%{version}.tar.gz
+Url:            https://metacpan.org/release/%{cpan_name}
+Source0:        
https://cpan.metacpan.org/authors/id/M/MA/MARKF/%{cpan_name}-%{version}.tar.gz
+Source1:        cpanspec.yml
 BuildArch:      noarch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(inc::Module::Install)
 %{perl_requires}
 
 %description
@@ -44,11 +44,11 @@
 %setup -q -n %{cpan_name}-%{version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
-%{__make} %{?_smp_mflags}
+PERL_USE_UNSAFE_INC=1 perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
 
 %check
-%{__make} test
+make test
 
 %install
 %perl_make_install

++++++ Test-utf8-1.01.tar.gz -> Test-utf8-1.02.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-utf8-1.01/CHANGES new/Test-utf8-1.02/CHANGES
--- old/Test-utf8-1.01/CHANGES  2014-01-13 14:15:39.000000000 +0100
+++ new/Test-utf8-1.02/CHANGES  2020-03-01 13:06:12.000000000 +0100
@@ -1,3 +1,8 @@
+1.02 Fix for 5.26 not including '.' in INC, which was breaking the
+     Module::Install stuff (thanks to preaction)
+
+     Fix to link to the github repo (thanks to dsteinbrunner)
+
 1.01 
      Fix unnecesary warning caused by using /x (RT#88189)
      (Arthur Axel fREW Schmidt and Andrew Main)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-utf8-1.01/Makefile.PL 
new/Test-utf8-1.02/Makefile.PL
--- old/Test-utf8-1.01/Makefile.PL      2014-01-08 22:34:38.000000000 +0100
+++ new/Test-utf8-1.02/Makefile.PL      2020-03-01 13:06:12.000000000 +0100
@@ -1,3 +1,4 @@
+use lib '.';
 use inc::Module::Install;
 
 name           'Test-utf8';
@@ -18,5 +19,6 @@
 author_tests('xt');
 readme_from 'lib/Test/utf8.pm';
 
+repository 'https://github.com/2shortplanks/Test-utf8';
 
 WriteAll;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-utf8-1.01/lib/Test/utf8.pm 
new/Test-utf8-1.02/lib/Test/utf8.pm
--- old/Test-utf8-1.01/lib/Test/utf8.pm 2014-01-13 14:14:36.000000000 +0100
+++ new/Test-utf8-1.02/lib/Test/utf8.pm 2020-03-01 13:06:12.000000000 +0100
@@ -10,7 +10,7 @@
 use Encode;
 use charnames ':full';
 
-our $VERSION = "1.01";
+our $VERSION = "1.02";
 
 our @EXPORT = qw(
   is_valid_string is_dodgy_utf8 is_sane_utf8
@@ -391,5 +391,3 @@
 
 
 1;
-
-

++++++ 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