Hello community,
here is the log from the commit of package perl-ExtUtils-F77 for
openSUSE:Factory checked in at 2019-07-22 17:18:37
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-ExtUtils-F77 (Old)
and /work/SRC/openSUSE:Factory/.perl-ExtUtils-F77.new.4126 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-ExtUtils-F77"
Mon Jul 22 17:18:37 2019 rev:27 rq:717509 version:1.24
Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-ExtUtils-F77/perl-ExtUtils-F77.changes
2019-01-08 12:31:06.192100536 +0100
+++
/work/SRC/openSUSE:Factory/.perl-ExtUtils-F77.new.4126/perl-ExtUtils-F77.changes
2019-07-22 17:18:38.689946317 +0200
@@ -1,0 +2,10 @@
+Sun Jul 21 11:24:03 UTC 2019 - Stephan Kulow <[email protected]>
+
+- updated to 1.24
+ see /usr/share/doc/packages/perl-ExtUtils-F77/CHANGES
+
+ v1.24 released Jul 21st 2019
+ ---------------------------
+ * Fix of library order of -lgfortran and -lquadmath which effected MS Windows
+
+-------------------------------------------------------------------
Old:
----
ExtUtils-F77-1.23.tar.gz
New:
----
ExtUtils-F77-1.24.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-ExtUtils-F77.spec ++++++
--- /var/tmp/diff_new_pack.dWtE0o/_old 2019-07-22 17:18:39.601945591 +0200
+++ /var/tmp/diff_new_pack.dWtE0o/_new 2019-07-22 17:18:39.601945591 +0200
@@ -17,7 +17,7 @@
Name: perl-ExtUtils-F77
-Version: 1.23
+Version: 1.24
Release: 0
%define cpan_name ExtUtils-F77
Summary: Simple interface to F77 libs
++++++ ExtUtils-F77-1.23.tar.gz -> ExtUtils-F77-1.24.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ExtUtils-F77-1.23/CHANGES
new/ExtUtils-F77-1.24/CHANGES
--- old/ExtUtils-F77-1.23/CHANGES 2019-01-05 07:03:24.000000000 +0100
+++ new/ExtUtils-F77-1.24/CHANGES 2019-07-21 06:46:04.000000000 +0200
@@ -1,6 +1,10 @@
ExtUtils::F77 Changes list
--------------------------
+v1.24 released Jul 21st 2019
+---------------------------
+* Fix of library order of -lgfortran and -lquadmath which effected MS Windows
+
v1.23 released Jan 5th 2019
---------------------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ExtUtils-F77-1.23/F77.pm new/ExtUtils-F77-1.24/F77.pm
--- old/ExtUtils-F77-1.23/F77.pm 2019-01-05 06:56:24.000000000 +0100
+++ new/ExtUtils-F77-1.24/F77.pm 2019-07-21 06:43:50.000000000 +0200
@@ -8,7 +8,7 @@
use File::Which qw(which);
use List::Util qw(first);
-our $VERSION = "1.23";
+our $VERSION = "1.24";
our $DEBUG;
sub debug { return if !$DEBUG; warn @_ }
@@ -93,7 +93,7 @@
$dir ||= $defaultdir;
$lib ||= $defaultlib;
$append ||= '';
- return( qq{"-L$dir" $append -L/usr/lib -l$lib -lm} );
+ return( qq{"-L$dir" -L/usr/lib -l$lib $append -lm} );
}
sub gfortran_find_libdir {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ExtUtils-F77-1.23/META.json
new/ExtUtils-F77-1.24/META.json
--- old/ExtUtils-F77-1.23/META.json 2019-01-05 07:04:19.000000000 +0100
+++ new/ExtUtils-F77-1.24/META.json 2019-07-21 06:52:54.000000000 +0200
@@ -21,6 +21,9 @@
},
"release_status" : "stable",
"resources" : {
+ "bugtracker" : {
+ "web" : "https://github.com/PDLPorters/extutils-f77/issues"
+ },
"repository" : {
"type" : "git",
"url" : "git://github.com/PDLPorters/extutils-f77.git",
@@ -28,5 +31,5 @@
},
"x_IRC" : "irc://irc.perl.org/#pdl"
},
- "version" : "1.23"
+ "version" : "1.24"
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ExtUtils-F77-1.23/META.yml
new/ExtUtils-F77-1.24/META.yml
--- old/ExtUtils-F77-1.23/META.yml 2019-01-05 07:04:19.000000000 +0100
+++ new/ExtUtils-F77-1.24/META.yml 2019-07-21 06:52:54.000000000 +0200
@@ -16,5 +16,6 @@
- inc
resources:
IRC: irc://irc.perl.org/#pdl
+ bugtracker: https://github.com/PDLPorters/extutils-f77/issues
repository: git://github.com/PDLPorters/extutils-f77.git
-version: 1.23
+version: 1.24
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/ExtUtils-F77-1.23/Makefile.PL
new/ExtUtils-F77-1.24/Makefile.PL
--- old/ExtUtils-F77-1.23/Makefile.PL 2019-01-05 06:56:24.000000000 +0100
+++ new/ExtUtils-F77-1.24/Makefile.PL 2019-07-21 06:31:30.000000000 +0200
@@ -14,7 +14,7 @@
"meta-spec" => { version => 2 },
dynamic_config => 0,
resources => {
- bugtracker => 'https://github.com/PDLPorters/extutils-f77/issues',
+ bugtracker =>
{web=>'https://github.com/PDLPorters/extutils-f77/issues'},
repository => {
type => 'git',
url => 'git://github.com/PDLPorters/extutils-f77.git',