The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
META.json 132
META.yml 73
NEWS 05
gperl-gtypes.c 02
lib/Glib/CodeGen.pm 11
lib/Glib/GenPod.pm 11
lib/Glib/MakeHelper.pm 11
lib/Glib/Object/Subclass.pm 11
lib/Glib/ParseXSDoc.pm 11
lib/Glib.pm 11
10 files changed (This is a version diff) 2618
@@ -4,7 +4,7 @@
       "gtk2-perl Team <gtk-perl-list at gnome dot org>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.68, CPAN::Meta::Converter version 2.131560",
+   "generated_by" : "ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.132830",
    "license" : [
       "lgpl_2_1"
    ],
@@ -44,22 +44,11 @@
       ]
    },
    "prereqs" : {
-      "build" : {
-         "requires" : {
-            "ExtUtils::MakeMaker" : "0"
-         }
-      },
       "configure" : {
          "requires" : {
             "ExtUtils::Depends" : "0.300",
             "ExtUtils::PkgConfig" : "1.000"
          }
-      },
-      "runtime" : {
-         "requires" : {
-            "ExtUtils::Depends" : "0.300",
-            "ExtUtils::PkgConfig" : "1.000"
-         }
       }
    },
    "release_status" : "stable",
@@ -79,5 +68,5 @@
       },
       "x_MailingList" : "https://mail.gnome.org/mailman/listinfo/gtk-perl-list"
    },
-   "version" : "1.303"
+   "version" : "1.304"
 }
@@ -2,13 +2,12 @@
 abstract: 'Perl wrappers for the GLib utility and Object libraries'
 author:
   - 'gtk2-perl Team <gtk-perl-list at gnome dot org>'
-build_requires:
-  ExtUtils::MakeMaker: 0
+build_requires: {}
 configure_requires:
   ExtUtils::Depends: 0.300
   ExtUtils::PkgConfig: 1.000
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.68, CPAN::Meta::Converter version 2.131560'
+generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.132830'
 license: lgpl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -40,13 +39,10 @@ no_index:
     - xsapi.pod.foot
   package:
     - MY
-requires:
-  ExtUtils::Depends: 0.300
-  ExtUtils::PkgConfig: 1.000
 resources:
   MailingList: https://mail.gnome.org/mailman/listinfo/gtk-perl-list
   bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=Glib
   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.303
+version: 1.304
@@ -1,3 +1,8 @@
+Overview of changes in Glib 1.304 (stable)
+==========================================
+
+* Fix compilation against glib < 2.34.0.
+
 Overview of changes in Glib 1.303 (stable)
 ==========================================
 
@@ -187,7 +187,9 @@ gperl_spawn_flags_get_type (void)
       { G_SPAWN_STDERR_TO_DEV_NULL, "G_SPAWN_STDERR_TO_DEV_NULL", "stderr-to-dev-null" },
       { G_SPAWN_CHILD_INHERITS_STDIN, "G_SPAWN_CHILD_INHERITS_STDIN", "child-inherits-stdin" },
       { G_SPAWN_FILE_AND_ARGV_ZERO, "G_SPAWN_FILE_AND_ARGV_ZERO", "file-and-argv-zero" },
+#if GLIB_CHECK_VERSION (2, 34, 0)
       { G_SPAWN_SEARCH_PATH_FROM_ENVP, "G_SPAWN_SEARCH_PATH_FROM_ENVP", "search-path-from-envp" },
+#endif
       { 0, NULL, NULL }
     };
     etype = g_flags_register_static (g_intern_static_string ("GSpawnFlags"), values);
@@ -5,7 +5,7 @@ use warnings;
 use Carp;
 use IO::File;
 
-our $VERSION = '1.303';
+our $VERSION = '1.304';
 
 # type handlers should look like this:
 #    sub gen_foo_stuff {
@@ -9,7 +9,7 @@
 
 package Glib::GenPod;
 
-our $VERSION = '1.303';
+our $VERSION = '1.304';
 
 use strict;
 use warnings;
@@ -4,7 +4,7 @@
 
 package Glib::MakeHelper;
 
-our $VERSION = '1.303';
+our $VERSION = '1.304';
 
 =head1 NAME
 
@@ -20,7 +20,7 @@
 
 package Glib::Object::Subclass;
 
-our $VERSION = '1.303';
+our $VERSION = '1.304';
 
 use Glib;
 
@@ -13,7 +13,7 @@ our @EXPORT = qw(
 	xsdocparse
 );
 
-our $VERSION = '1.303';
+our $VERSION = '1.304';
 
 our $NOISY = $ENV{NOISYDOC};
 
@@ -27,7 +27,7 @@ use Exporter;
 require DynaLoader;
 our @ISA = qw(DynaLoader Exporter);
 
-our $VERSION = '1.303';
+our $VERSION = '1.304';
 
 use constant {
 	TRUE  => 1,