r47490 - in /trunk/libtest-www-selenium-perl/debian: README.source changelog control copyright patches/ patches/fix-pod.patch patches/series rules

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Thu Nov 19 18:03:16 UTC 2009


Author: jawnsy-guest
Date: Thu Nov 19 18:02:18 2009
New Revision: 47490

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=47490
Log:
Prepare a patch to fix the POD issues

Added:
    trunk/libtest-www-selenium-perl/debian/README.source
    trunk/libtest-www-selenium-perl/debian/patches/
    trunk/libtest-www-selenium-perl/debian/patches/fix-pod.patch
    trunk/libtest-www-selenium-perl/debian/patches/series
Modified:
    trunk/libtest-www-selenium-perl/debian/changelog
    trunk/libtest-www-selenium-perl/debian/control
    trunk/libtest-www-selenium-perl/debian/copyright
    trunk/libtest-www-selenium-perl/debian/rules

Added: trunk/libtest-www-selenium-perl/debian/README.source
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-www-selenium-perl/debian/README.source?rev=47490&op=file
==============================================================================
--- trunk/libtest-www-selenium-perl/debian/README.source (added)
+++ trunk/libtest-www-selenium-perl/debian/README.source Thu Nov 19 18:02:18 2009
@@ -1,0 +1,5 @@
+This package uses quilt to manage all modifications to the upstream
+source.  Changes are stored in the source package as diffs in
+debian/patches and applied during the build.
+ 
+See /usr/share/doc/quilt/README.source for a detailed explanation.

Modified: trunk/libtest-www-selenium-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-www-selenium-perl/debian/changelog?rev=47490&op=diff
==============================================================================
--- trunk/libtest-www-selenium-perl/debian/changelog (original)
+++ trunk/libtest-www-selenium-perl/debian/changelog Thu Nov 19 18:02:18 2009
@@ -1,9 +1,7 @@
 libtest-www-selenium-perl (1.20-1) UNRELEASED; urgency=low
 
-  NOTE: on hold due to messed up POD which is tough to fix
-
   * New upstream release
-    + POD test removed upstream
+  * Prepare a patch to fix the POD issues
 
  -- Jonathan Yu <jawnsy at cpan.org>  Tue, 03 Nov 2009 15:49:33 -0500
 

Modified: trunk/libtest-www-selenium-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-www-selenium-perl/debian/control?rev=47490&op=diff
==============================================================================
--- trunk/libtest-www-selenium-perl/debian/control (original)
+++ trunk/libtest-www-selenium-perl/debian/control Thu Nov 19 18:02:18 2009
@@ -1,7 +1,7 @@
 Source: libtest-www-selenium-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7.3.0)
+Build-Depends: debhelper (>= 7.3.0), quilt (>= 0.46-7)
 Build-Depends-Indep: perl, liburi-perl,
  libtest-exception-perl, libtest-mock-lwp-perl,
  libwww-perl

Modified: trunk/libtest-www-selenium-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-www-selenium-perl/debian/copyright?rev=47490&op=diff
==============================================================================
--- trunk/libtest-www-selenium-perl/debian/copyright (original)
+++ trunk/libtest-www-selenium-perl/debian/copyright Thu Nov 19 18:02:18 2009
@@ -8,11 +8,14 @@
 Copyright: 2006, Luke Closs <lukec at cpan.org>
  2006, Dan Fabulitch <dfabulich at warpmail.net>
  2005-2006, Mattia Barbon <mbarbon at cpan.org>
-License-Alias: Perl
-License: Artistic | GPL-1+
+License: Artistic or GPL-1+
 
