--- libmail-verify-perl-0.02.orig/debian/changelog +++ libmail-verify-perl-0.02/debian/changelog @@ -0,0 +1,48 @@ +libmail-verify-perl (0.02-5.1) unstable; urgency=medium + + * Non-maintainer upload + * Bump debhelper compat level. Closes: #817540 + + -- Christoph Biedl Sat, 17 Dec 2016 14:09:15 +0100 + +libmail-verify-perl (0.02-5) unstable; urgency=low + + * Only try to delete $(TMP)/usr/lib/perl5 if its + really there (Closes: #467807) + * Update standards version. (No changes) + * Don't ignore errors from make distclean + * Add watch file + * Move debhelper to Build-Depends + + -- Alexander Wirt Tue, 26 Feb 2008 23:10:29 +0100 + +libmail-verify-perl (0.02-4) unstable; urgency=low + + * New Maintainer + + -- Alexander Wirt Mon, 3 Oct 2005 16:43:38 +0200 + +libmail-verify-perl (0.02-3) unstable; urgency=low + + * debian/control: + + Calling make test needs the dependencies in the build-depends. (Closes: + #247587) + + -- Marc 'HE' Brockschmidt Thu, 6 May 2004 00:30:40 +0200 + +libmail-verify-perl (0.02-2) unstable; urgency=low + + * debian/control: + - *argh* Net::DNS is in libnet-dns-perl, not in libnet-perl. (Closes: + #247341) + - I'm a DD. + * debian/rules: Used one of my standard ones. + + -- Marc 'HE' Brockschmidt Tue, 4 May 2004 18:44:49 +0200 + +libmail-verify-perl (0.02-1) unstable; urgency=low + + * Initial Release. (Closes: #210172) + + -- Marc Brockschmidt Wed, 10 Sep 2003 01:27:23 +0200 + --- libmail-verify-perl-0.02.orig/debian/compat +++ libmail-verify-perl-0.02/debian/compat @@ -0,0 +1 @@ +10 --- libmail-verify-perl-0.02.orig/debian/control +++ libmail-verify-perl-0.02/debian/control @@ -0,0 +1,18 @@ +Source: libmail-verify-perl +Section: perl +Priority: optional +Build-Depends-Indep: perl (>= 5.8.0-7), libnet-dns-perl +Build-Depends: debhelper (>= 10~) +Maintainer: Alexander Wirt +Standards-Version: 3.7.3 + +Package: libmail-verify-perl +Architecture: all +Depends: ${perl:Depends}, libnet-dns-perl +Description: Utility to verify an email address + Mail::Verify provides a function CheckAddress function for verifying + email addresses. First the syntax of the email address is checked, then + it verifies that there is at least one valid MX server accepting email + for the domain. Using Net::DNS and IO::Socket a list of MX records (or, + falling back on a hosts A record) are checked to make sure at least one + SMTP server is accepting connections. --- libmail-verify-perl-0.02.orig/debian/copyright +++ libmail-verify-perl-0.02/debian/copyright @@ -0,0 +1,16 @@ +This is the debian package for the Mail::Verify module. +It was created by Marc Brockschmidt . + +The sources were downloaded from CPAN. + +The upstream author is: Pete Fritchman + +Copyright (c) 2001 Pete Fritchman . + +This library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself (GPL or Artistic license). + +On Debian systems the complete text of the GPL and Artistic +licenses can be found at: + /usr/share/common-licenses/GPL and + /usr/share/common-licenses/Artistic --- libmail-verify-perl-0.02.orig/debian/rules +++ libmail-verify-perl-0.02/debian/rules @@ -0,0 +1,77 @@ +#!/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. + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +# Allow disabling build optimation by setting noopt in +# $DEB_BUILD_OPTIONS +CFLAGS = -Wall -g +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +build: build-stamp +build-stamp: + dh_testdir + + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="$(CFLAGS)" + + touch build-stamp + +clean: + dh_testdir + dh_testroot + [ ! -f Makefile ] || $(MAKE) distclean + dh_clean build-stamp install-stamp + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + + $(MAKE) test + $(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 $(TMP)/usr/lib/perl5 + + touch install-stamp + +binary-arch: +# We have nothing to do by default. + +binary-indep: build install + dh_testdir + dh_testroot + dh_perl + dh_installdocs + dh_installchangelogs ChangeLog + dh_link + dh_strip + 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 --- libmail-verify-perl-0.02.orig/debian/watch +++ libmail-verify-perl-0.02/debian/watch @@ -0,0 +1,2 @@ +version=2 +http://www.cpan.org/modules/by-module/Mail/Mail-Verify-(.*)(.tar.gz|.tar|.tgz)