r58611 - in /branches/upstream/libgraph-easy-perl/current: CHANGES META.yml lib/Graph/Easy.pm t/vcg.t

carnil-guest at users.alioth.debian.org carnil-guest at users.alioth.debian.org
Sat May 29 04:49:16 UTC 2010


Author: carnil-guest
Date: Sat May 29 04:43:50 2010
New Revision: 58611

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=58611
Log:
[svn-upgrade] Integrating new upstream version, libgraph-easy-perl (0.67)

Modified:
    branches/upstream/libgraph-easy-perl/current/CHANGES
    branches/upstream/libgraph-easy-perl/current/META.yml
    branches/upstream/libgraph-easy-perl/current/lib/Graph/Easy.pm
    branches/upstream/libgraph-easy-perl/current/t/vcg.t

Modified: branches/upstream/libgraph-easy-perl/current/CHANGES
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgraph-easy-perl/current/CHANGES?rev=58611&op=diff
==============================================================================
--- branches/upstream/libgraph-easy-perl/current/CHANGES (original)
+++ branches/upstream/libgraph-easy-perl/current/CHANGES Sat May 29 04:43:50 2010
@@ -1,4 +1,9 @@
 Revision history for Graph::Easy (formerly known as Graph::Simple):
+
+2010-05-28 v0.67 Shlomi Fish 2933 tests
+  * Fix the as_vcg() vs. as_vcg_file() test that sometimes failed due
+  to timestamp offsets in both files.
+    - See: http://www.cpantesters.org/cpan/report/07338331-b19f-3f77-b713-d32bba55d77f
 
 2010-05-23 v0.66 Shlomi Fish 2933 tests
   * Removed the leftover .orig files by request of a Debian maintainer (by

Modified: branches/upstream/libgraph-easy-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgraph-easy-perl/current/META.yml?rev=58611&op=diff
==============================================================================
--- branches/upstream/libgraph-easy-perl/current/META.yml (original)
+++ branches/upstream/libgraph-easy-perl/current/META.yml Sat May 29 04:43:50 2010
@@ -29,4 +29,4 @@
   perl: 5.008002
 resources:
   license: http://opensource.org/licenses/gpl-license.php
-version: 0.66
+version: 0.67

Modified: branches/upstream/libgraph-easy-perl/current/lib/Graph/Easy.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgraph-easy-perl/current/lib/Graph/Easy.pm?rev=58611&op=diff
==============================================================================
--- branches/upstream/libgraph-easy-perl/current/lib/Graph/Easy.pm (original)
+++ branches/upstream/libgraph-easy-perl/current/lib/Graph/Easy.pm Sat May 29 04:43:50 2010
@@ -17,7 +17,7 @@
 use Graph::Easy::Node::Empty;
 use Scalar::Util qw/weaken/;
 
-$VERSION = '0.66';
+$VERSION = '0.67';
 @ISA = qw/Graph::Easy::Base/;
 
 use strict;

Modified: branches/upstream/libgraph-easy-perl/current/t/vcg.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libgraph-easy-perl/current/t/vcg.t?rev=58611&op=diff
==============================================================================
--- branches/upstream/libgraph-easy-perl/current/t/vcg.t (original)
+++ branches/upstream/libgraph-easy-perl/current/t/vcg.t Sat May 29 04:43:50 2010
@@ -25,6 +25,11 @@
 my $vcg = $graph->as_vcg();
 my $vcg_file = $graph->as_vcg_file();
 
+foreach ($vcg,$vcg_file)
+{
+    s{(// Generated by Graph::Easy)[^\n]*}{$1}ms;
+}
+
 is ($vcg, $vcg_file, 'as_vcg and as_vcg_file are equal');
 
 #############################################################################




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