[perl-Glib] Stable release 1.280



commit a38e5233ff6f9faaef0ab2e9e412232287d7e9c8
Author: Torsten SchÃnfeld <kaffeetisch gmx de>
Date:   Sat Nov 3 15:38:27 2012 +0100

    Stable release 1.280

 Makefile.PL |   14 ++++++--------
 NEWS        |   35 +++++++++++++++++++++++++++++------
 lib/Glib.pm |    2 +-
 3 files changed, 36 insertions(+), 15 deletions(-)
---
diff --git a/Makefile.PL b/Makefile.PL
index c928d95..d14918f 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -41,7 +41,7 @@ unless (eval "use ExtUtils::Depends '$PREREQ_PM{'ExtUtils::Depends'}';"
    WriteMakefile(
          NAME         => 'Glib',
          PREREQ_FATAL => 1,
-	 PREREQ_PM    => \%PREREQ_PM,
+         PREREQ_PM    => \%PREREQ_PM,
    );
    exit 1; # not reached
 }
@@ -55,8 +55,7 @@ mkdir 'build', 0777;
 # If the package can't be found, warn and exit with status 0 to indicate to
 # CPAN testers that their system is not supported.
 my %glibcfg;
-unless (eval { %glibcfg = ExtUtils::PkgConfig->find ("gobject-2.0 >= $build_reqs{glib}");
-	       1; })
+unless (eval { %glibcfg = ExtUtils::PkgConfig->find ("gobject-2.0 >= $build_reqs{glib}"); 1; })
 {
 	warn $@;
 	exit 0;
@@ -193,7 +192,7 @@ our @exports;
 require 'Glib.exports';
 
 WriteMakefile(
-    NAME		    => 'Glib',
+    NAME		=> 'Glib',
     VERSION_FROM	=> 'lib/Glib.pm', # finds $VERSION
     ABSTRACT_FROM	=> 'lib/Glib.pm', # retrieve abstract from module
     PREREQ_PM		=> \%PREREQ_PM,
@@ -201,12 +200,11 @@ WriteMakefile(
     MAN3PODS		=> $glib ? \%pod_files : {},
     FUNCLIST		=> \ exports,
     DL_FUNCS		=> { Glib => [] },
-
-    META_MERGE      => \%meta_merge,
+    META_MERGE		=> \%meta_merge,
     $glib ? $glib->get_makefile_vars : (),
 );
 
-#=unstable
+=unstable
 
 print <<__EOW__;
 WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
@@ -219,7 +217,7 @@ WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
 WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
 __EOW__
 
-#=cut
+=cut
 
 =frozen
 
diff --git a/NEWS b/NEWS
index 228c5be..5606566 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,22 @@
-Overview of changes in Glib 1.270
-=================================
+Overview of changes in Glib 1.280 (stable)
+==========================================
+
+ Since 1.26x (the previous stable series)
+ ----------------------------------------
+ * Correctly handle the boxed type for GError.
+ * Ensure that custom signal marshallers are always used irregardless of
+   the spelling used for the signal name.
+ * Make the stack handling of some marshallers more robust, in
+   preparation for custom Glib::Boxed converters that call back into
+   Perl code.
+ * Add new C API gperl_register_boxed_synonym.
+
+ Since 1.270
+ -----------
+ * Fix building with perl <= 5.14.
+
+Overview of changes in Glib 1.270 (unstable)
+============================================
 
 * Correctly handle the boxed type for GError.
 * Ensure that custom signal marshallers are always used irregardless of the
@@ -9,16 +26,22 @@ Overview of changes in Glib 1.270
   code.
 * Add new C API gperl_register_boxed_synonym.
 
-Overview of changes in Glib 1.261
-=================================
+Overview of changes in Glib 1.262 (stable)
+==========================================
+
+* Properly specify our dependencies.
+* Distriubte a missing test file.
+
+Overview of changes in Glib 1.261 (stable)
+==========================================
 
 * Add NEWS entries comparing 1.260 to 1.24x
 * Add the 64 bit integer converters to the linker exports
 * updated README file similar to Cairo (RT#74870)
 * Created %meta_merge which follows v2 of meta-spec
 
-Overview of changes in Glib 1.260
-=================================
+Overview of changes in Glib 1.260 (stable)
+==========================================
 
  Since 1.24x (the previous stable series)
  ----------------------------------------
diff --git a/lib/Glib.pm b/lib/Glib.pm
index 0119b85..11ee5ea 100644
--- a/lib/Glib.pm
+++ b/lib/Glib.pm
@@ -27,7 +27,7 @@ use Exporter;
 require DynaLoader;
 our @ISA = qw(DynaLoader Exporter);
 
-our $VERSION = '1.270';
+our $VERSION = '1.280';
 
 use constant {
 	TRUE  => 1,



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]