[SCM] Debian packaging of libje-perl branch, master, updated. debian/0.059-1-12-ge943f75

gregor herrmann gregoa at debian.org
Mon Jun 17 19:20:01 UTC 2013


The following commit has been merged in the master branch:
commit e605eab66a40f7134a03e1d95b76b6c908d2157c
Author: gregor herrmann <gregoa at debian.org>
Date:   Mon Jun 17 21:15:31 2013 +0200

    Add a patch to fix some POD errors.

diff --git a/debian/patches/pod-fixes.patch b/debian/patches/pod-fixes.patch
new file mode 100644
index 0000000..2dec0ac
--- /dev/null
+++ b/debian/patches/pod-fixes.patch
@@ -0,0 +1,232 @@
+Description: fix a couple of POD mistakes
+ detected with Pod::Simple from 5.18
+Origin: vendor
+Bug: https://rt.cpan.org/Ticket/Display.html?id=86207
+Forwarded: https://rt.cpan.org/Ticket/Display.html?id=86207
+Author: gregor herrmann <gregoa at debian.org>
+Last-Update: 2013-06-17
+
+--- a/lib/JE.pm
++++ b/lib/JE.pm
+@@ -29,6 +29,8 @@
+ require JE::String                          ;
+ require JE::Undefined                     ;
+ 
++=encoding UTF-8
++
+ =head1 NAME
+ 
+ JE - Pure-Perl ECMAScript (JavaScript) Engine
+--- a/lib/JE/Boolean.pm
++++ b/lib/JE/Boolean.pm
+@@ -113,3 +113,5 @@
+ =item L<JE::Types>
+ 
+ =item L<JE::Object::Boolean>
++
++=back
+--- a/lib/JE/Code.pm
++++ b/lib/JE/Code.pm
+@@ -1543,7 +1543,9 @@
+ 
+ =over 4
+ 
+-L<JE>
++=item L<JE>
++
++=back
+ 
+ =cut
+ 
+--- a/lib/JE/LValue.pm
++++ b/lib/JE/LValue.pm
+@@ -224,6 +224,8 @@
+ 
+ Returns the property name.
+ 
++=back
++
+ =cut
+ 
+ 
+--- a/lib/JE/Null.pm
++++ b/lib/JE/Null.pm
+@@ -74,6 +74,8 @@
+ 
+ =item JE::Undefined
+ 
++=back
++
+ =cut
+ 
+ 
+--- a/lib/JE/Number.pm
++++ b/lib/JE/Number.pm
+@@ -232,6 +232,8 @@
+ 
+ =item L<JE::Object::Number>
+ 
++=back
++
+ =cut
+ 
+ 
+--- a/lib/JE/Object/Boolean.pm
++++ b/lib/JE/Object/Boolean.pm
+@@ -174,6 +174,8 @@
+ 
+ =item JE::Boolean
+ 
++=back
++
+ =cut
+ 
+ 
+--- a/lib/JE/Object/Error.pm
++++ b/lib/JE/Object/Error.pm
+@@ -190,6 +190,8 @@
+ 
+ =item L<JE::Object::Error::ReferenceError>
+ 
++=back
++
+ =cut
+ 
+ 
+--- a/lib/JE/Object/Error/RangeError.pm
++++ b/lib/JE/Object/Error/RangeError.pm
+@@ -55,6 +55,8 @@
+ 
+ =item L<JE::Object::Error>
+ 
++=back
++
+ =cut
+ 
+ 
+--- a/lib/JE/Object/Error/ReferenceError.pm
++++ b/lib/JE/Object/Error/ReferenceError.pm
+@@ -56,6 +56,8 @@
+ 
+ =item L<JE::Object::Error>
+ 
++=back
++
+ =cut
+ 
+ 
+--- a/lib/JE/Object/Error/SyntaxError.pm
++++ b/lib/JE/Object/Error/SyntaxError.pm
+@@ -55,6 +55,8 @@
+ 
+ =item L<JE::Object::Error>
+ 
++=back
++
+ =cut
+ 
+ 
+--- a/lib/JE/Object/Error/TypeError.pm
++++ b/lib/JE/Object/Error/TypeError.pm
+@@ -55,6 +55,8 @@
+ 
+ =item L<JE::Object::Error>
+ 
++=back
++
+ =cut
+ 
+ 
+--- a/lib/JE/Object/Error/URIError.pm
++++ b/lib/JE/Object/Error/URIError.pm
+@@ -55,6 +55,8 @@
+ 
+ =item L<JE::Object::Error>
+ 
++=back
++
+ =cut
+ 
+ 
+--- a/lib/JE/Object/Function.pm
++++ b/lib/JE/Object/Function.pm
+@@ -699,6 +699,8 @@
+ 
+ =item JE::LValue
+ 
++=back
++
+ =cut
+ 
+ 
+@@ -887,4 +889,4 @@
+ 	[ map $self->prop($_), 0..$$$self{args_length}-1 ];
+ }
+ 
+-1;
+\ No newline at end of file
++1;
+--- a/lib/JE/Object/Math.pm
++++ b/lib/JE/Object/Math.pm
+@@ -510,4 +510,6 @@
+ 
+ =item JE::Number
+ 
++=back
++
+ =cut
+--- a/lib/JE/Object/Number.pm
++++ b/lib/JE/Object/Number.pm
+@@ -473,4 +473,6 @@
+ 
+ =item JE::Number
+ 
++=back
++
+ =cut
+--- a/lib/JE/Object/RegExp.pm
++++ b/lib/JE/Object/RegExp.pm
+@@ -922,6 +922,8 @@
+ 
+ =item JE::Object
+ 
++=back
++
+ =cut
+ 
+ 
+--- a/lib/JE/Object/String.pm
++++ b/lib/JE/Object/String.pm
+@@ -25,6 +25,8 @@
+ JE::Code->import('add_line_number');
+ sub add_line_number;
+ 
++=encoding UTF-8
++
+ =head1 NAME
+ 
+ JE::Object::String - JavaScript String object class
+@@ -924,6 +926,8 @@
+ 
+ =item JE::Object
+ 
++=back
++
+ =cut
+ 
+ 
+--- a/lib/JE/String.pm
++++ b/lib/JE/String.pm
+@@ -238,3 +238,5 @@
+ =item L<JE::Types>
+ 
+ =item L<JE::Object::String>
++
++=back
+--- a/lib/JE/Undefined.pm
++++ b/lib/JE/Undefined.pm
+@@ -67,3 +67,4 @@
+ 
+ =item JE
+ 
++=back
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..1cc419b
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+pod-fixes.patch

-- 
Debian packaging of libje-perl



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