r18138 - in /trunk/libnet-smtp-ssl-perl/debian: ./ changelog compat control copyright rules watch

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sat Mar 29 23:03:24 UTC 2008


Author: gregoa-guest
Date: Sat Mar 29 23:03:23 2008
New Revision: 18138

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=18138
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/libnet-smtp-ssl-perl/debian/
    trunk/libnet-smtp-ssl-perl/debian/changelog
    trunk/libnet-smtp-ssl-perl/debian/compat
    trunk/libnet-smtp-ssl-perl/debian/control
    trunk/libnet-smtp-ssl-perl/debian/copyright
    trunk/libnet-smtp-ssl-perl/debian/rules   (with props)
    trunk/libnet-smtp-ssl-perl/debian/watch

Added: trunk/libnet-smtp-ssl-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-smtp-ssl-perl/debian/changelog?rev=18138&op=file
==============================================================================
--- trunk/libnet-smtp-ssl-perl/debian/changelog (added)
+++ trunk/libnet-smtp-ssl-perl/debian/changelog Sat Mar 29 23:03:23 2008
@@ -1,0 +1,5 @@
+libnet-smtp-ssl-perl (1.01-1) unstable; urgency=low
+
+  * Initial release (closes: #473303).
+
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Sat, 29 Mar 2008 23:53:17 +0100

Added: trunk/libnet-smtp-ssl-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-smtp-ssl-perl/debian/compat?rev=18138&op=file
==============================================================================
--- trunk/libnet-smtp-ssl-perl/debian/compat (added)
+++ trunk/libnet-smtp-ssl-perl/debian/compat Sat Mar 29 23:03:23 2008
@@ -1,0 +1,1 @@
+5

Added: trunk/libnet-smtp-ssl-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-smtp-ssl-perl/debian/control?rev=18138&op=file
==============================================================================
--- trunk/libnet-smtp-ssl-perl/debian/control (added)
+++ trunk/libnet-smtp-ssl-perl/debian/control Sat Mar 29 23:03:23 2008
@@ -1,0 +1,21 @@
+Source: libnet-smtp-ssl-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: perl (>= 5.8.8-11.1+lenny1), libio-socket-ssl-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: gregor herrmann <gregor+debian at comodo.priv.at>
+Standards-Version: 3.7.3
+Homepage: http://search.cpan.org/dist/Net-SMTP-SSL/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnet-smtp-ssl-perl/
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-smtp-ssl-perl/
+
+Package: libnet-smtp-ssl-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libio-socket-ssl-perl
+Description:  SSL support for Net::SMTP
+ Implements the same API as Net::SMTP, but uses IO::Socket::SSL for its
+ network operations. Due to the nature of Net::SMTP's new method, it is not
+ overridden to make use of a default port for the SMTPS service. Perhaps
+ future versions will be smart like that. Port 465 is usually what you want,
+ and it's not a pain to specify that.

Added: trunk/libnet-smtp-ssl-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-smtp-ssl-perl/debian/copyright?rev=18138&op=file
==============================================================================
--- trunk/libnet-smtp-ssl-perl/debian/copyright (added)
+++ trunk/libnet-smtp-ssl-perl/debian/copyright Sat Mar 29 23:03:23 2008
@@ -1,0 +1,19 @@
+Upstream source URL: http://search.cpan.org/dist/Net-SMTP-SSL/
+
+Upstream author: Casey West, <casey at geeknest.com>
+
+Files: *
+Copyright: (C) 2004 Casey West.  All rights reserved.
+License: GPL-1+ | Artistic
+ This module 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'.
+
+Files: debian/*
+Copyright: (C) 2008, Debian Perl Group
+License: GPL-1+ | Artistic
+ The packaging is licensed under the same terms as the module itself.

Added: trunk/libnet-smtp-ssl-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-smtp-ssl-perl/debian/rules?rev=18138&op=file
==============================================================================
--- trunk/libnet-smtp-ssl-perl/debian/rules (added)
+++ trunk/libnet-smtp-ssl-perl/debian/rules Sat Mar 29 23:03:23 2008
@@ -1,0 +1,63 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> 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
+
+PERL   ?= /usr/bin/perl
+PACKAGE = $(shell dh_listpackages)
+TMP     = $(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE)
+	$(MAKE) test
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	dh_clean build-stamp install-stamp
+	# Add commands to clean up after the build process here
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	# Add commands to install the package into $(TMP) here
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	[ ! -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 here for an architecture-independent package
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_installchangelogs Changes
+	dh_perl
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install

Propchange: trunk/libnet-smtp-ssl-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libnet-smtp-ssl-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-smtp-ssl-perl/debian/watch?rev=18138&op=file
==============================================================================
--- trunk/libnet-smtp-ssl-perl/debian/watch (added)
+++ trunk/libnet-smtp-ssl-perl/debian/watch Sat Mar 29 23:03:23 2008
@@ -1,0 +1,4 @@
+# format version number, currently 3; this line is compulsory!
+version=3
+# URL to the package page followed by a regex to search
+http://search.cpan.org/dist/Net-SMTP-SSL/   .*/Net-SMTP-SSL-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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