[libnet-smtpauth-perl] 01/01: Imported Debian patch 0.08-3

gregor herrmann gregoa at debian.org
Sun Jan 12 16:11:44 UTC 2014


This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libnet-smtpauth-perl.

commit 05265a98649a465e594ef1f6f9a0e2fa2e586e44
Author: Nacho Barrientos Arias <nacho at debian.org>
Date:   Sun Dec 29 21:47:32 2013 +0000

    Imported Debian patch 0.08-3
---
 debian/changelog                     | 24 ++++++++++++++++
 debian/compat                        |  1 +
 debian/control                       | 19 +++++++++++++
 debian/copyright                     | 42 +++++++++++++++++++++++++++
 debian/docs                          |  1 +
 debian/libnet-smtpauth-perl.examples |  1 +
 debian/rules                         | 55 ++++++++++++++++++++++++++++++++++++
 debian/watch                         |  2 ++
 8 files changed, 145 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..6f23d5a
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,24 @@
+libnet-smtpauth-perl (0.08-3) unstable; urgency=low
+
+  * Orphaned. Set maintainer to Debian QA Group.
+
+ -- Nacho Barrientos Arias <nacho at debian.org>  Sun, 29 Dec 2013 21:47:32 +0000
+
+libnet-smtpauth-perl (0.08-2) unstable; urgency=low
+
+  * Little maintenance release
+  * debian/control
+   + Bumping standards version to 3.7.3.
+   + Moving the Homepage information to the right place.
+   + New maintainer's email address.
+  * debian/watch
+   + Improved.
+
+ -- Nacho Barrientos Arias <nacho at debian.org>  Sun, 09 Mar 2008 11:02:13 +0100
+
+libnet-smtpauth-perl (0.08-1) unstable; urgency=low
+
+  * Initial release (Closes: #366359).
+
+ -- Nacho Barrientos Arias <chipi at criptonita.com>  Sun,  7 May 2006 22:59:36 +0200
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..5008657
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,19 @@
+Source: libnet-smtpauth-perl
+Section: perl
+Priority: optional
+Maintainer: Debian QA Group <packages at qa.debian.org>
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: perl (>= 5.8)
+Standards-Version: 3.7.3
+Homepage: http://search.cpan.org/dist/Net-SMTP_auth/
+
+Package: libnet-smtpauth-perl
+Architecture: all
+Depends: ${perl:Depends}, libdigest-hmac-perl, libauthen-sasl-perl
+Description: Perl module that provides SMTP authentication (Net::SMTP_auth)
+ This module implements a client interface to the SMTP and ESMTP protocol 
+ AUTH service extension, enabling a perl5 application to talk to and 
+ authenticate against SMTP servers.
+ .
+ This module supplies a more powerful environment than Net::SMTP (provided
+ by perl-modules). 
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..9b7ec0c
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,42 @@
+This package was debianized by Nacho Barrientos Arias 
+<chipi at criptonita.com> on Sun,  7 May 2006 22:59:36 +0200.
+
+Copyright (c) 2001, 2003, 2006-2008 zeitform Internet Dienste
+
+It was downloaded from the Comprehensive Perl Archive Network (CPAN).
+Visit <http://www.perl.com/CPAN/> to find a CPAN site near you.
+
+Upstream Author: Alex Pleiner <alex at zeitform.de>
+
+License:
+
+This program is free software; you can redistribute it and/or
+modify it under the same terms as Perl itself.
+
+GPL:
+
+ 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 2
+ of the License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ with Debian GNU/Linux (see /usr/share/common-licenses/), if not
+ write to the Free Software Foundation, Inc., 51 Franklin St,
+ Fifth Floor, Boston, MA  02110-1301 USA
+
+Artistic:
+
+ http://www.perl.com/language/misc/Artistic.html
+
+ On Debian GNU/Linux systems, you can get extra information in 
+ `/usr/share/common-licenses/Artistic'.
+
+The Debian packaging is (C) 2006-2008, 
+  - Nacho Barrientos Arias <nacho at debian.org>
+and is licensed under the GPL, see above.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..e845566
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README
diff --git a/debian/libnet-smtpauth-perl.examples b/debian/libnet-smtpauth-perl.examples
new file mode 100644
index 0000000..f0e323e
--- /dev/null
+++ b/debian/libnet-smtpauth-perl.examples
@@ -0,0 +1 @@
+eg/smtp-tester.pl
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..d856a33
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,55 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+PACKAGE = $(shell dh_listpackages)
+
+ifndef PERL
+PERL = $(shell which perl)
+endif
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	touch configure-stamp
+
+build: build-stamp
+
+build-stamp: configure-stamp 
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor DESTDIR=$(CURDIR)/debian/$(PACKAGE)
+	$(MAKE) OPTIMIZE="-O2 -g -Wall"
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+	[ ! -f Makefile ] || $(MAKE) realclean
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+	$(MAKE) install
+	rm -rf $(CURDIR)/debian/$(PACKAGE)/usr/lib
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs Changes
+	dh_installdocs
+	dh_installexamples
+	dh_compress
+	dh_fixperms
+	dh_perl
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary-arch: build install
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..3c5c9b1
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Net-SMTP_auth/ .*/Net-SMTP_auth-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libnet-smtpauth-perl.git



More information about the Pkg-perl-cvs-commits mailing list