diff -Nru libnet-z3950-simpleserver-perl-1.12/debian/changelog libnet-z3950-simpleserver-perl-1.12/debian/changelog --- libnet-z3950-simpleserver-perl-1.12/debian/changelog 2011-08-05 21:39:46.000000000 +0000 +++ libnet-z3950-simpleserver-perl-1.12/debian/changelog 2011-08-16 12:36:42.000000000 +0000 @@ -1,8 +1,24 @@ -libnet-z3950-simpleserver-perl (1.12-1~ppa1) natty; urgency=low +libnet-z3950-simpleserver-perl (1.12-2~ppa2) natty; urgency=low - TODO: - - Awaiting upstream response to licensing query + * + + -- Ben Webb Tue, 16 Aug 2011 12:36:37 +0000 + +libnet-z3950-simpleserver-perl (1.12-2~ppa1) natty; urgency=low + + * + + -- Ben Webb Tue, 16 Aug 2011 12:33:13 +0000 + +libnet-z3950-simpleserver-perl (1.12-2) UNRELEASED; urgency=low + + * debian/copyright: Replace DEP5 Format-Specification URL from + svn.debian.org to anonscm.debian.org URL. + + -- Salvatore Bonaccorso Sun, 07 Aug 2011 16:37:40 +0200 + +libnet-z3950-simpleserver-perl (1.12-1) unstable; urgency=low * Initial Release. (closes: #636603) - -- Ben Webb Fri, 05 Aug 2011 19:10:42 +0000 + -- Ben Webb Sat, 06 Aug 2011 17:51:18 +0000 diff -Nru libnet-z3950-simpleserver-perl-1.12/debian/copyright libnet-z3950-simpleserver-perl-1.12/debian/copyright --- libnet-z3950-simpleserver-perl-1.12/debian/copyright 2011-08-05 21:38:21.000000000 +0000 +++ libnet-z3950-simpleserver-perl-1.12/debian/copyright 2011-08-16 12:25:57.000000000 +0000 @@ -1,4 +1,4 @@ -Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=174 +Format-Specification: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=174 Upstream-Name: Net-Z3950-SimpleServer Upstream-Contact: Anders Sønderberg @@ -8,17 +8,31 @@ Files: * Copyright: 2000-2009, Index Data. +License: Artistic or GPL-1+ + +Files: SimpleServer.* GRS1.pm ztest.pl +Copyright: 2000-2006, Index Data. License: BSD-3-clause -Comment: - The above license is found at the top of the larger source code files, so it - seems to be upstream's intent to use this license. However the README and - manpage have the default statement that the library is under the same license - as perl. This has been reported to upstream. - (https://rt.cpan.org/Public/Bug/Display.html?id=70055) Files: debian/* Copyright: 2011, Ben Webb -License: BSD-3-clause +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 GNU General + Public License can be found in `/usr/share/common-licenses/GPL-1'. License: BSD-3-clause Permission to use, copy, modify, distribute, and sell this software and diff -Nru libnet-z3950-simpleserver-perl-1.12/debian/patches/series libnet-z3950-simpleserver-perl-1.12/debian/patches/series --- libnet-z3950-simpleserver-perl-1.12/debian/patches/series 2011-08-05 21:38:21.000000000 +0000 +++ libnet-z3950-simpleserver-perl-1.12/debian/patches/series 2011-08-16 12:25:57.000000000 +0000 @@ -1,2 +1,3 @@ manpage_spelling.patch makefile.patch +test.patch diff -Nru libnet-z3950-simpleserver-perl-1.12/debian/patches/test.patch libnet-z3950-simpleserver-perl-1.12/debian/patches/test.patch --- libnet-z3950-simpleserver-perl-1.12/debian/patches/test.patch 1970-01-01 00:00:00.000000000 +0000 +++ libnet-z3950-simpleserver-perl-1.12/debian/patches/test.patch 2011-08-16 12:25:57.000000000 +0000 @@ -0,0 +1,17 @@ +Description: use localhost as server bind address so client can always connect +Origin: vendor +Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=70109 +Author: gregor herrmann +Last-Update: 2011-08-06 + +--- a/test.pl ++++ b/test.pl +@@ -96,7 +96,7 @@ + SEARCH => \&my_search_handler, + FETCH => \&my_fetch_handler); + +- $handler->launch_server("test.pl", "-1", @ARGV); ++ $handler->launch_server("test.pl", "-1", "tcp:localhost:9999", @ARGV); + } else { ## Child starts the client + sleep(1); + open(CLIENT, "| yaz-client tcp:localhost:9999 > /dev/null")