r3447 - in /packages/libemail-date-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:13:49 UTC 2006


Author: pabs-guest
Date: Sat Aug 12 08:13:48 2006
New Revision: 3447

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=3447
Log:
Load libemail-date-perl-1.03 into packages/libemail-date-perl/trunk.

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

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

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

Added: packages/libemail-date-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-date-perl/trunk/debian/control?rev=3447&op=file
==============================================================================
--- packages/libemail-date-perl/trunk/debian/control (added)
+++ packages/libemail-date-perl/trunk/debian/control Sat Aug 12 08:13:48 2006
@@ -1,0 +1,24 @@
+Source: libemail-date-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7), libemail-simple-perl, libtimedate-perl, libtime-piece-perl
+Maintainer: Paul Wise <pabs3 at bonedaddy.net>
+Standards-Version: 3.6.2
+
+Package: libemail-date-perl
+Architecture: all
+Depends: ${perl:Depends}, libtime-piece-perl, libemail-simple-perl, libtimedate-perl
+Description: Perl module for correct formatting of dates in emails
+ RFC 2822 defines the Date: header. It declares the header a required
+ part of an email message. The syntax for date headers is clearly laid
+ out. Still, even a perfectly planned world has storms. The truth is, many
+ programs get it wrong. Very wrong. Or, they don't include a Date: header
+ at all. This often forces you to look elsewhere for the date, and hoping
+ to find something.
+ .
+ For this reason, the tedious process of looking for a valid date has been
+ encapsulated in this software. Further, the process of creating RFC
+ compliant date strings is also found in this software.
+ .
+  Homepage: http://search.cpan.org/~cwest/Email-Date/

Added: packages/libemail-date-perl/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-date-perl/trunk/debian/copyright?rev=3447&op=file
==============================================================================
--- packages/libemail-date-perl/trunk/debian/copyright (added)
+++ packages/libemail-date-perl/trunk/debian/copyright Sat Aug 12 08:13:48 2006
@@ -1,0 +1,24 @@
+This is the debian package for the Email::Date module.
+It was created by Paul Wise <pabs3 at bonedaddy.net> using dh-make-perl.
+
+This package was downloaded from http://search.cpan.org/~cwest/Email-Date/
+
+Upstream author:
+
+    Casey West <casey at geeknest.com>
+
+Copyright:
+
+      Copyright (c) 2004 Casey West.  All rights reserved.
+
+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-date-perl/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libemail-date-perl/trunk/debian/rules?rev=3447&op=file
==============================================================================
--- packages/libemail-date-perl/trunk/debian/rules (added)
+++ packages/libemail-date-perl/trunk/debian/rules Sat Aug 12 08:13:48 2006
@@ -1,0 +1,55 @@
+#!/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_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-date-perl/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

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




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