Hello community,

here is the log from the commit of package perl-Glib for openSUSE:Factory 
checked in at 2020-02-25 16:01:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Glib (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Glib.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Glib"

Tue Feb 25 16:01:06 2020 rev:55 rq:778246 version:1.3292

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Glib/perl-Glib.changes      2019-09-11 
10:16:02.571543153 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Glib.new.26092/perl-Glib.changes   
2020-02-25 16:01:25.219953825 +0100
@@ -1,0 +2,11 @@
+Thu Feb 20 19:26:45 UTC 2020 - Tina Müller <[email protected]>
+
+- Add manual license LGPL-2.1-or-later to cpanspec.yml
+
+-------------------------------------------------------------------
+Wed Feb 19 03:09:13 UTC 2020 -  <[email protected]>
+
+- updated to 1.3292
+   see /usr/share/doc/packages/perl-Glib/ChangeLog.pre-git
+
+-------------------------------------------------------------------

Old:
----
  Glib-1.3291.tar.gz

New:
----
  Glib-1.3292.tar.gz

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

Other differences:
------------------
++++++ perl-Glib.spec ++++++
--- /var/tmp/diff_new_pack.6Nz74s/_old  2020-02-25 16:01:26.219956584 +0100
+++ /var/tmp/diff_new_pack.6Nz74s/_new  2020-02-25 16:01:26.223956595 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Glib
 #
-# Copyright (c) 2019 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
@@ -17,8 +17,9 @@
 
 
 Name:           perl-Glib
-Version:        1.3291
+Version:        1.3292
 Release:        0
+#Upstream:  This library is free software; you can redistribute it and/or 
modify it under the terms of the Lesser General Public License (LGPL). For more 
information, see http://www.fsf.org/licenses/lgpl.txt
 %define cpan_name Glib
 Summary:        Perl wrappers for the GLib utility and Object libraries
 License:        LGPL-2.1-or-later

++++++ Glib-1.3291.tar.gz -> Glib-1.3292.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Glib-1.3291/GOption.xs new/Glib-1.3292/GOption.xs
--- old/Glib-1.3291/GOption.xs  2017-05-21 21:02:34.000000000 +0200
+++ new/Glib-1.3292/GOption.xs  2020-02-18 05:18:12.000000000 +0100
@@ -148,12 +148,19 @@
 }
 
 static void
+free_element (gpointer element, gpointer user_data)
+{
+       PERL_UNUSED_VAR (user_data);
+       g_free (element);
+}
+
+static void
 gperl_arg_info_table_destroy (GPerlArgInfoTable *table)
 {
        g_hash_table_destroy (table->scalar_to_info);
 
        /* These are NULL-safe. */
-       g_slist_foreach (table->allocated_strings, (GFunc) g_free, NULL);
+       g_slist_foreach (table->allocated_strings, free_element, NULL);
        g_slist_free (table->allocated_strings);
 
        g_free (table);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Glib-1.3291/GType.xs new/Glib-1.3292/GType.xs
--- old/Glib-1.3291/GType.xs    2019-08-19 18:16:51.000000000 +0200
+++ new/Glib-1.3292/GType.xs    2020-02-18 05:18:12.000000000 +0100
@@ -1741,7 +1741,7 @@
 }
 
 static void