-Files: ./usr/share/perl5/WWW/Selenium*
-Copyright: 2006, ThoughtWorks, Inc
+Files: lib/WWW/Selenium.pm, util/create_www_selenium.pl
+Copyright: 2006, ThoughtWorks, Inc.
+License: Apache-2.0
+
+Files: lib/WWW/Selenium/Util.pm
+Copyright: 2007, Luke Closs <lukec at cpan.org>
 License: Apache-2.0
 
 Files: debian/*
@@ -25,8 +28,7 @@
 Copyright: 2002-2009, Adam Kennedy <adamk at cpan.org>
  2002-2009, Audrey Tang <autrijus at autrijus.org>
  2002-2009, Brian Ingerson <ingy at cpan.org>
-License-Alias: Perl
-License: Artistic | GPL-1+
+License: Artistic or GPL-1+
 
 License: Artistic
     This program is free software; you can redistribute it and/or modify

Added: trunk/libtest-www-selenium-perl/debian/patches/fix-pod.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-www-selenium-perl/debian/patches/fix-pod.patch?rev=47490&op=file
==============================================================================
--- trunk/libtest-www-selenium-perl/debian/patches/fix-pod.patch (added)
+++ trunk/libtest-www-selenium-perl/debian/patches/fix-pod.patch Thu Nov 19 18:02:18 2009
@@ -1,0 +1,60 @@
+Description: fix POD errors
+Author: Jonathan Yu <jawnsy at cpan.org>
+Origin: vendor
+Forwarded: no
+--- a/lib/WWW/Selenium.pm
++++ b/lib/WWW/Selenium.pm
+@@ -3213,7 +3213,7 @@
+ 
+ "default" - The default library.  Currently the default library is "ajaxslt" .
+ 
+- =back
++=back
+ 
+  If libraryName isn't one of these three, then  no change will be made.
+ 
+@@ -3421,7 +3421,7 @@
+ }
+ 
+ 
+-=item * $sel-E<gt>is_location($expected_location)
++=item $sel-E<gt>is_location($expected_location)
+ 
+ Verify the location of the current page ends with the expected location.
+ If an URL querystring is provided, this is checked as well.
+@@ -3445,7 +3445,7 @@
+     return $loc =~ /\Q$expected_location\E$/;
+ }
+ 
+-=item * $sel-E<gt>get_checked($locator)
++=item $sel-E<gt>get_checked($locator)
+ 
+ Gets whether a toggle-button (checkbox/radio) is checked.  Fails if the specified element doesn't exist or isn't a toggle-button.
+ 
+@@ -3466,7 +3466,7 @@
+     return $self->get_string("isChecked", @_) ? 'true' : 'false';
+ }
+ 
+-=item * $sel-E<gt>is_selected($locator, $option_locator)
++=item $sel-E<gt>is_selected($locator, $option_locator)
+ 
+ Verifies that the selected option of a drop-down satisfies the optionSpecifier.
+ 
+@@ -3496,7 +3496,7 @@
+     return grep { $pattern eq $_ } @selected;
+ }
+ 
+-=item * $sel-E<gt>get_selected_options($locator)
++=item $sel-E<gt>get_selected_options($locator)
+ 
+ Gets all option labels for selected options in the specified select or multi-select element.
+ 
+@@ -3517,7 +3517,7 @@
+     return $self->get_string_array("getSelectedLabels", @_);
+ }
+ 
+-=item * $sel-E<gt>get_absolute_location()
++=item $sel-E<gt>get_absolute_location()
+ 
+ Gets the absolute URL of the current page.
+ 

Added: trunk/libtest-www-selenium-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-www-selenium-perl/debian/patches/series?rev=47490&op=file
==============================================================================
--- trunk/libtest-www-selenium-perl/debian/patches/series (added)
+++ trunk/libtest-www-selenium-perl/debian/patches/series Thu Nov 19 18:02:18 2009
@@ -1,0 +1,1 @@
+fix-pod.patch

Modified: trunk/libtest-www-selenium-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-www-selenium-perl/debian/rules?rev=47490&op=diff
==============================================================================
--- trunk/libtest-www-selenium-perl/debian/rules (original)
+++ trunk/libtest-www-selenium-perl/debian/rules Thu Nov 19 18:02:18 2009
@@ -4,7 +4,7 @@
 TMP     = $(CURDIR)/debian/$(PACKAGE)
 
 %:
-	dh --buildsystem=perl_makemaker $@
+	dh --buildsystem=perl_makemaker --with quilt $@
 
 override_dh_auto_install:
 	dh_auto_install




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