Hello community, here is the log from the commit of package perl-Glib for openSUSE:Factory checked in at 2018-03-06 10:48:28 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl-Glib (Old) and /work/SRC/openSUSE:Factory/.perl-Glib.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Glib" Tue Mar 6 10:48:28 2018 rev:50 rq:583139 version:1.326 Changes: -------- --- /work/SRC/openSUSE:Factory/perl-Glib/perl-Glib.changes 2017-05-16 14:44:20.030053963 +0200 +++ /work/SRC/openSUSE:Factory/.perl-Glib.new/perl-Glib.changes 2018-03-06 10:49:19.971851893 +0100 @@ -1,0 +2,6 @@ +Mon Mar 5 19:20:07 UTC 2018 - [email protected] + +- Update to version 1.326 + * Allow overriding of current time in generated man-pages (boo#1047218) + +------------------------------------------------------------------- Old: ---- Glib-1.325.tar.gz New: ---- Glib-1.326.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Glib.spec ++++++ --- /var/tmp/diff_new_pack.Nbo1Wv/_old 2018-03-06 10:49:20.523831953 +0100 +++ /var/tmp/diff_new_pack.Nbo1Wv/_new 2018-03-06 10:49:20.523831953 +0100 @@ -18,7 +18,7 @@ %define cpan_name Glib Name: perl-Glib -Version: 1.325 +Version: 1.326 Release: 0 Summary: Perl wrappers for the GLib utility and Object libraries License: LGPL-2.1+ ++++++ Glib-1.325.tar.gz -> Glib-1.326.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Glib-1.325/META.json new/Glib-1.326/META.json --- old/Glib-1.325/META.json 2017-04-21 04:04:06.000000000 +0200 +++ new/Glib-1.326/META.json 2017-07-13 01:56:14.000000000 +0200 @@ -84,6 +84,6 @@ "x_IRC" : "irc://irc.gimp.org/#gtk-perl", "x_MailingList" : "https://mail.gnome.org/mailman/listinfo/gtk-perl-list" }, - "version" : "1.325", + "version" : "1.326", "x_serialization_backend" : "JSON::PP version 2.27300" } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Glib-1.325/META.yml new/Glib-1.326/META.yml --- old/Glib-1.325/META.yml 2017-04-21 04:04:06.000000000 +0200 +++ new/Glib-1.326/META.yml 2017-07-13 01:56:14.000000000 +0200 @@ -53,5 +53,5 @@ homepage: http://gtk2-perl.sourceforge.net license: http://www.gnu.org/licenses/lgpl-2.1.html repository: git://git.gnome.org/perl-Glib -version: '1.325' +version: '1.326' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Glib-1.325/NEWS new/Glib-1.326/NEWS --- old/Glib-1.325/NEWS 2017-04-21 04:00:31.000000000 +0200 +++ new/Glib-1.326/NEWS 2017-07-13 01:55:51.000000000 +0200 @@ -1,3 +1,7 @@ +Overview of changes in Glib 1.326 (stable) +============================================ +* lib/Glib/GenPod.pm: Allow overriding of current time in generated man-pages + Overview of changes in Glib 1.325 (stable) ============================================ * Try to avoid a possible hang in t/9.t diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Glib-1.325/lib/Glib/CodeGen.pm new/Glib-1.326/lib/Glib/CodeGen.pm --- old/Glib-1.325/lib/Glib/CodeGen.pm 2017-04-21 04:01:43.000000000 +0200 +++ new/Glib-1.326/lib/Glib/CodeGen.pm 2017-07-13 01:55:33.000000000 +0200 @@ -5,7 +5,7 @@ use Carp; use IO::File; -our $VERSION = '1.325'; +our $VERSION = '1.326'; # type handlers should look like this: # sub gen_foo_stuff { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Glib-1.325/lib/Glib/GenPod.pm new/Glib-1.326/lib/Glib/GenPod.pm --- old/Glib-1.325/lib/Glib/GenPod.pm 2017-04-21 04:01:58.000000000 +0200 +++ new/Glib-1.326/lib/Glib/GenPod.pm 2017-07-13 01:55:33.000000000 +0200 @@ -9,7 +9,7 @@ package Glib::GenPod; -our $VERSION = '1.325'; +our $VERSION = '1.326'; use strict; use warnings; @@ -40,7 +40,7 @@ our $COPYRIGHT = undef; our $AUTHORS = 'Gtk2-Perl Team'; our $MAIN_MOD = undef; -our $YEAR = strftime "%Y", gmtime; +our $YEAR = strftime "%Y", gmtime($ENV{SOURCE_DATE_EPOCH} || time); our ($xspods, $data); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Glib-1.325/lib/Glib/MakeHelper.pm new/Glib-1.326/lib/Glib/MakeHelper.pm --- old/Glib-1.325/lib/Glib/MakeHelper.pm 2017-04-21 04:02:12.000000000 +0200 +++ new/Glib-1.326/lib/Glib/MakeHelper.pm 2017-07-13 01:55:33.000000000 +0200 @@ -4,7 +4,7 @@ package Glib::MakeHelper; -our $VERSION = '1.325'; +our $VERSION = '1.326'; =head1 NAME diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Glib-1.325/lib/Glib/Object/Subclass.pm new/Glib-1.326/lib/Glib/Object/Subclass.pm --- old/Glib-1.325/lib/Glib/Object/Subclass.pm 2017-04-21 04:02:30.000000000 +0200 +++ new/Glib-1.326/lib/Glib/Object/Subclass.pm 2017-07-13 01:55:33.000000000 +0200 @@ -20,7 +20,7 @@ package Glib::Object::Subclass; -our $VERSION = '1.325'; +our $VERSION = '1.326'; use Glib; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Glib-1.325/lib/Glib/ParseXSDoc.pm new/Glib-1.326/lib/Glib/ParseXSDoc.pm --- old/Glib-1.325/lib/Glib/ParseXSDoc.pm 2017-04-21 04:02:50.000000000 +0200 +++ new/Glib-1.326/lib/Glib/ParseXSDoc.pm 2017-07-13 01:55:33.000000000 +0200 @@ -13,7 +13,7 @@ xsdocparse ); -our $VERSION = '1.325'; +our $VERSION = '1.326'; our $NOISY = $ENV{NOISYDOC}; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Glib-1.325/lib/Glib.pm new/Glib-1.326/lib/Glib.pm --- old/Glib-1.325/lib/Glib.pm 2017-04-21 04:01:27.000000000 +0200 +++ new/Glib-1.326/lib/Glib.pm 2017-07-13 01:55:33.000000000 +0200 @@ -27,7 +27,7 @@ require DynaLoader; our @ISA = qw(DynaLoader Exporter); -our $VERSION = '1.325'; +our $VERSION = '1.326'; use constant { TRUE => 1,
