Hello community,

here is the log from the commit of package perl-Test-Fatal for openSUSE:Factory 
checked in at 2020-08-15 21:17:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Test-Fatal (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Test-Fatal.new.3399 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Test-Fatal"

Sat Aug 15 21:17:26 2020 rev:19 rq:826113 version:0.016

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Test-Fatal/perl-Test-Fatal.changes  
2015-04-15 16:27:03.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Test-Fatal.new.3399/perl-Test-Fatal.changes    
    2020-08-15 21:17:47.015534409 +0200
@@ -1,0 +2,13 @@
+Mon Aug 10 03:10:33 UTC 2020 - Tina Müller <[email protected]>
+
+- updated to 0.016
+   see /usr/share/doc/packages/perl-Test-Fatal/Changes
+
+  0.016     2020-08-08 22:00:14-04:00 America/New_York
+          - no changes since trial release of 0.015
+
+  0.015     2018-03-10 17:06:11-05:00 America/New_York (TRIAL RELEASE)
+          - add default descriptions to tests
+          - work on ancient Test::Builder code
+
+-------------------------------------------------------------------

Old:
----
  Test-Fatal-0.014.tar.gz

New:
----
  Test-Fatal-0.016.tar.gz
  cpanspec.yml

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

Other differences:
------------------
++++++ perl-Test-Fatal.spec ++++++
--- /var/tmp/diff_new_pack.B5SbK4/_old  2020-08-15 21:17:49.039535565 +0200
+++ /var/tmp/diff_new_pack.B5SbK4/_new  2020-08-15 21:17:49.047535570 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Test-Fatal
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,45 +12,52 @@
 # 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-Fatal
-Version:        0.014
+Version:        0.016
 Release:        0
 %define cpan_name Test-Fatal
-Summary:        incredibly simple helpers for testing code with exceptions
-License:        Artistic-1.0 or GPL-1.0+
+Summary:        Incredibly simple helpers for testing code with exceptions
+License:        Artistic-1.0 OR GPL-1.0-or-later
 Group:          Development/Libraries/Perl
-Url:            http://search.cpan.org/dist/Test-Fatal/
-Source:         
http://www.cpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
+URL:            https://metacpan.org/release/%{cpan_name}
+Source0:        
https://cpan.metacpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
+Source1:        cpanspec.yml
 BuildArch:      noarch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(Test::More) >= 0.96
+BuildRequires:  perl(Test::More) >= 0.65
 BuildRequires:  perl(Try::Tiny) >= 0.07
 Requires:       perl(Try::Tiny) >= 0.07
 %{perl_requires}
 
 %description
-Test::Fatal is an alternative to the popular the Test::Exception manpage.
-It does much less, but should allow greater flexibility in testing
-exception-throwing code with about the same amount of typing.
+Test::Fatal is an alternative to the popular Test::Exception. It does much
+less, but should allow greater flexibility in testing exception-throwing
+code with about the same amount of typing.
 
 It exports one routine by default: 'exception'.
 
+*Achtung!* 'exception' intentionally does not manipulate the call stack.
+User-written test functions that use 'exception' must be careful to avoid
+false positives if exceptions use stack traces that show arguments. For a
+more magical approach involving globally overriding 'caller', see
+Test::Exception.
+
 %prep
 %setup -q -n %{cpan_name}-%{version}
-find . -type f -print0 | xargs -0 chmod 644
+find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path 
"*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
 
 %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
@@ -59,6 +66,7 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes examples LICENSE README
+%doc Changes examples README
+%license LICENSE
 
 %changelog

++++++ Test-Fatal-0.014.tar.gz -> Test-Fatal-0.016.tar.gz ++++++
++++ 1624 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