-gperl_type_instance_init (GObject * instance)
+gperl_type_instance_init (GObject * instance, gpointer g_class)
 {
        /*
         * for new objects, this may be the place where the initial
@@ -1755,6 +1755,8 @@
        SV **slot;
        g_assert (stash != NULL);
 
+       PERL_UNUSED_VAR (g_class);
+
        /* we need to always create a wrapper, regardless of whether there is
         * an INIT_INSTANCE sub.  otherwise, the fallback mechanism in
         * GType.xs' SET_PROPERTY handler will not have an HV to store the
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Glib-1.3291/GUtils.xs new/Glib-1.3292/GUtils.xs
--- old/Glib-1.3291/GUtils.xs   2017-05-21 21:02:34.000000000 +0200
+++ new/Glib-1.3292/GUtils.xs   2020-02-18 05:18:12.000000000 +0100
@@ -195,17 +195,13 @@
 
 #endif
 
-##=for apidoc __function__
-##Set GLib's global program name.  Glib will set this to the value of $0 for
-##you when it loads; this function is provided to give you a way to set the
-##internal variable used by the GLib C library, since it knows nothing about
-##$0.
-##=cut
-##gchar_own * g_get_prgname ();
-##
-##=for apidoc __function__
-##=cut
-##void g_set_prgname (const gchar *prgname);
+=for apidoc __function__
+=cut
+gchar_own * g_get_prgname ();
+
+=for apidoc __function__
+=cut
+void g_set_prgname (const gchar *prgname);
 
 #if GLIB_CHECK_VERSION(2, 2, 0)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Glib-1.3291/META.json new/Glib-1.3292/META.json
--- old/Glib-1.3291/META.json   2019-08-27 06:49:33.000000000 +0200
+++ new/Glib-1.3292/META.json   2020-02-18 06:07:35.000000000 +0100
@@ -83,6 +83,6 @@
       "x_IRC" : "irc://irc.gimp.org/#gtk-perl",
       "x_MailingList" : "https://mail.gnome.org/mailman/listinfo/gtk-perl-list";
    },
-   "version" : "1.3291",
+   "version" : "1.3292",
    "x_serialization_backend" : "JSON::PP version 2.97001"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Glib-1.3291/META.yml new/Glib-1.3292/META.yml
--- old/Glib-1.3291/META.yml    2019-08-27 06:49:33.000000000 +0200
+++ new/Glib-1.3292/META.yml    2020-02-18 06:07:35.000000000 +0100
@@ -53,5 +53,5 @@
   homepage: http://gtk2-perl.sourceforge.net
   license: http://www.gnu.org/licenses/lgpl-2.1.html
   repository: https://gitlab.gnome.org/GNOME/perl-glib
-version: '1.3291'
+version: '1.3292'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Glib-1.3291/NEWS new/Glib-1.3292/NEWS
--- old/Glib-1.3291/NEWS        2019-08-27 06:40:58.000000000 +0200
+++ new/Glib-1.3292/NEWS        2020-02-18 05:41:35.000000000 +0100
@@ -1,4 +1,10 @@
-Overview of changes in Glib 1.3210 (stable)
+Overview of changes in Glib 1.3292 (stable)
+============================================
+
+* Fix a few compiler warnings
+* Add Glib::get_prgname and Glib::set_prgname
+
+Overview of changes in Glib 1.3291 (stable)
 ============================================
 
 * POD: add short description for Glib::VariantDict
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Glib-1.3291/lib/Glib/CodeGen.pm 
new/Glib-1.3292/lib/Glib/CodeGen.pm
--- old/Glib-1.3291/lib/Glib/CodeGen.pm 2019-08-27 06:46:36.000000000 +0200
+++ new/Glib-1.3292/lib/Glib/CodeGen.pm 2020-02-18 06:05:51.000000000 +0100
@@ -5,7 +5,7 @@
 use Carp;
 use IO::File;
 
-our $VERSION = '1.3291';
+our $VERSION = '1.3292';
 
 # type handlers should look like this:
 #    sub gen_foo_stuff {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Glib-1.3291/lib/Glib/GenPod.pm 
new/Glib-1.3292/lib/Glib/GenPod.pm
--- old/Glib-1.3291/lib/Glib/GenPod.pm  2019-08-27 06:47:50.000000000 +0200
+++ new/Glib-1.3292/lib/Glib/GenPod.pm  2020-02-18 06:06:06.000000000 +0100
@@ -9,7 +9,7 @@
 
 package Glib::GenPod;
 
-our $VERSION = '1.3291';
+our $VERSION = '1.3292';
 
 use strict;
 use warnings;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Glib-1.3291/lib/Glib/MakeHelper.pm 
new/Glib-1.3292/lib/Glib/MakeHelper.pm
--- old/Glib-1.3291/lib/Glib/MakeHelper.pm      2019-08-27 06:48:05.000000000 
+0200
+++ new/Glib-1.3292/lib/Glib/MakeHelper.pm      2020-02-18 06:06:27.000000000 
+0100
@@ -4,7 +4,7 @@
 
 package Glib::MakeHelper;
 
-our $VERSION = '1.3291';
+our $VERSION = '1.3292';
 
 =head1 NAME
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Glib-1.3291/lib/Glib/Object/Subclass.pm 
new/Glib-1.3292/lib/Glib/Object/Subclass.pm
--- old/Glib-1.3291/lib/Glib/Object/Subclass.pm 2019-08-27 06:48:47.000000000 
+0200
+++ new/Glib-1.3292/lib/Glib/Object/Subclass.pm 2020-02-18 06:06:51.000000000 
+0100
@@ -20,7 +20,7 @@
 
 package Glib::Object::Subclass;
 
-our $VERSION = '1.3291';
+our $VERSION = '1.3292';
 
 use Glib;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Glib-1.3291/lib/Glib/ParseXSDoc.pm 
new/Glib-1.3292/lib/Glib/ParseXSDoc.pm
--- old/Glib-1.3291/lib/Glib/ParseXSDoc.pm      2019-08-27 06:48:30.000000000 
+0200
+++ new/Glib-1.3292/lib/Glib/ParseXSDoc.pm      2020-02-18 06:06:39.000000000 
+0100
@@ -13,7 +13,7 @@
        xsdocparse
 );
 
-our $VERSION = '1.3291';
+our $VERSION = '1.3292';
 
 our $NOISY = $ENV{NOISYDOC};
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Glib-1.3291/lib/Glib.pm new/Glib-1.3292/lib/Glib.pm
--- old/Glib-1.3291/lib/Glib.pm 2019-08-27 06:46:18.000000000 +0200
+++ new/Glib-1.3292/lib/Glib.pm 2020-02-18 05:40:58.000000000 +0100
@@ -27,7 +27,7 @@
 require DynaLoader;
 our @ISA = qw(DynaLoader Exporter);
 
-our $VERSION = '1.3291';
+our $VERSION = '1.3292';
 
 use constant {
        TRUE  => 1,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Glib-1.3291/t/1.t new/Glib-1.3292/t/1.t
--- old/Glib-1.3291/t/1.t       2012-01-06 07:26:40.000000000 +0100
+++ new/Glib-1.3292/t/1.t       2020-02-18 05:18:12.000000000 +0100
@@ -13,7 +13,7 @@
 
 #########################
 
-use Test::More tests => 26;
+use Test::More tests => 28;
 BEGIN { use_ok('Glib') };
 
 #########################
@@ -52,6 +52,10 @@
   is (Glib::get_application_name (), $appname);
 }
 
+is (Glib::get_prgname (), undef, 'before any calls to anything');
+Glib::set_prgname ('my_prgname');
+is (Glib::get_prgname (), 'my_prgname');
+
 SKIP: {
   skip "new 2.6 stuff", 6
     unless Glib->CHECK_VERSION (2,6,0);

++++++ cpanspec.yml ++++++
--- /var/tmp/diff_new_pack.6Nz74s/_old  2020-02-25 16:01:26.327956882 +0100
+++ /var/tmp/diff_new_pack.6Nz74s/_new  2020-02-25 16:01:26.327956882 +0100
@@ -18,7 +18,7 @@
 # rm unused.files
 #post_install: |-
 # sed on %{name}.files
-#license: SUSE-NonFree
+license: LGPL-2.1-or-later
 #skip_noarch: 1
 #custom_build: |-
 #./Build build flags=%{?_smp_mflags} --myflag


Reply via email to