--- libnet-rblclient-perl-0.5.orig/debian/control +++ libnet-rblclient-perl-0.5/debian/control @@ -0,0 +1,26 @@ +Source: libnet-rblclient-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5.0.0) +Build-Depends-Indep: perl (>= 5.8.0-7), libnet-dns-perl +Maintainer: Debian Perl Group +Uploaders: gregor herrmann , + Rene Mayorga +Standards-Version: 3.7.3 +Homepage: http://wildspark.com/Net-RBLClient/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnet-rblclient-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-rblclient-perl/ + +Package: libnet-rblclient-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libnet-dns-perl +Description: Queries multiple Realtime Blackhole Lists in parallel + This module is used to discover what RBL's are listing a particular IP + address. It parallelizes requests for fast response. + . + An RBL, or Realtime Blackhole List, is a list of IP addresses meeting some + criteria such as involvement in Unsolicited Bulk Email. Each RBL has + its own criteria for addition and removal of addresses. If you want to + block email or other traffic to/from your network based on one or more + RBLs, you should carefully study the behavior of those RBLs before and + during such blocking. --- libnet-rblclient-perl-0.5.orig/debian/compat +++ libnet-rblclient-perl-0.5/debian/compat @@ -0,0 +1 @@ +5 --- libnet-rblclient-perl-0.5.orig/debian/watch +++ libnet-rblclient-perl-0.5/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Net-RBLClient/ .*/Net-RBLClient-([[:digit:]].*)\.tar\.gz --- libnet-rblclient-perl-0.5.orig/debian/changelog +++ libnet-rblclient-perl-0.5/debian/changelog @@ -0,0 +1,34 @@ +libnet-rblclient-perl (0.5-2) unstable; urgency=low + + [ gregor herrmann ] + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Removed: + Homepage pseudo-field (Description); XS-Vcs-Svn fields. + * debian/watch: use dist-based URL. + * debian/rules: delete /usr/lib/perl5 only if it exists. (Closes: #467867) + + [ Rene Mayorga ] + * debian/control + + Set standards-version to 3.7.3 ( No changes needed ) + + Add myself to uploaders + * debian/rules + + Remove OPTIMIZE, this package is arch:all + + use $@ when touching -stamp files + + Move test suite from install to build target + + let install-stamp depends on build-stamp + + remove unused dh_ calls + + -- Rene Mayorga Tue, 04 Mar 2008 15:35:05 -0600 + +libnet-rblclient-perl (0.5-1) unstable; urgency=low + + * New upstream release. + + -- gregor herrmann Mon, 10 Jul 2006 17:03:43 +0200 + +libnet-rblclient-perl (0.2-1) unstable; urgency=low + + * Initial release (cf. #359073). + + -- gregor herrmann Sun, 9 Jul 2006 23:13:39 +0200 + --- libnet-rblclient-perl-0.5.orig/debian/copyright +++ libnet-rblclient-perl-0.5/debian/copyright @@ -0,0 +1,16 @@ +This is the debian package for the Net::RBLClient module. +It was created by gregor herrmann using dh-make-perl. +The source tarball was downloaded from http://wildspark.com/Net-RBLClient/. + +Author: +Asher Blum . + +Copyright/License: +Copyright (C) 2002 Asher Blum. All rights reserved. +This code is free software; you can redistribute it and/or modify it under +the same terms as Perl itself. + +Perl is distributed under your choice of the GNU General Public License or +the Artistic License. On Debian GNU/Linux systems, the complete text of the +GNU General Public License can be found in `/usr/share/common-licenses/GPL' +and the Artistic Licence in `/usr/share/common-licenses/Artistic'. --- libnet-rblclient-perl-0.5.orig/debian/rules +++ libnet-rblclient-perl-0.5/debian/rules @@ -0,0 +1,68 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# If set to a true value then MakeMaker's prompt function will +# always return the default without waiting for user input. +export PERL_MM_USE_DEFAULT=1 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + $(MAKE) test + touch $@ + +clean: + dh_testdir + dh_testroot + dh_clean build-stamp install-stamp + [ ! -f Makefile ] || $(MAKE) realclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + # As this is a architecture independent package, we are not + # supposed to install stuff to /usr/lib. MakeMaker creates + # the dirs, we delete them from the deb: + [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5 + touch $@ + +binary-arch: +# We have nothing to do by default. + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs + dh_perl + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary