r2386 - in packages/libemail-simple-perl/trunk: . debian
Krzysztof Krzyzaniak
eloy at costa.debian.org
Fri Mar 17 11:27:42 UTC 2006
Author: eloy
Date: 2006-03-17 11:27:41 +0000 (Fri, 17 Mar 2006)
New Revision: 2386
Added:
packages/libemail-simple-perl/trunk/debian/
packages/libemail-simple-perl/trunk/debian/changelog
packages/libemail-simple-perl/trunk/debian/compat
packages/libemail-simple-perl/trunk/debian/control
packages/libemail-simple-perl/trunk/debian/copyright
packages/libemail-simple-perl/trunk/debian/docs
packages/libemail-simple-perl/trunk/debian/rules
packages/libemail-simple-perl/trunk/debian/watch
Modified:
packages/libemail-simple-perl/trunk/Simple.pm
Log:
Load libemail-simple-perl-1.92 into
packages/libemail-simple-perl/trunk.
Modified: packages/libemail-simple-perl/trunk/Simple.pm
===================================================================
--- packages/libemail-simple-perl/trunk/Simple.pm 2006-03-17 11:27:24 UTC (rev 2385)
+++ packages/libemail-simple-perl/trunk/Simple.pm 2006-03-17 11:27:41 UTC (rev 2386)
@@ -97,6 +97,7 @@
my $head = shift;
my @head_order;
my ($curhead, $head_hash) = ("", {});
+ my %head_names;
for (split /$crlf/, $head) {
if (s/^\s+// or not /^([^:]+):\s*(.*)/) {
next if !$curhead; # Well, that sucks.
@@ -106,6 +107,12 @@
$head_hash->{$curhead}->[-1] .= $head_hash->{$curhead}->[-1] ? " $_" : $_;
} else {
$curhead = $1;
+ if (exists $head_names{lc $curhead}) {
+ $curhead = $head_names{lc $curhead};
+ }
+ else {
+ $head_names{lc $curhead} = $curhead;
+ }
push @{$head_hash->{$curhead}}, $2;
push @head_order, $curhead;
}
Added: packages/libemail-simple-perl/trunk/debian/changelog
===================================================================
--- packages/libemail-simple-perl/trunk/debian/changelog 2006-03-17 11:27:24 UTC (rev 2385)
+++ packages/libemail-simple-perl/trunk/debian/changelog 2006-03-17 11:27:41 UTC (rev 2386)
@@ -0,0 +1,26 @@
+libemail-simple-perl (1.92-1) unstable; urgency=low
+
+ * Taking orphaned package for Debian Perl Group (closes: #357343)
+ * Confirmed fixing of NMU bugs (closes #297920), (closes: #329533),
+ (closes: #338135)
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org> Fri, 17 Mar 2006 12:19:15 +0100
+
+libemail-simple-perl (1.92-0.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * New upstream release (Closes: #329533)
+ * Add watch file
+ * Bump Standards-Version (no changes)
+ * Fix copyright file (Closes: #338135)
+ * Fix handling of header casing (patch from Kai Henningsen) (Closes: #297920)
+ * Switch to debhelper compatability level 4
+
+ -- Paul Wise <pabs3 at bonedaddy.net> Thu, 15 Dec 2005 10:56:24 +0800
+
+libemail-simple-perl (1.9-1) unstable; urgency=medium
+
+ * Initial Release. (Closes:Bug#194546)
+
+ -- S. Zachariah Sprackett <zac at sprackett.com> Thu, 15 Jul 2004 20:38:14 -0400
+
Added: packages/libemail-simple-perl/trunk/debian/compat
===================================================================
--- packages/libemail-simple-perl/trunk/debian/compat 2006-03-17 11:27:24 UTC (rev 2385)
+++ packages/libemail-simple-perl/trunk/debian/compat 2006-03-17 11:27:41 UTC (rev 2386)
@@ -0,0 +1 @@
+4
Added: packages/libemail-simple-perl/trunk/debian/control
===================================================================
--- packages/libemail-simple-perl/trunk/debian/control 2006-03-17 11:27:24 UTC (rev 2385)
+++ packages/libemail-simple-perl/trunk/debian/control 2006-03-17 11:27:41 UTC (rev 2386)
@@ -0,0 +1,18 @@
+Source: libemail-simple-perl
+Section: perl
+Priority: optional
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
+Build-Depends-Indep: debhelper (>> 4.0.0), perl (>= 5.6.0-16), perl-modules
+Standards-Version: 3.6.2
+
+Package: libemail-simple-perl
+Architecture: all
+Depends: ${perl:Depends}
+Description: Simple parsing of RFC2822 message format and headers
+ Email::Simple is the first deliverable of the Perl Email Project, a
+ reaction against the complexity and increasing bugginess of the
+ Mail::* modules. In contrast, Email::* modules are meant to be simple
+ to use and to maintain, pared to the bone, fast, minimal in their
+ external dependencies, and correct.
+
Added: packages/libemail-simple-perl/trunk/debian/copyright
===================================================================
--- packages/libemail-simple-perl/trunk/debian/copyright 2006-03-17 11:27:24 UTC (rev 2385)
+++ packages/libemail-simple-perl/trunk/debian/copyright 2006-03-17 11:27:41 UTC (rev 2386)
@@ -0,0 +1,23 @@
+This package was debianized by S. Zachariah Sprackett <zac at sprackett.com> on
+Thu, 15 Jul 2004 20:38:14 -0400
+
+It was downloaded from http://www.perl.com/CPAN
+
+Upstream Author: Simon Cozens <simon at simon-cozens.org>
+
+Copyright:
+
+Copyright 2004 Casey West
+Copyright 2003 by Simon Cozens
+
+Licence:
+
+This library 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-perl/trunk/debian/docs
===================================================================
--- packages/libemail-simple-perl/trunk/debian/docs 2006-03-17 11:27:24 UTC (rev 2385)
+++ packages/libemail-simple-perl/trunk/debian/docs 2006-03-17 11:27:41 UTC (rev 2386)
@@ -0,0 +1 @@
+README
Added: packages/libemail-simple-perl/trunk/debian/rules
===================================================================
--- packages/libemail-simple-perl/trunk/debian/rules 2006-03-17 11:27:24 UTC (rev 2385)
+++ packages/libemail-simple-perl/trunk/debian/rules 2006-03-17 11:27:41 UTC (rev 2386)
@@ -0,0 +1,60 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+ifndef PERL
+ PERL = /usr/bin/perl
+endif
+
+package = libemail-simple-perl
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+
+ perl Makefile.PL INSTALLDIRS=vendor
+ $(MAKE) OPTIMIZE="-O2 -g -Wall"
+
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp configure-stamp
+
+ -$(MAKE) realclean
+
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+ $(MAKE) test
+ $(MAKE) install PREFIX=$(CURDIR)/debian/$(package)/usr
+
+ -rmdir -p debian/$(package)/usr/lib/perl5
+
+
+binary-arch: build install
+
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installdocs
+ dh_installchangelogs Changes
+ dh_link
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_perl
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
Property changes on: packages/libemail-simple-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
+ *
Added: packages/libemail-simple-perl/trunk/debian/watch
===================================================================
--- packages/libemail-simple-perl/trunk/debian/watch 2006-03-17 11:27:24 UTC (rev 2385)
+++ packages/libemail-simple-perl/trunk/debian/watch 2006-03-17 11:27:41 UTC (rev 2386)
@@ -0,0 +1,3 @@
+version=3
+http://mirrors.kernel.org/cpan/modules/by-module/Email/Email-Simple-([\d\.]+).tar.gz
+
More information about the Pkg-perl-cvs-commits
mailing list