debian/0000755000000000000000000000000011407751344007174 5ustar debian/control0000644000000000000000000000201211407750610010565 0ustar Source: libnet-ident-perl Section: perl Priority: optional Build-Depends: debhelper (>= 7) Build-Depends-Indep: perl Maintainer: Debian Perl Group Uploaders: Gunnar Wolf , Chris Butler , gregor herrmann Standards-Version: 3.8.4 Homepage: http://search.cpan.org/dist/Net-Ident/ Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnet-ident-perl/ Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libnet-ident-perl/ Package: libnet-ident-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends} Description: Perl module to lookup the username on the remote end of a TCP/IP connection Net::Ident is a Perl module implementing the RFC1413 Identification Protocol, also known as "ident". . It provides both a simple interface for doing one ident lookup at a time, and an asynchronous interface to perform (possibly) many simultaneous lookups, or simply continue serving other things while the lookup is proceeding. debian/copyright0000644000000000000000000000236711407750567011145 0ustar Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135 Maintainer: Jan-Pieter Cornet Source: http://search.cpan.org/dist/Net-Ident/ Name: Net-Ident Files: * Copyright: 1995, 1997, 1999 Jan-Pieter Cornet License: Artistic or GPL-1+ Files: debian/* Copyright: 2002, Matt Hope 2005, Don Armstrong 2006, Gunnar Wolf 2006, Michael Ablassmeier 2008, 2010, gregor herrmann 2010, Chris Butler 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 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' debian/watch0000644000000000000000000000015511212456175010224 0ustar version=3 http://search.cpan.org/dist/Net-Ident/ .*/Net-Ident-v?(\d[\d.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) debian/patches/0000755000000000000000000000000011407751304010617 5ustar debian/patches/export-hooks.patch0000644000000000000000000000332511407750410014302 0ustar Description: Fix _export_hooks called to early to check prototype message. Bug-Debian: http://bugs.debian.org/320137 Forwarded: no Author: Don Armstrong Origin: vendor Reviewed-by: gregor herrmann Last-Update: 2010-06-21 --- a/Ident.pm +++ b/Ident.pm @@ -24,7 +24,7 @@ ); # provide import magic -sub _export_hooks () { +sub _export_hooks { my($tag, $hook); while ( ($tag, $hook) = each %EXPORT_HOOKS ) { my $hookname = "_export_hook_$tag"; # pseudo-function name @@ -38,7 +38,7 @@ # put the export hooks in the standard Exporter structures _export_hooks(); # for compatibility mode, uncomment the next line @@ s/^#\s*// @@ -# @EXPORT = qw(_export_hook_fh); +@EXPORT = qw(_export_hook_fh); $VERSION = "1.23"; @@ -681,18 +681,18 @@ # add a paragraph about compatibility mode if appropriate. The non-breaking # spaces are to force a new paragraph. # @@12 s/^#// @@ -# -#=pod -# -#S< > -# -#Adding the B method to the B class used to be -#automatic in previous version of B. During the installation -#of this B package, the system administrator choose to install -#it in a compatible way, meaning that on this machine, the B -#method is automatically added if you use just C -# -#=cut + +=pod + +S< > + +Adding the B method to the B class used to be +automatic in previous version of B. During the installation +of this B package, the system administrator choose to install +it in a compatible way, meaning that on this machine, the B +method is automatically added if you use just C + +=cut # end of extra paragraph =pod debian/patches/spelling.patch0000644000000000000000000000161111407751175013462 0ustar Description: fix spelling mistakes in POD Origin: vendor Forwarded: no Author: gregor herrmann Last-Update: 2010-06-21 --- a/Ident.pm +++ b/Ident.pm @@ -836,7 +836,7 @@ method, wich will return the error message. The timeout is I implemented using C. In fact you can -use C completely independant of this library, they do not +use C completely independent of this library, they do not interfere. =item C @@ -846,7 +846,7 @@ =item C -This object method queries the remote rfc931 deamon, and blocks until +This object method queries the remote rfc931 daemon, and blocks until the connection to the ident daemon is writable, if necessary (but you are supposed to make sure it is, of course). Returns true on success (or rather it returns the I<$obj> itself), or undef on error. debian/patches/makefile_mod-perl.patch0000644000000000000000000000075611407750366015233 0ustar Description: Makefile.PL; no longer interactive when mod_perl is installed Forwarded: no Author: Matt Hope Reviewed-by: gregor herrmann Origin: vendor Last-Update: 2010-06-21 --- a/Makefile.PL +++ b/Makefile.PL @@ -150,6 +150,7 @@ sub install_compat () { # initial checks to see if apache is possible at all sub check_initial_apache ($) { + return; my $apinfo = shift; print "\nChecking for Apache.pm... "; eval { require Apache }; debian/patches/series0000644000000000000000000000007211407751064012036 0ustar export-hooks.patch makefile_mod-perl.patch spelling.patch debian/compat0000644000000000000000000000000211405437744010375 0ustar 7 debian/changelog0000644000000000000000000001036211407751265011052 0ustar libnet-ident-perl (1.23-1) unstable; urgency=low * New upstream release. * Remove patch fix-errno-hash-readonly-error, applied upstream. * Add new patch spelling.patch (fixes spelling mistakes in documentation). * Refresh patch export-hooks.patch. Refresh DEP3 patch headers for both remaining patches. * Add /me to Uploaders. -- gregor herrmann Mon, 21 Jun 2010 22:59:31 +0200 libnet-ident-perl (1.22-1) unstable; urgency=low [ gregor herrmann ] * Refresh debian/rules, no functional changes. * Split out changes to upstream code into patches; add quilt framework. * Add debian/README.source to document quilt usage, as required by Debian Policy since 3.8.0. * debian/control: Changed: Switched Vcs-Browser field to ViewSVN (source stanza). * debian/control: Added: ${misc:Depends} to Depends: field. [ Nathan Handler ] * debian/watch: Update to ignore development releases. [ Chris Butler ] * New upstream release * Refreshed packaging using minimal dh7 rules file. * Updated debian/copyright to DEP-5 format. * Switched to source format 3.0 (quilt), removed quilt framework. * Improved package description. * Refreshed export-hooks patch. * Upped standards-version to 3.8.4 (no changes). * Added fix-errno-hash-readonly-error patch, fixing an error caused by attempting to modify %! (a read-only tied hash). -- Chris Butler Sun, 13 Jun 2010 17:58:05 +0100 libnet-ident-perl (1.20-5) unstable; urgency=low [ Damyan Ivanov ] * [debian/watch] Stop capturing file extension [ gregor herrmann ] * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser field (source stanza); Homepage field (source stanza). Removed: XS- Vcs-Svn fields. * debian/rules: - delete /usr/lib/perl5 only if it exists (closes: #467877) - remove OPTIMIZE, this package is arch:all - move dh_clean before make realclean and use it for removing stamp files - don't install README any more, just a short version of the POD documentation - use DESTDIR and PREFIX for make install - create install-stamp target - remove unneeded dh_* calls * debian/watch: use dist-based URL. * Set Standards-Version to 3.7.3 (no changes). * debian/copyright: use version-agnostic download URL; mention "Copyright" in the line containing years and holder of copyright. * Add TODO.Debian to the task list what should be done after the perl 5.10 transition. -- gregor herrmann Mon, 03 Mar 2008 21:08:41 +0100 libnet-ident-perl (1.20-4) unstable; urgency=low * Adopted by the Debian pkg-perl team (Closes: #400364) * Raised debhelper version to 5.0, standards-version to 3.7.2.2 * Modified debian/watch, so it does no longer depend on the author name staying the same * No longer ignores the result of "make realclean" in the clean target -- Gunnar Wolf Thu, 28 Dec 2006 12:34:00 -0600 libnet-ident-perl (1.20-3) unstable; urgency=low * QA upload. (ACK NMU; Closes: #320137) * Set maintainer to QA Group; Orphaned: #400364 * Move debhelper to Build-Depends * Bump compat level to 4, depend on at least dh 4.0.0 * Set section to Perl (override disparity) * Conforms with latest Standards Version 3.7.2 -- Michael Ablassmeier Mon, 11 Dec 2006 08:46:05 +0100 libnet-ident-perl (1.20-2.1) unstable; urgency=low * NMU * Rebuild the package to get rid of the /usr/doc symlink (Closes: #337708) * Fix _export_hooks called to early to check prototype message. Thanks to Alexander Achenbach for the patch which was modified before being used. (Closes: #320137) * Kill useless /usr/lib/perl5 directory -- Don Armstrong Tue, 27 Dec 2005 05:19:42 -0800 libnet-ident-perl (1.20-2) unstable; urgency=low * debian/rules; Ignore build-target `build-arch', build in `build-indep' (Closes: Bug#157493) * Makefile.PL; no longer interactive when mod_perl is installed * debian/watch; Changed format for new CPAN webpages. -- Matt Hope Wed, 21 Aug 2002 21:28:33 +1000 libnet-ident-perl (1.20-1) unstable; urgency=low * Initial Release. (Closes: Bug#137326 ITP) -- Matt Hope Fri, 8 Mar 2002 20:13:05 +1100 debian/source/0000755000000000000000000000000011407751304010470 5ustar debian/source/format0000644000000000000000000000001411405437741011702 0ustar 3.0 (quilt) debian/rules0000755000000000000000000000003611405437744010256 0ustar #!/usr/bin/make -f %: dh $@