r9634 - in /trunk/libemail-mime-creator-perl/debian: ./ changelog compat control copyright rules watch

emhn-guest at users.alioth.debian.org emhn-guest at users.alioth.debian.org
Tue Nov 20 15:33:09 UTC 2007


Author: emhn-guest
Date: Tue Nov 20 15:33:09 2007
New Revision: 9634

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

Added:
    trunk/libemail-mime-creator-perl/debian/
    trunk/libemail-mime-creator-perl/debian/changelog
    trunk/libemail-mime-creator-perl/debian/compat
    trunk/libemail-mime-creator-perl/debian/control
    trunk/libemail-mime-creator-perl/debian/copyright
    trunk/libemail-mime-creator-perl/debian/rules   (with props)
    trunk/libemail-mime-creator-perl/debian/watch

Added: trunk/libemail-mime-creator-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libemail-mime-creator-perl/debian/changelog?rev=9634&op=file
==============================================================================
--- trunk/libemail-mime-creator-perl/debian/changelog (added)
+++ trunk/libemail-mime-creator-perl/debian/changelog Tue Nov 20 15:33:09 2007
@@ -1,0 +1,7 @@
+libemail-mime-creator-perl (1.454-1) unstable; urgency=low
+
+  * Initial Release (Closes: #452117).
+  * Moved package into Debian Pkg Perl Project SVN.
+
+ -- Ernesto Hernández-Novich (USB) <emhn at usb.ve>  Tue, 20 Nov 2007 10:29:56 -0400
+

Added: trunk/libemail-mime-creator-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libemail-mime-creator-perl/debian/compat?rev=9634&op=file
==============================================================================
--- trunk/libemail-mime-creator-perl/debian/compat (added)
+++ trunk/libemail-mime-creator-perl/debian/compat Tue Nov 20 15:33:09 2007
@@ -1,0 +1,1 @@
+5

Added: trunk/libemail-mime-creator-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libemail-mime-creator-perl/debian/control?rev=9634&op=file
==============================================================================
--- trunk/libemail-mime-creator-perl/debian/control (added)
+++ trunk/libemail-mime-creator-perl/debian/control Tue Nov 20 15:33:09 2007
@@ -1,0 +1,27 @@
+Source: libemail-mime-creator-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 5.0.0)
+Build-Depends-Indep: perl (>= 5.8.0), libemail-mime-perl (>= 1.82),
+ libemail-mime-modifier-perl (>= 1.440), libemail-simple-perl (>= 1.92),
+ libemail-simple-creator-perl (>= 1.4), libtest-pod-perl,
+ libtest-pod-coverage-perl
+Maintainer: Debian Pkg Perl <pkg-perl at lists.alioth.debian.org>
+Uploaders: Ernesto Hernández-Novich (USB) <emhn at usb.ve>
+Homepage: http://search.cpan.org/dist/Email-MIME-Creator/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libemail-mime-creator-perl/
+Vcs-Browser:
+ http://svn.debian.org/wsvn/pkg-perl/trunk/libemail-mime-creator-perl/
+Standards-Version: 3.7.2
+
+Package: libemail-mime-creator-perl
+Architecture: all
+Depends: ${perl:Depends}, libemail-mime-perl (>= 1.82),
+ libemail-mime-modifier-perl (>= 1.440), libemail-simple-perl (>= 1.92),
+ libemail-simple-creator-perl (>= 1.4)
+Description: Simple Email::MIME mail message creation
+ Email::MIME::Creator is a Perl module providing simple creation of
+ single and multipart e-mail messages based on Email::MIME, with
+ automatic inclusion of attachments as valid MIME objects.
+ .
+ This module belongs to the Perl Email Project (http://emailproject.perl.org/)

Added: trunk/libemail-mime-creator-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libemail-mime-creator-perl/debian/copyright?rev=9634&op=file
==============================================================================
--- trunk/libemail-mime-creator-perl/debian/copyright (added)
+++ trunk/libemail-mime-creator-perl/debian/copyright Tue Nov 20 15:33:09 2007
@@ -1,0 +1,22 @@
+This package was debianized by Ernesto Hernández-Novich (USB) <emhn at usb.ve>
+on Tue, 20 Nov 2007 10:30:57 -0400
+
+It was downloaded from http://search.cpan.org/dist/Email-MIME-Creator/
+
+Upstream Authors: 
+
+Casey West <casey at geeknest.com>
+
+Copyright:
+
+Copyright (c) 2004 Casey West.  All rights reserved.
+
+This program 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.
+
+The complete text of the GNU General Public License can be found in
+/usr/share/common-licenses/GPL and the Artistic License can be found
+in /usr/share/common-licenses/Artistic.

Added: trunk/libemail-mime-creator-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libemail-mime-creator-perl/debian/rules?rev=9634&op=file
==============================================================================
--- trunk/libemail-mime-creator-perl/debian/rules (added)
+++ trunk/libemail-mime-creator-perl/debian/rules Tue Nov 20 15:33:09 2007
@@ -1,0 +1,65 @@
+#!/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
+
+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 build-stamp
+
+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
+	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_installdocs README
+	dh_installchangelogs Changes
+	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

Propchange: trunk/libemail-mime-creator-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libemail-mime-creator-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libemail-mime-creator-perl/debian/watch?rev=9634&op=file
==============================================================================
--- trunk/libemail-mime-creator-perl/debian/watch (added)
+++ trunk/libemail-mime-creator-perl/debian/watch Tue Nov 20 15:33:09 2007
@@ -1,0 +1,2 @@
+version=3
+http://www.cpan.org/modules/by-module/Email/Email-MIME-Creator-([\d\.]+)\.(?:tar\.gz|tar|tgz)




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