--- libtest-www-selenium-perl-1.17.orig/debian/control +++ libtest-www-selenium-perl-1.17/debian/control @@ -0,0 +1,27 @@ +Source: libtest-www-selenium-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.6.10-12), liburi-perl (>= 1.31), + libtest-exception-perl, libtest-pod-perl, libtest-mock-lwp-perl, + libtest-simple-perl, libwww-perl +Maintainer: Debian Perl Group +Uploaders: AGOSTINI Yves , + gregor herrmann +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Test-WWW-Selenium/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtest-www-selenium-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtest-www-selenium-perl/ + +Package: libtest-www-selenium-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, liburi-perl (>= 1.31) +Description: Test applications using Selenium Remote Control + Test::WWW::Selenium is a WWW::Selenium subclass providing some methods useful + for writing tests. For each Selenium command (open, click, type, ...) there + is a corresponding _ok method that checks the return value (open_ok, + click_ok, type_ok). + . + For each Selenium getter (get_title, ...) there are four autogenerated methods + (_is, _isnt, _like, _unlike) to check the value + of the attribute. --- libtest-www-selenium-perl-1.17.orig/debian/copyright +++ libtest-www-selenium-perl-1.17/debian/copyright @@ -0,0 +1,62 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Luke Closs +Upstream-Source: http://search.cpan.org/dist/Test-WWW-Selenium/ +Upstream-Name: Test-WWW-Selenium + +Files: * +Copyright: Copyright (c) 2006 Luke Closs , + Copyright (c) 2006 Dan Fabulitch , + Copyright (c) 2005,2006 Mattia Barbon +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: ./usr/share/perl5/WWW/Selenium* +Copyright: Copyright (c) 2006 ThoughtWorks, Inc +License: Apache-2.0 + +Files: inc/* +Copyright: Copyright 2002 - 2008 by Brian Ingerson, Audrey Tang and Adam Kennedy +License-Alias: Perl +License: GPL-1+ | Artistic + +Files: debian/* +Copyright: + 2008 AGOSTINI Yves + 2008, gregor herrmann +License: GPL-2+ + +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 GNU/Linux 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 GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' + +License: GPL-2+ + 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 2, or (at your option) + any later version. + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' + +License: Apache-2.0 + Licensed under the Apache License, Version 2.0 (the "License"); you may not + use this file except in compliance with the License. You may obtain a copy of + the License at http://www.apache.org/licenses/LICENSE-2.0 + . + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + License for the specific language governing permissions and limitations under + the License. + On Debian GNU/Linux systems, the complete text of the Apache License, + Version 2.0 can be found in `/usr/share/common-licenses/Apache-2.0' --- libtest-www-selenium-perl-1.17.orig/debian/watch +++ libtest-www-selenium-perl-1.17/debian/watch @@ -0,0 +1,6 @@ +# format version number, currently 3; this line is compulsory! +version=3 +# URL to the package page followed by a regex to search +# O.15 version is certainly a typo mistake, change to 1.15 +opts=uversionmangle=s/0\.15/1\.15/ \ +http://search.cpan.org/dist/Test-WWW-Selenium/ .*/Test-WWW-Selenium-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libtest-www-selenium-perl-1.17.orig/debian/compat +++ libtest-www-selenium-perl-1.17/debian/compat @@ -0,0 +1 @@ +7 --- libtest-www-selenium-perl-1.17.orig/debian/libtest-www-selenium-perl.lintian-overrides +++ libtest-www-selenium-perl-1.17/debian/libtest-www-selenium-perl.lintian-overrides @@ -0,0 +1,2 @@ +# long xpathExpression in POD +libtest-www-selenium-perl: manpage-has-errors-from-man usr/share/man/man3/WWW::Selenium.3pm.gz 227: warning [p 2, 4.5i]: can't break line --- libtest-www-selenium-perl-1.17.orig/debian/changelog +++ libtest-www-selenium-perl-1.17/debian/changelog @@ -0,0 +1,34 @@ +libtest-www-selenium-perl (1.17-1) unstable; urgency=low + + * New upstream release. + + -- gregor herrmann Wed, 31 Dec 2008 19:40:53 +0100 + +libtest-www-selenium-perl (1.16-1) unstable; urgency=low + + [ gregor herrmann ] + * debian/copyright: point to /usr/share/common-licenses/Apache-2.0 instead + of including the Apache License verbatim. + * Set Standards-Version to 3.8.0 (no changes). + * debian/control: Changed: Switched Vcs-Browser field to ViewSVN + (source stanza). + + [ Brian Cassidy ] + * New upstream release + + [ gregor herrmann ] + * Add /me to Uploaders. + * Set debhelper compatibility level to 7; adapt + debian/{control,compat,rules}. + * debian/copyright: update formatting and add information about files under + inc/. + * Add a lintian override for a long xpathExpression which makes man's + line-breaking algorithm unhappy. + + -- gregor herrmann Wed, 17 Dec 2008 21:47:02 +0100 + +libtest-www-selenium-perl (1.15-1) unstable; urgency=low + + * Initial Release (Closes: #477558) + + -- AGOSTINI Yves Wed, 23 Apr 2008 21:54:19 +0200 --- libtest-www-selenium-perl-1.17.orig/debian/libtest-www-selenium-perl.docs +++ libtest-www-selenium-perl-1.17/debian/libtest-www-selenium-perl.docs @@ -0,0 +1,2 @@ +todo.txt +README --- libtest-www-selenium-perl-1.17.orig/debian/rules +++ libtest-www-selenium-perl-1.17/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + dh build + touch $@ + +clean: + dh $@ + +install: install-stamp +install-stamp: build-stamp + dh install + touch $@ + +binary-arch: + +binary-indep: install + dh $@ + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build