r65329 - in /trunk/libcss-dom-perl/debian: ./ changelog compat control copyright patches/ patches/pod_errors.patch patches/series rules source/ source/format watch

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Sat Nov 27 21:28:56 UTC 2010


Author: periapt-guest
Date: Sat Nov 27 21:28:48 2010
New Revision: 65329

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=65329
Log:
[svn-inject] Applying Debian modifications (0.13-1) to trunk

Added:
    trunk/libcss-dom-perl/debian/
    trunk/libcss-dom-perl/debian/changelog
    trunk/libcss-dom-perl/debian/compat
    trunk/libcss-dom-perl/debian/control
    trunk/libcss-dom-perl/debian/copyright
    trunk/libcss-dom-perl/debian/patches/
    trunk/libcss-dom-perl/debian/patches/pod_errors.patch
    trunk/libcss-dom-perl/debian/patches/series
    trunk/libcss-dom-perl/debian/rules   (with props)
    trunk/libcss-dom-perl/debian/source/
    trunk/libcss-dom-perl/debian/source/format
    trunk/libcss-dom-perl/debian/watch

Added: trunk/libcss-dom-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcss-dom-perl/debian/changelog?rev=65329&op=file
==============================================================================
--- trunk/libcss-dom-perl/debian/changelog (added)
+++ trunk/libcss-dom-perl/debian/changelog Sat Nov 27 21:28:48 2010
@@ -1,0 +1,5 @@
+libcss-dom-perl (0.13-1) UNRELEASED; urgency=low
+
+  * Initial Release. (Closes: #605137)
+
+ -- Nicholas Bamber <nicholas at periapt.co.uk>  Sat, 27 Nov 2010 20:04:06 +0000

Added: trunk/libcss-dom-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcss-dom-perl/debian/compat?rev=65329&op=file
==============================================================================
--- trunk/libcss-dom-perl/debian/compat (added)
+++ trunk/libcss-dom-perl/debian/compat Sat Nov 27 21:28:48 2010
@@ -1,0 +1,1 @@
+7

Added: trunk/libcss-dom-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcss-dom-perl/debian/control?rev=65329&op=file
==============================================================================
--- trunk/libcss-dom-perl/debian/control (added)
+++ trunk/libcss-dom-perl/debian/control Sat Nov 27 21:28:48 2010
@@ -1,0 +1,19 @@
+Source: libcss-dom-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Nicholas Bamber <nicholas at periapt.co.uk>
+Standards-Version: 3.9.1
+Homepage: http://search.cpan.org/dist/CSS-DOM/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libcss-dom-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libcss-dom-perl/
+
+Package: libcss-dom-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends}
+Description: interface to the Document Object Model for Cascading Style Sheets
+ This set of modules provides the CSS-specific interfaces described in the W3C
+ DOM recommendation. The CSS::DOM class itself implements the StyleSheet and
+ CSSStyleSheet DOM interfaces.

