--- libpoe-component-client-ident-perl-1.07.orig/Makefile.PL +++ libpoe-component-client-ident-perl-1.07/Makefile.PL @@ -3,8 +3,6 @@ author 'Chris Williams '; license 'perl'; version_from 'lib/POE/Component/Client/Ident.pm'; -abstract_from 'lib/POE/Component/Client/Ident.pm'; -build_requires 'Test::More' => 0.47; requires 'warnings' => 0; requires 'POE' => 0.06_07; requires 'Carp' => 0; --- libpoe-component-client-ident-perl-1.07.orig/debian/changelog +++ libpoe-component-client-ident-perl-1.07/debian/changelog @@ -0,0 +1,86 @@ +libpoe-component-client-ident-perl (1.07-2.3) unstable; urgency=medium + + * Non maintainer upload by the Reproducible Builds team. + * No source change upload to rebuild on buildd with .buildinfo files. + + -- Holger Levsen Fri, 08 Jan 2021 15:48:57 +0100 + +libpoe-component-client-ident-perl (1.07-2.2) unstable; urgency=medium + + * Non-maintainer upload. + * Fix "FTBFS with '.' removed from perl's @INC": + call perl with "-I." in debian/rules. + (Closes: #834348) + + -- gregor herrmann Sun, 21 Aug 2016 20:50:52 +0200 + +libpoe-component-client-ident-perl (1.07-2.1) unstable; urgency=medium + + * Non-maintainer upload. + * Fix "FTBFS with perl 5.22 in experimental (MakeMaker changes)": + use DESTDIR instead of PREFIX in debian/rules. + (Closes: #795611) + + -- gregor herrmann Wed, 26 Aug 2015 17:54:21 +0200 + +libpoe-component-client-ident-perl (1.07-2) unstable; urgency=low + + * Fix failure to build with perl 5.10 + + -- Don Armstrong Mon, 18 Feb 2008 12:58:45 -0800 + +libpoe-component-client-ident-perl (1.07-1) unstable; urgency=low + + * New upstream release + + -- Don Armstrong Tue, 18 Dec 2007 16:37:47 -0800 + +libpoe-component-client-ident-perl (1.06-1) unstable; urgency=low + + * New upstream release + + -- Don Armstrong Mon, 20 Aug 2007 21:35:26 -0700 + +libpoe-component-client-ident-perl (1.05-1) unstable; urgency=low + + * New upstream release + + -- Don Armstrong Sun, 20 May 2007 05:53:01 -0700 + +libpoe-component-client-ident-perl (1.04-1) unstable; urgency=low + + * New upstream release + + -- Don Armstrong Wed, 24 Jan 2007 16:49:31 -0800 + +libpoe-component-client-ident-perl (1.02-1) unstable; urgency=low + + * New upstream release + + -- Don Armstrong Wed, 13 Sep 2006 18:30:11 -0700 + +libpoe-component-client-ident-perl (1.01-1) unstable; urgency=low + + * New upstream release + + -- Don Armstrong Fri, 26 May 2006 14:42:03 -0700 + +libpoe-component-client-ident-perl (1.00-1) unstable; urgency=low + + * New upstream release + * Use debhelper 5 and compatibility level 5 + * Upgrade to policy 3.7, no changes required + + -- Don Armstrong Fri, 28 Apr 2006 13:13:43 -0700 + +libpoe-component-client-ident-perl (0.8-2) unstable; urgency=low + + * Add Build-Depends (and Depends) on netbase. (Closes: #357767) + + -- Don Armstrong Sun, 19 Mar 2006 15:00:39 -0800 + +libpoe-component-client-ident-perl (0.8-1) unstable; urgency=low + + * Initial packaging (Closes: #344903) + + -- Don Armstrong Tue, 27 Dec 2005 05:45:34 -0800 --- libpoe-component-client-ident-perl-1.07.orig/debian/compat +++ libpoe-component-client-ident-perl-1.07/debian/compat @@ -0,0 +1 @@ +5 --- libpoe-component-client-ident-perl-1.07.orig/debian/control +++ libpoe-component-client-ident-perl-1.07/debian/control @@ -0,0 +1,17 @@ +Source: libpoe-component-client-ident-perl +Maintainer: Don Armstrong +Priority: optional +Section: perl +Build-Depends: debhelper (>= 5) +Build-Depends-Indep: perl (>= 5.6.0-17), libpoe-perl, netbase +Standards-Version: 3.7.2 + +Package: libpoe-component-client-ident-perl +Architecture: all +Priority: extra +Section: perl +Depends: ${perl:Depends}, libpoe-perl, netbase +Description: a POE component that provides non-blocking ident lookups + POE::Component::Client::Ident is a POE component that provides + non-blocking ident lookup services to other POE components and + sessions. --- libpoe-component-client-ident-perl-1.07.orig/debian/copyright +++ libpoe-component-client-ident-perl-1.07/debian/copyright @@ -0,0 +1,15 @@ +Authors: Chris Williams +Webpage: http://search.cpan.org/~bingos/POE-Component-Client-Ident-0.8/ +Download: http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/ + +Debianized: Don Armstrong on Tuesday, December 27, 2005 5:47:45 PST + +Copyright: Author: Chris "BinGOs" Williams + + This module may be used, modified, and distributed under + the same terms as Perl itself. Please see the license that + came with your Perl distribution for details. + + + +License: GPL or Artistic. Available at /usr/share/common-licenses/{GPL,Artistic} --- libpoe-component-client-ident-perl-1.07.orig/debian/rules +++ libpoe-component-client-ident-perl-1.07/debian/rules @@ -0,0 +1,84 @@ +#!/usr/bin/make -f + +PERL ?= /usr/bin/perl + +DEST_DIR := $(shell pwd)/debian/libpoe-component-client-ident-perl + +patch: patch-stamp +patch-stamp: + dh_testdir + + if [ -e debian/patches ]; then \ + for a in `ls debian/patches/*.diff`; do \ + patch -f -p0 < $$a; \ + done; \ + fi; + + rm -f unpatch-stamp; + touch $@ + +unpatch: unpatch-stamp +unpatch-stamp: + dh_testdir + + if [ -e debian/patches ]; then \ + for a in `ls debian/patches/*.diff`; do \ + patch -f -p0 -R < $$a; \ + done; \ + fi; + + rm -f patch-stamp + touch $@ + + +binary: binary-indep binary-arch + +binary-arch: build install + + +binary-indep: binary-indep-stamp +binary-indep-stamp: install + dh_testdir + dh_testroot + dh_installdocs README + dh_installchangelogs Changes + dh_fixperms + dh_installdeb + dh_perl + dh_compress + dh_gencontrol + dh_md5sums + dh_builddeb + touch $@ + +build: build-stamp +build-stamp: + dh_testdir + $(PERL) -I. Makefile.PL INSTALLDIRS=vendor + $(MAKE) + $(MAKE) test + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f *-stamp + if [ -e Makefile ]; then \ + $(MAKE) -i distclean;\ + fi + dh_clean + + +install: install-stamp +install-stamp: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install DESTDIR=$(DEST_DIR) + [ ! -d $(DEST_DIR)/usr/lib/perl5 ] || \ + rmdir --ignore-fail-on-non-empty --parents $(DEST_DIR)/usr/lib/perl5 + touch install-stamp + +.PHONY: binary binary-arch binary-indep clean install --- libpoe-component-client-ident-perl-1.07.orig/debian/watch +++ libpoe-component-client-ident-perl-1.07/debian/watch @@ -0,0 +1,4 @@ +# format version number, currently 2; this line is compulsory! +version=2 + +http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/POE-Component-Client-Ident-(.+)\.tar\.gz