debian/0000755000000000000000000000000011762626110007170 5ustar debian/compat0000644000000000000000000000000211754527732010401 0ustar 8 debian/rules0000755000000000000000000000003611762625716010262 0ustar #!/usr/bin/make -f %: dh $@ debian/copyright0000644000000000000000000000226011762625763011140 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: POE-Component-Resolver Upstream-Contact: Rocco Caputo Source: http://search.cpan.org/dist/POE-Component-Resolver/ Files: * Copyright: 2011-2012, Rocco Caputo License: Artistic or GPL-1+ Files: debian/* Copyright: 2011-2012, Angel Abad 2011, Ansgar Burchardt 2011, Jonathan Yu 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/patches/0000755000000000000000000000000011754527732010632 5ustar debian/patches/series0000644000000000000000000000003511754527732012045 0ustar disable-internet-tests.patch debian/patches/disable-internet-tests.patch0000644000000000000000000000123011754527732016240 0ustar Description: disable tests requiring networking If networking is down during the name resolution tests, or there is no Internet access available on the build system, the package will fail to build from source. . Thus, we require HAS_INTERNET to be a true value before testing. Author: Jonathan Yu Origin: vendor Forwarded: not-needed --- a/t/01-basic.t +++ b/t/01-basic.t @@ -2,7 +2,13 @@ use warnings; use strict; -use Test::More tests => 4; +use Test::More; + +unless ($ENV{HAS_INTERNET}) { + plan skip_all => 'Set HAS_INTERNET to enable tests requiring Internet'; +} + +plan tests => 4; sub POE::Kernel::ASSERT_DEFAULT () { 1 } debian/watch0000644000000000000000000000021111754527732010226 0ustar version=3 http://search.cpan.org/dist/POE-Component-Resolver/ .*/POE-Component-Resolver-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ debian/source/0000755000000000000000000000000011754527732010503 5ustar debian/source/format0000644000000000000000000000001411762625710011703 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000362311762626110011046 0ustar libpoe-component-resolver-perl (0.920-1) unstable; urgency=low * Imported Upstream version 0.920 -- Angel Abad Sun, 03 Jun 2012 11:20:03 +0200 libpoe-component-resolver-perl (0.918-1) unstable; urgency=low * Imported Upstream version 0.918 * debian/control: Remove libtest-simple-perl from Build-Depends-Indep -- Angel Abad Tue, 15 May 2012 21:48:51 +0200 libpoe-component-resolver-perl (0.916-1) unstable; urgency=low * Email change: Angel Abad -> angel@debian.org * Imported Upstream version 0.916 * Bump Standards-Version to 3.9.3 * debian/copyright: - Update copyright years - Update format to copyright-format 1.0 -- Angel Abad Fri, 16 Mar 2012 12:38:29 +0100 libpoe-component-resolver-perl (0.914-1) unstable; urgency=low * Imported Upstream version 0.914 * debian/control: Add myself to Uploaders * debian/copyright: Update debian/* section -- Angel Abad Sun, 18 Sep 2011 11:58:10 +0200 libpoe-component-resolver-perl (0.913-1) unstable; urgency=low * Team upload. [ Ansgar Burchardt ] * New upstream release. * 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. -- Ansgar Burchardt Sun, 14 Aug 2011 13:09:05 +0200 libpoe-component-resolver-perl (0.912-1) unstable; urgency=low * New upstream release. * Add /me to Uploaders. * Bump debhelper compatibility level to 8. * Set Standards-Version to 3.9.2 (no changes). * Update versioned (build) dependencies as per upstream changes. -- gregor herrmann Tue, 05 Jul 2011 20:18:02 +0200 libpoe-component-resolver-perl (0.911-1) unstable; urgency=low * Initial Release (Closes: #614392) -- Jonathan Yu Mon, 21 Feb 2011 13:43:22 -0500 debian/control0000644000000000000000000000237311762626001010577 0ustar Source: libpoe-component-resolver-perl Section: perl Priority: optional Maintainer: Debian Perl Group Uploaders: Jonathan Yu , gregor herrmann , Angel Abad Build-Depends: debhelper (>= 8) Build-Depends-Indep: libpoe-perl (>= 2:1.3110), libsocket-getaddrinfo-perl, perl Standards-Version: 3.9.3 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libpoe-component-resolver-perl.git Vcs-Git: git://git.debian.org/pkg-perl/packages/libpoe-component-resolver-perl.git Homepage: http://search.cpan.org/dist/POE-Component-Resolver/ Package: libpoe-component-resolver-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, libpoe-perl (>= 2:1.3110), libsocket-getaddrinfo-perl Description: POE Component for domain name resolution POE::Component::Resolver is a Perl module that provides nonblocking domain name resolution by using Socket::GetAddrInfo's getaddrinfo() function in subprocesses where they are permitted to block indefinitely. . By default, it will use a maximum of eight subprocesses and prefer address families in whatever order Socket::GetAddrInfo returns them. These defaults can be overridden with constructor parameters.