Added: trunk/libcss-dom-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcss-dom-perl/debian/copyright?rev=65329&op=file
==============================================================================
--- trunk/libcss-dom-perl/debian/copyright (added)
+++ trunk/libcss-dom-perl/debian/copyright Sat Nov 27 21:28:48 2010
@@ -1,0 +1,28 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: Father Chrysostomos <sprout at cpan.org>
+Source: http://search.cpan.org/dist/CSS-DOM/
+Name: CSS-DOM
+
+Files: *
+Copyright: 2007-2010, Father Chrysostomos <sprout at cpan.org>
+License: Artistic or GPL-1+
+
+Files: debian/*
+Copyright: 2010, Nicholas Bamber <nicholas at periapt.co.uk>
+License: Artistic or GPL-1+
+
+License: Artistic
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the Artistic License, which comes with Perl.
+ .
+ On Debian systems, the complete text of the Artistic License
+ can be found in `/usr/share/common-licenses/Artistic'.
+
+License: GPL-1+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 1, or (at your option)
+ any later version.
+ .
+ On Debian systems, the complete text of version 1 of the
+ General Public License can be found in `/usr/share/common-licenses/GPL-1'.

Added: trunk/libcss-dom-perl/debian/patches/pod_errors.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcss-dom-perl/debian/patches/pod_errors.patch?rev=65329&op=file
==============================================================================
--- trunk/libcss-dom-perl/debian/patches/pod_errors.patch (added)
+++ trunk/libcss-dom-perl/debian/patches/pod_errors.patch Sat Nov 27 21:28:48 2010
@@ -1,0 +1,64 @@
+Author: Nicholas Bamber <nicholas at periapt.co.uk>
+Subject: Missing =over/back from lists in pod
+Last-Update: 2010-11-27
+Bug: http://rt.cpan.org/Ticket/Display.html?id=63388
+--- a/lib/CSS/DOM/Util.pm
++++ b/lib/CSS/DOM/Util.pm
+@@ -100,6 +100,8 @@
+ have the same precedence as C<closedir> 
+ and C<delete>.
+ 
++=over
++
+ =item escape $string, $chars_to_escape
+ 
+ This escapes any characters in C<$string> that occur in 
+@@ -140,6 +142,8 @@
+ 
+ Returns the value that a CSS string token represents.
+ 
++=back
++
+ =head1 SEE ALSO
+ 
+ L<CSS::DOM>
+--- a/lib/CSS/DOM/Value.pm
++++ b/lib/CSS/DOM/Value.pm
+@@ -165,6 +165,8 @@
+ The following constants can be imported with C<use CSS::DOM::Value ':all'>.
+ They represent the type of CSS value.
+ 
++=over
++
+ =item CSS_INHERIT (0)
+ 
+ =item CSS_PRIMITIVE_VALUE (1)
+@@ -173,6 +175,8 @@
+ 
+ =item CSS_CUSTOM (3)
+ 
++=back
++
+ =head1 SEE ALSO
+ 
+ L<CSS::DOM>
+--- a/lib/CSS/DOM/Value/Primitive.pm
++++ b/lib/CSS/DOM/Value/Primitive.pm
+@@ -649,6 +649,8 @@
+ C<use CSS::DOM::Value::Primitive ':all'>.
+ They represent the type of primitive value.
+ 
++=over
++
+ =item CSS_UNKNOWN    
+ 
+ =item CSS_NUMBER     
+@@ -701,6 +703,8 @@
+ 
+ =item CSS_RGBCOLOR   
+ 
++=back
++
+ =head1 SEE ALSO
+ 
+ L<CSS::DOM>

Added: trunk/libcss-dom-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcss-dom-perl/debian/patches/series?rev=65329&op=file
==============================================================================
--- trunk/libcss-dom-perl/debian/patches/series (added)
+++ trunk/libcss-dom-perl/debian/patches/series Sat Nov 27 21:28:48 2010
@@ -1,0 +1,1 @@
+pod_errors.patch

Added: trunk/libcss-dom-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcss-dom-perl/debian/rules?rev=65329&op=file
==============================================================================
--- trunk/libcss-dom-perl/debian/rules (added)
+++ trunk/libcss-dom-perl/debian/rules Sat Nov 27 21:28:48 2010
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@

Propchange: trunk/libcss-dom-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libcss-dom-perl/debian/source/format
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcss-dom-perl/debian/source/format?rev=65329&op=file
==============================================================================
--- trunk/libcss-dom-perl/debian/source/format (added)
+++ trunk/libcss-dom-perl/debian/source/format Sat Nov 27 21:28:48 2010
@@ -1,0 +1,1 @@
+3.0 (quilt)

Added: trunk/libcss-dom-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libcss-dom-perl/debian/watch?rev=65329&op=file
==============================================================================
--- trunk/libcss-dom-perl/debian/watch (added)
+++ trunk/libcss-dom-perl/debian/watch Sat Nov 27 21:28:48 2010
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/CSS-DOM/   .*/CSS-DOM-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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