Hello community,
here is the log from the commit of package perl-Math-Clipper for
openSUSE:Factory checked in at 2019-05-20 10:30:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Math-Clipper (Old)
and /work/SRC/openSUSE:Factory/.perl-Math-Clipper.new.5148 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Math-Clipper"
Mon May 20 10:30:28 2019 rev:6 rq:704070 version:1.29
Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Math-Clipper/perl-Math-Clipper.changes
2019-05-13 14:52:26.415075893 +0200
+++
/work/SRC/openSUSE:Factory/.perl-Math-Clipper.new.5148/perl-Math-Clipper.changes
2019-05-20 10:30:32.001873787 +0200
@@ -1,0 +2,10 @@
+Sat May 18 05:21:07 UTC 2019 - Stephan Kulow <[email protected]>
+
+- updated to 1.29
+ see /usr/share/doc/packages/perl-Math-Clipper/Changes
+
+ 1.29 Thursday May 16 23:51:00 2019
+
+ - Fix build error under clang and pre-5.18 Perls.
+
+-------------------------------------------------------------------
Old:
----
Math-Clipper-1.28.tar.gz
New:
----
Math-Clipper-1.29.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-Math-Clipper.spec ++++++
--- /var/tmp/diff_new_pack.jde1mb/_old 2019-05-20 10:30:33.197873390 +0200
+++ /var/tmp/diff_new_pack.jde1mb/_new 2019-05-20 10:30:33.201873389 +0200
@@ -17,7 +17,7 @@
Name: perl-Math-Clipper
-Version: 1.28
+Version: 1.29
Release: 0
%define cpan_name Math-Clipper
Summary: Polygon clipping in 2D
++++++ Math-Clipper-1.28.tar.gz -> Math-Clipper-1.29.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Math-Clipper-1.28/Changes
new/Math-Clipper-1.29/Changes
--- old/Math-Clipper-1.28/Changes 2019-05-12 00:58:59.000000000 +0200
+++ new/Math-Clipper-1.29/Changes 2019-05-17 08:59:15.000000000 +0200
@@ -1,5 +1,9 @@
Revision history for Perl extension Math::Clipper.
+1.29 Thursday May 16 23:51:00 2019
+
+ - Fix build error under clang and pre-5.18 Perls.
+
1.28 Sat May 11 03:42:00 2019
- Avoid use of ** in calculating scaling factors in
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Math-Clipper-1.28/META.json
new/Math-Clipper-1.29/META.json
--- old/Math-Clipper-1.28/META.json 2019-05-12 00:58:59.000000000 +0200
+++ new/Math-Clipper-1.29/META.json 2019-05-17 08:59:15.000000000 +0200
@@ -32,7 +32,7 @@
"provides" : {
"Math::Clipper" : {
"file" : "lib/Math/Clipper.pm",
- "version" : "1.28"
+ "version" : "1.29"
}
},
"release_status" : "stable",
@@ -41,6 +41,6 @@
"http://dev.perl.org/licenses/"
]
},
- "version" : "1.28",
+ "version" : "1.29",
"x_serialization_backend" : "JSON::PP version 2.27400_02"
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Math-Clipper-1.28/META.yml
new/Math-Clipper-1.29/META.yml
--- old/Math-Clipper-1.28/META.yml 2019-05-12 00:58:59.000000000 +0200
+++ new/Math-Clipper-1.29/META.yml 2019-05-17 08:59:15.000000000 +0200
@@ -20,8 +20,8 @@
provides:
Math::Clipper:
file: lib/Math/Clipper.pm
- version: '1.28'
+ version: '1.29'
resources:
license: http://dev.perl.org/licenses/
-version: '1.28'
+version: '1.29'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Math-Clipper-1.28/lib/Math/Clipper.pm
new/Math-Clipper-1.29/lib/Math/Clipper.pm
--- old/Math-Clipper-1.28/lib/Math/Clipper.pm 2019-05-12 00:58:59.000000000
+0200
+++ new/Math-Clipper-1.29/lib/Math/Clipper.pm 2019-05-17 08:59:15.000000000
+0200
@@ -12,7 +12,7 @@
BEGIN {
use XSLoader;
- $VERSION = '1.28';
+ $VERSION = '1.29';
XSLoader::load('Math::Clipper', $VERSION);
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Math-Clipper-1.28/src/myinit.h
new/Math-Clipper-1.29/src/myinit.h
--- old/Math-Clipper-1.28/src/myinit.h 2019-05-12 00:58:59.000000000 +0200
+++ new/Math-Clipper-1.29/src/myinit.h 2019-05-17 08:59:15.000000000 +0200
@@ -1,6 +1,10 @@
#ifndef __clipper_myinit_h_
#define __clipper_myinit_h_
+// fix build error under clang for pre-5.18 Perls
+#undef dNOOP
+#define dNOOP struct Perl___notused_struct
+
#include "clipper.hpp"
using namespace ClipperLib;