r26220 - in /trunk/libsub-exporter-perl: Changes META.yml debian/changelog lib/Sub/Exporter.pm lib/Sub/Exporter/Util.pm t/group-generator.t

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Sat Oct 25 15:28:01 UTC 2008


Author: ansgar-guest
Date: Sat Oct 25 15:27:57 2008
New Revision: 26220

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=26220
Log:
New upstream release.

Modified:
    trunk/libsub-exporter-perl/Changes
    trunk/libsub-exporter-perl/META.yml
    trunk/libsub-exporter-perl/debian/changelog
    trunk/libsub-exporter-perl/lib/Sub/Exporter.pm
    trunk/libsub-exporter-perl/lib/Sub/Exporter/Util.pm
    trunk/libsub-exporter-perl/t/group-generator.t

Modified: trunk/libsub-exporter-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsub-exporter-perl/Changes?rev=26220&op=diff
==============================================================================
--- trunk/libsub-exporter-perl/Changes (original)
+++ trunk/libsub-exporter-perl/Changes Sat Oct 25 15:27:57 2008
@@ -1,4 +1,8 @@
 Revision history for Sub-Exporter
+
+0.981     2008-10-24
+          finally fix very occasional hash ordering issue in tests
+          fix typo in SYNOPSIS (thanks, Florian!)
 
 0.980     2008-09-14
           fix inadvertant futzing with group generator args

Modified: trunk/libsub-exporter-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsub-exporter-perl/META.yml?rev=26220&op=diff
==============================================================================
--- trunk/libsub-exporter-perl/META.yml (original)
+++ trunk/libsub-exporter-perl/META.yml Sat Oct 25 15:27:57 2008
@@ -21,4 +21,4 @@
   perl: 5.6.0
 resources:
   license: http://dev.perl.org/licenses/
-version: 0.980
+version: 0.981

Modified: trunk/libsub-exporter-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsub-exporter-perl/debian/changelog?rev=26220&op=diff
==============================================================================
--- trunk/libsub-exporter-perl/debian/changelog (original)
+++ trunk/libsub-exporter-perl/debian/changelog Sat Oct 25 15:27:57 2008
@@ -1,3 +1,9 @@
+libsub-exporter-perl (0.981-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Ansgar Burchardt <ansgar at 43-1.org>  Sat, 25 Oct 2008 17:27:31 +0200
+
 libsub-exporter-perl (0.980-1) unstable; urgency=low
 
   [ Ansgar Burchardt ]

Modified: trunk/libsub-exporter-perl/lib/Sub/Exporter.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsub-exporter-perl/lib/Sub/Exporter.pm?rev=26220&op=diff
==============================================================================
--- trunk/libsub-exporter-perl/lib/Sub/Exporter.pm (original)
+++ trunk/libsub-exporter-perl/lib/Sub/Exporter.pm Sat Oct 25 15:27:57 2008
@@ -14,11 +14,11 @@
 
 =head1 VERSION
 
-version 0.980
+version 0.981
 
 =cut
 
-our $VERSION = '0.980';
+our $VERSION = '0.981';
 
 =head1 SYNOPSIS
 
@@ -28,7 +28,7 @@
   package Text::Tweaker;
   use Sub::Exporter -setup => {
     exports => [
-      qw(squish titlecase) # always works the same way
+      qw(squish titlecase), # always works the same way
       reformat => \&build_reformatter, # generator to build exported function
       trim     => \&build_trimmer,
       indent   => \&build_indenter,

Modified: trunk/libsub-exporter-perl/lib/Sub/Exporter/Util.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsub-exporter-perl/lib/Sub/Exporter/Util.pm?rev=26220&op=diff
==============================================================================
--- trunk/libsub-exporter-perl/lib/Sub/Exporter/Util.pm (original)
+++ trunk/libsub-exporter-perl/lib/Sub/Exporter/Util.pm Sat Oct 25 15:27:57 2008
@@ -12,11 +12,11 @@
 
 =head1 VERSION
 
-version 0.980
-
-=cut
-
-our $VERSION = '0.980';
+version 0.981
+
+=cut
+
+our $VERSION = '0.981';
 
 =head1 DESCRIPTION
 

Modified: trunk/libsub-exporter-perl/t/group-generator.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsub-exporter-perl/t/group-generator.t?rev=26220&op=diff
==============================================================================
--- trunk/libsub-exporter-perl/t/group-generator.t (original)
+++ trunk/libsub-exporter-perl/t/group-generator.t Sat Oct 25 15:27:57 2008
@@ -71,7 +71,11 @@
     {},
   );
 
-  is_deeply(\@got, $expected, "expand_group: $label");
+  is_deeply(
+    [ sort { lc $a->[0] cmp lc $b->[0] } @got ],
+    $expected,
+    "expand_group: $label",
+  );
 }
 
 for my $test (@single_tests) {
@@ -83,7 +87,11 @@
     [ $given ],
   );
 
-  is_deeply($got, $expected, "expand_groups: $label [single test]");
+  is_deeply(
+    [ sort { lc $a->[0] cmp lc $b->[0] } @$got ],
+    $expected,
+    "expand_groups: $label [single test]",
+  );
 }
 
 my @multi_tests = (




More information about the Pkg-perl-cvs-commits mailing list