r3451 - in /packages/libemail-simple-creator-perl/trunk/debian: ./ changelog compat control copyright rules watch

pabs-guest at users.alioth.debian.org pabs-guest at users.alioth.debian.org
Sat Aug 12 08:19:17 UTC 2006


Author: pabs-guest
Date: Sat Aug 12 08:19:16 2006
New Revision: 3451

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=3451
Log:
Load libemail-simple-creator-perl-1.4 into
packages/libemail-simple-creator-perl/trunk.

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

Added: packages/libemail-simple-creator-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-creator-perl/trunk/debian/changelog?rev=3451&op=file
==============================================================================
--- packages/libemail-simple-creator-perl/trunk/debian/changelog (added)
+++ packages/libemail-simple-creator-perl/trunk/debian/changelog Sat Aug 12 08:19:16 2006
@@ -1,0 +1,6 @@
+libemail-simple-creator-perl (1.4-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Paul Wise <pabs3 at bonedaddy.net>  Thu, 15 Dec 2005 09:32:08 +0800
+

Added: packages/libemail-simple-creator-perl/trunk/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-creator-perl/trunk/debian/compat?rev=3451&op=file
==============================================================================
--- packages/libemail-simple-creator-perl/trunk/debian/compat (added)
+++ packages/libemail-simple-creator-perl/trunk/debian/compat Sat Aug 12 08:19:16 2006
@@ -1,0 +1,1 @@
+4

Added: packages/libemail-simple-creator-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-creator-perl/trunk/debian/control?rev=3451&op=file
==============================================================================
--- packages/libemail-simple-creator-perl/trunk/debian/control (added)
+++ packages/libemail-simple-creator-perl/trunk/debian/control Sat Aug 12 08:19:16 2006
@@ -1,0 +1,16 @@
+Source: libemail-simple-creator-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7), libemail-date-perl, libemail-simple-perl
+Maintainer: Paul Wise <pabs3 at bonedaddy.net>
+Standards-Version: 3.6.2
+
+Package: libemail-simple-creator-perl
+Architecture: all
+Depends: ${perl:Depends}, libemail-date-perl, libemail-simple-perl
+Description: Perl module providing a Email::Simple constructor
+ This software provides a constructor to Email::Simple for
+ creating messages from scratch.
+ .
+  Homepage: http://search.cpan.org/~cwest/Email-Simple-Creator/

Added: packages/libemail-simple-creator-perl/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-creator-perl/trunk/debian/copyright?rev=3451&op=file
==============================================================================
--- packages/libemail-simple-creator-perl/trunk/debian/copyright (added)
+++ packages/libemail-simple-creator-perl/trunk/debian/copyright Sat Aug 12 08:19:16 2006
@@ -1,0 +1,18 @@
+This is the debian package for the Email::Simple::Creator module.
+It was created by Paul Wise <pabs3 at bonedaddy.net> using dh-make-perl.
+
+Copyright:
+
+Copyright 2004 Casey West
+
+Licence:
+
+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 copyright terms
+for Perl itself are located in `/usr/share/doc/perl/copyright'. 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'.

Added: packages/libemail-simple-creator-perl/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-creator-perl/trunk/debian/rules?rev=3451&op=file
==============================================================================
--- packages/libemail-simple-creator-perl/trunk/debian/rules (added)
+++ packages/libemail-simple-creator-perl/trunk/debian/rules Sat Aug 12 08:19:16 2006
@@ -1,0 +1,57 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+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) OPTIMIZE="-Wall -O2 -g"
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	[ ! -f Makefile ] || $(MAKE) realclean
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+	touch install-stamp
+
+binary-arch:
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_installchangelogs Changes
+	dh_perl
+	dh_link
+	dh_strip
+	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

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

Added: packages/libemail-simple-creator-perl/trunk/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-simple-creator-perl/trunk/debian/watch?rev=3451&op=file
==============================================================================
--- packages/libemail-simple-creator-perl/trunk/debian/watch (added)
+++ packages/libemail-simple-creator-perl/trunk/debian/watch Sat Aug 12 08:19:16 2006
@@ -1,0 +1,2 @@
+version=2
+http://www.cpan.org/modules/by-module/Email/Email-Simple-Creator-(.*).(tar.gz|tar|tgz)




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