debian/0000755000000000000000000000000011706343350007170 5ustar debian/control0000644000000000000000000000173211706343350010576 0ustar Source: libnet-whois-parser-perl Section: perl Priority: optional Build-Depends: debhelper (>= 8), perl (>= 5.13.11) | libmodule-build-perl (>= 0.380000) Build-Depends-Indep: libnet-whois-raw-perl (>= 2) Maintainer: Debian Perl Group Uploaders: Jotam Jr. Trejo , gregor herrmann Standards-Version: 3.9.2 Homepage: http://search.cpan.org/dist/Net-Whois-Parser/ Vcs-Git: git://git.debian.org/pkg-perl/packages/libnet-whois-parser-perl.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libnet-whois-parser-perl.git Package: libnet-whois-parser-perl Architecture: all Depends: ${perl:Depends}, ${misc:Depends}, libnet-whois-raw-perl (>= 2) Description: module for parsing whois information The Net::Whois::Parser module provides whois data parsing, it usees Net::Whois::Raw module to get whois information for domains and you can add your own parsers for any whois server. debian/libnet-whois-parser-perl.examples0000644000000000000000000000001311706343350015560 0ustar examples/* debian/copyright0000644000000000000000000000214711706343350011127 0ustar Format-Specification: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=135 Maintainer: Ivan Sokolov Source: http://search.cpan.org/dist/Net-Whois-Parser/ Name: Net-Whois-Parser Files: * Copyright: 2009, Ivan Sokolov License: Artistic or GPL-1+ Files: debian/* Copyright: 2010-2011, Jotam Jr. Trejo 2011, gregor herrmann 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' debian/watch0000644000000000000000000000017511706343350010224 0ustar version=3 http://search.cpan.org/dist/Net-Whois-Parser/ .*/Net-Whois-Parser-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ debian/patches/0000755000000000000000000000000011706343350010617 5ustar debian/patches/noInternet.patch0000644000000000000000000000144711706343350013773 0ustar Description: Workaround to skip tests when internet access is not available Due to Debian policy, build systems of Debiandon't have internet access, that causes that the internet dependent tests fail at build time. Origin: vendor, http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=577350 Forwarded: not-needed Bug-Debian: http://bugs.debian.org/577350 Author: Jotam Jr. Trejo Last-Update: 2011-06-18 --- a/t/000-base.t +++ b/t/000-base.t @@ -14,6 +14,9 @@ my $domain = 'reg.ru'; my $info; plan tests => 11; +SKIP: { + +skip "Build system don't have internet access", 11 unless $ENV{CONNECTED_TO_NET}; my ( $raw, $server ) = whois($domain); @@ -52,4 +55,5 @@ $info = parse_whois( raw => $raw ); is_deeply $info->{test}, [ 1, 2, 3], 'get_all_values is on'; + } debian/patches/series0000644000000000000000000000002111706343350012025 0ustar noInternet.patch debian/compat0000644000000000000000000000000211706343350010366 0ustar 8 debian/changelog0000644000000000000000000000425311706343350011046 0ustar libnet-whois-parser-perl (0.07-1) unstable; urgency=low * New upstream release. * Drop manpage-spelling-error.patch, applied upstream. -- gregor herrmann Fri, 20 Jan 2012 20:56:18 +0100 libnet-whois-parser-perl (0.06-1) unstable; urgency=low [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ Salvatore Bonaccorso ] * debian/copyright: Replace DEP5 Format-Specification URL from svn.debian.org to anonscm.debian.org URL. [ gregor herrmann ] * New upstream release. * Refresh manpage-spelling-error.patch. * Build depend on Module::Build: 0.38. * Switch to debhelper compatibility level 8. * Add /me to Uploaders. -- gregor herrmann Sat, 10 Dec 2011 18:35:57 +0100 libnet-whois-parser-perl (0.05-3) unstable; urgency=low * debian/control: add missing dependency (libnet-whois-raw-perl), thanks to Antti Salmela for reporting the bug, Closes: #609782 * debian/control: bump Standards Version to 3.9.2 * debian/control: remove duplicate build relation over perl in B-D and B-D-I * debian/control: add version dependency for libmodule-build-perl (>=0.360000) * debian/README.source: removed, not needed anymore * debian/copyright: refresh according to DEP 5 revision 135 * debian/copyright: add year to upstream copyright statement * debian/control: change maintainer to pkg-perl group * debian/control: add Vcs-Svn and Vcs-Browser fields * debian/rules: use "dh_auto_test" instead of "$(MAKE) test" in dh_auto_test override * debian/patches/noInternet.patch: drop useless test case for environment variable -- Jotam Jr. Trejo Sat, 18 Jun 2011 19:01:02 -0600 libnet-whois-parser-perl (0.05-2) unstable; urgency=low * Skip tests if there is no internet access, add debian/patches/noInternet.patch to solve that due to lack of internet in build systems. * Closes: #577350 -- Jotam Jr. Trejo Wed, 14 Apr 2010 15:21:54 -0600 libnet-whois-parser-perl (0.05-1) unstable; urgency=low * Initial Release (Closes: #573453) -- Jotam Jr. Trejo Sat, 20 Mar 2010 00:20:27 -0600 debian/source/0000755000000000000000000000000011706343350010470 5ustar debian/source/format0000644000000000000000000000001411706343350011676 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000035211706343350010250 0ustar #!/usr/bin/make -f %: dh $@ override_dh_auto_test: #use CONNECTED_TO_NET=1 when you have access to internet #this is set to 0 by defautl because debian build systems don't have #internet access. CONNECTED_TO_NET=0 dh_auto_test