r18861 - in /trunk/libsvg-perl: Changes MANIFEST META.yml debian/changelog examples/svgtest2.pl lib/SVG.pm lib/SVG/DOM.pm lib/SVG/Element.pm lib/SVG/Extension.pm lib/SVG/Manual.pm lib/SVG/XML.pm t/98_all_pod.t

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sat Apr 19 22:04:16 UTC 2008


Author: gregoa
Date: Sat Apr 19 22:04:16 2008
New Revision: 18861

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

Added:
    trunk/libsvg-perl/examples/svgtest2.pl
      - copied unchanged from r18859, branches/upstream/libsvg-perl/current/examples/svgtest2.pl
Modified:
    trunk/libsvg-perl/Changes
    trunk/libsvg-perl/MANIFEST
    trunk/libsvg-perl/META.yml
    trunk/libsvg-perl/debian/changelog
    trunk/libsvg-perl/lib/SVG.pm
    trunk/libsvg-perl/lib/SVG/DOM.pm
    trunk/libsvg-perl/lib/SVG/Element.pm
    trunk/libsvg-perl/lib/SVG/Extension.pm
    trunk/libsvg-perl/lib/SVG/Manual.pm
    trunk/libsvg-perl/lib/SVG/XML.pm
    trunk/libsvg-perl/t/98_all_pod.t

Modified: trunk/libsvg-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvg-perl/Changes?rev=18861&op=diff
==============================================================================
--- trunk/libsvg-perl/Changes (original)
+++ trunk/libsvg-perl/Changes Sat Apr 19 22:04:16 2008
@@ -1,4 +1,10 @@
 Revision history for Perl extension SVG.
+
+2.42	16 April, 2008
+	-Removed Makefile from MANIFEST
+
+2.41	16 April, 2008
+	-Fixed MANIFEST and added license data to the SVG.pm file
 
 2.40	14 April, 2008
 	-Changed tests to current recommendation. Moved to t/ directory.

Modified: trunk/libsvg-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvg-perl/MANIFEST?rev=18861&op=diff
==============================================================================
--- trunk/libsvg-perl/MANIFEST (original)
+++ trunk/libsvg-perl/MANIFEST Sat Apr 19 22:04:16 2008
@@ -1,25 +1,9 @@
 Changes
+LICENSE
+Makefile.PL
+MANIFEST
+META.yml
 README
-MANIFEST
-Makefile.PL
-lib/SVG.pm
-lib/SVG/XML.pm
-lib/SVG/DOM.pm
-lib/SVG/Element.pm
-lib/SVG/Extension.pm
-lib/SVG/Manual.pm
-examples/SVG_02_sample.pl
-examples/image_sample.pl
-examples/inline_sample.pl
-examples/yaph5.cgi
-examples/starpath.cgi
-examples/svg.pl
-examples/sun_text_sample.pl
-examples/svg.pl
-examples/minsvg.pl
-examples/inlinesvg.pl
-examples/svg_dom_sample.pl
-examples/attributeManip.pl
 t/01-loadsvg.t
 t/02-simpledoc.t
 t/03-render.t
@@ -44,7 +28,23 @@
 t/22-xlink.t
 t/23-xmlescape.t
 t/24-doubleuse.t
+t/98_all_pod.t
 t/99_test_pod_coverage.t
-META.yml                                 Module meta-data (added by MakeMaker)
-LICENSE
-t/98_all_pod.t
+examples/attributeManip.pl
+examples/image_sample.pl
+examples/inline_sample.pl
+examples/inlinesvg.pl
+examples/minsvg.pl
+examples/starpath.cgi
+examples/sun_text_sample.pl
+examples/SVG_02_sample.pl
+examples/svg_dom_sample.pl
+examples/svg.pl
+examples/svgtest2.pl
+examples/yaph5.cgi
+lib/SVG.pm
+lib/SVG/DOM.pm
+lib/SVG/Element.pm
+lib/SVG/Extension.pm
+lib/SVG/Manual.pm
+lib/SVG/XML.pm

Modified: trunk/libsvg-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvg-perl/META.yml?rev=18861&op=diff
==============================================================================
--- trunk/libsvg-perl/META.yml (original)
+++ trunk/libsvg-perl/META.yml Sat Apr 19 22:04:16 2008
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                SVG
-version:             2.40
+version:             2.42
 abstract:            Perl extension for generating Scalable Vector Graphics (SVG) documents
 license:             perl
 author:              

