r58613 - in /trunk/libgraph-easy-perl: CHANGES META.yml debian/changelog lib/Graph/Easy.pm t/vcg.t

carnil-guest at users.alioth.debian.org carnil-guest at users.alioth.debian.org
Sat May 29 05:07:07 UTC 2010


Author: carnil-guest
Date: Sat May 29 05:06:42 2010
New Revision: 58613

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

Modified:
    trunk/libgraph-easy-perl/CHANGES
    trunk/libgraph-easy-perl/META.yml
    trunk/libgraph-easy-perl/debian/changelog
    trunk/libgraph-easy-perl/lib/Graph/Easy.pm
    trunk/libgraph-easy-perl/t/vcg.t

Modified: trunk/libgraph-easy-perl/CHANGES
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgraph-easy-perl/CHANGES?rev=58613&op=diff
==============================================================================
--- trunk/libgraph-easy-perl/CHANGES (original)
+++ trunk/libgraph-easy-perl/CHANGES Sat May 29 05:06:42 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: trunk/libgraph-easy-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgraph-easy-perl/META.yml?rev=58613&op=diff
==============================================================================
--- trunk/libgraph-easy-perl/META.yml (original)
+++ trunk/libgraph-easy-perl/META.yml Sat May 29 05:06:42 2010
@@ -29,4 +29,4 @@
   perl: 5.008002
 resources:
   license: http://opensource.org/licenses/gpl-license.php
-version: 0.66
+version: 0.67

Modified: trunk/libgraph-easy-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgraph-easy-perl/debian/changelog?rev=58613&op=diff
==============================================================================
--- trunk/libgraph-easy-perl/debian/changelog (original)
+++ trunk/libgraph-easy-perl/debian/changelog Sat May 29 05:06:42 2010
@@ -1,3 +1,9 @@
+libgraph-easy-perl (0.67-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>  Sat, 29 May 2010 06:50:24 +0200
+
 libgraph-easy-perl (0.66-2) UNRELEASED; urgency=low
 
   * Fix 'colorscheme' typo in debian/copyright.

Modified: trunk/libgraph-easy-perl/lib/Graph/Easy.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgraph-easy-perl/lib/Graph/Easy.pm?rev=58613&op=diff
==============================================================================
--- trunk/libgraph-easy-perl/lib/Graph/Easy.pm (original)
+++ trunk/libgraph-easy-perl/lib/Graph/Easy.pm Sat May 29 05:06:42 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: trunk/libgraph-easy-perl/t/vcg.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgraph-easy-perl/t/vcg.t?rev=58613&op=diff
==============================================================================
--- trunk/libgraph-easy-perl/t/vcg.t (original)
+++ trunk/libgraph-easy-perl/t/vcg.t Sat May 29 05:06:42 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