Modified: trunk/libsvg-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvg-perl/debian/changelog?rev=18861&op=diff
==============================================================================
--- trunk/libsvg-perl/debian/changelog (original)
+++ trunk/libsvg-perl/debian/changelog Sat Apr 19 22:04:16 2008
@@ -1,3 +1,9 @@
+libsvg-perl (2.42-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- gregor herrmann <gregoa at debian.org>  Sun, 20 Apr 2008 00:03:03 +0200
+
 libsvg-perl (2.40-1) unstable; urgency=low
 
   * New upstream release.

Modified: trunk/libsvg-perl/lib/SVG.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvg-perl/lib/SVG.pm?rev=18861&op=diff
==============================================================================
--- trunk/libsvg-perl/lib/SVG.pm (original)
+++ trunk/libsvg-perl/lib/SVG.pm Sat Apr 19 22:04:16 2008
@@ -18,7 +18,7 @@
 
 @ISA = qw(SVG::Element SVG::Extension);
 
-$VERSION = "2.40";
+$VERSION = "2.42";
 
 #-------------------------------------------------------------------------------
 
@@ -26,7 +26,7 @@
 
 =head2 VERSION
 
-Version 2.40, 08  April, 2008
+Version 2.42, 08  April, 2008
 
 Refer to L<SVG::Manual> for the complete manual
 
@@ -323,4 +323,14 @@
 
 #-------------------------------------------------------------------------------
 
+#LICENSE
+#
+#
+#
+#The modules in the SVG distribution are distributed under the same license
+# as Perl itself. It is provided free of warranty and may be re-used freely.
+#
+#
+#
+
 1;

Modified: trunk/libsvg-perl/lib/SVG/DOM.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvg-perl/lib/SVG/DOM.pm?rev=18861&op=diff
==============================================================================
--- trunk/libsvg-perl/lib/SVG/DOM.pm (original)
+++ trunk/libsvg-perl/lib/SVG/DOM.pm Sat Apr 19 22:04:16 2008
@@ -2,7 +2,7 @@
 use strict;
 use warnings;
 use vars qw($VERSION);
-$VERSION = "1.04";
+$VERSION = "2.42";
 
 # this module extends SVG::Element
 package SVG::Element;

Modified: trunk/libsvg-perl/lib/SVG/Element.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvg-perl/lib/SVG/Element.pm?rev=18861&op=diff
==============================================================================
--- trunk/libsvg-perl/lib/SVG/Element.pm (original)
+++ trunk/libsvg-perl/lib/SVG/Element.pm Sat Apr 19 22:04:16 2008
@@ -20,7 +20,7 @@
 
 package SVG::Element;
 
-$VERSION = "2.40";
+$VERSION = "2.42";
 
 use strict;
 use SVG::XML;
@@ -1329,7 +1329,7 @@
     );
 
 Note that the following filter elements are currently supported:
-Also note that the elelemts are defined in lower case in the module, but as of version 2.31, any case combination is allowed.
+Also note that the elelemts are defined in lower case in the module, but as of version 2.421, any case combination is allowed.
 
 =head2 * feBlend 
 

Modified: trunk/libsvg-perl/lib/SVG/Extension.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvg-perl/lib/SVG/Extension.pm?rev=18861&op=diff
==============================================================================
--- trunk/libsvg-perl/lib/SVG/Extension.pm (original)
+++ trunk/libsvg-perl/lib/SVG/Extension.pm Sat Apr 19 22:04:16 2008
@@ -2,7 +2,7 @@
 use strict;
 use warnings;
 use vars qw(@ISA $VERSION @TYPES %TYPES);
-$VERSION = "0.2";
+$VERSION = "2.42";
 
 # although DTD declarations are not elements, we use the same API so we can
 # manipulate the internal DTD subset using the same methods available for

Modified: trunk/libsvg-perl/lib/SVG/Manual.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvg-perl/lib/SVG/Manual.pm?rev=18861&op=diff
==============================================================================
--- trunk/libsvg-perl/lib/SVG/Manual.pm (original)
+++ trunk/libsvg-perl/lib/SVG/Manual.pm Sat Apr 19 22:04:16 2008
@@ -1,6 +1,6 @@
 package SVG::Manual;
 
-our $VERSION = 2.40;
+our $VERSION = 2.42;
 use vars qw($VERSION);
 use strict;
 use warnings;
@@ -13,7 +13,7 @@
 
 =head2 VERSION
 
-Covers SVG-2.40 distribution, April 2008
+Covers SVG-2.42 distribution, April 2008
 
 =head1 SYNOPSIS
 
@@ -199,7 +199,7 @@
  <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
  <svg height="100%" width="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
         <defs  /><!--
-        Generated using the Perl SVG Module V2.33
+        Generated using the Perl SVG Module V2.42
         by Ronan Oger
         Info: http://www.roitsystems.com/
   -->

Modified: trunk/libsvg-perl/lib/SVG/XML.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvg-perl/lib/SVG/XML.pm?rev=18861&op=diff
==============================================================================
--- trunk/libsvg-perl/lib/SVG/XML.pm (original)
+++ trunk/libsvg-perl/lib/SVG/XML.pm Sat Apr 19 22:04:16 2008
@@ -23,7 +23,7 @@
 
 use vars qw($VERSION @ISA @EXPORT );
 
-$VERSION = "2.27";
+$VERSION = "2.42";
 
 require Exporter;
 @ISA = qw(Exporter);

Modified: trunk/libsvg-perl/t/98_all_pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsvg-perl/t/98_all_pod.t?rev=18861&op=diff
==============================================================================
--- trunk/libsvg-perl/t/98_all_pod.t (original)
+++ trunk/libsvg-perl/t/98_all_pod.t Sat Apr 19 22:04:16 2008
@@ -2,6 +2,6 @@
 use Test::More;
 eval "use Test::Pod 1.00";
 plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
-my @poddirs = qw( blib );
+my @poddirs = qw( blib blib/SVG);
 all_pod_files_ok( all_pod_files( @poddirs ) );
 




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