r28276 - in /trunk/mail-rfc822-address/debian: ./ changelog compat control copyright rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Tue Dec 16 00:21:40 UTC 2008


Author: gregoa
Date: Tue Dec 16 00:21:37 2008
New Revision: 28276

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

Added:
    trunk/mail-rfc822-address/debian/
    trunk/mail-rfc822-address/debian/changelog
    trunk/mail-rfc822-address/debian/compat
    trunk/mail-rfc822-address/debian/control
    trunk/mail-rfc822-address/debian/copyright
    trunk/mail-rfc822-address/debian/rules   (with props)

Added: trunk/mail-rfc822-address/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/mail-rfc822-address/debian/changelog?rev=28276&op=file
==============================================================================
--- trunk/mail-rfc822-address/debian/changelog (added)
+++ trunk/mail-rfc822-address/debian/changelog Tue Dec 16 00:21:37 2008
@@ -1,0 +1,20 @@
+mail-rfc822-address (0.3-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/rules: Don't fail when perl is smart enough not to create
+    empty dirs. (Closes: 467840)
+
+ -- Marc 'HE' Brockschmidt <he at debian.org>  Sun, 06 Apr 2008 12:25:57 +0200
+
+mail-rfc822-address (0.3-2) unstable; urgency=low
+
+  * lowercase the source package name
+
+ -- Anand Kumria <wildfire at progsoc.org>  Tue,  8 Nov 2005 00:19:56 +1100
+
+mail-rfc822-address (0.3-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Anand Kumria <wildfire at progsoc.org>  Mon,  7 Nov 2005 03:40:49 +1100
+

Added: trunk/mail-rfc822-address/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/mail-rfc822-address/debian/compat?rev=28276&op=file
==============================================================================
--- trunk/mail-rfc822-address/debian/compat (added)
+++ trunk/mail-rfc822-address/debian/compat Tue Dec 16 00:21:37 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/mail-rfc822-address/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/mail-rfc822-address/debian/control?rev=28276&op=file
==============================================================================
--- trunk/mail-rfc822-address/debian/control (added)
+++ trunk/mail-rfc822-address/debian/control Tue Dec 16 00:21:37 2008
@@ -1,0 +1,24 @@
+Source: mail-rfc822-address
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7)
+Maintainer: Anand Kumria <wildfire at progsoc.org>
+Standards-Version: 3.6.1
+
+Package: libmail-rfc822-address-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, 
+Description:  Perl extension for validating email addresses 
+ Mail::RFC822::Address validates email addresses against the grammar described
+ in RFC 822 using regular expressions.  How to validate a user supplied email
+ address is a FAQ (see perlfaq9): the only sure way to see if a supplied email
+ address is genuine is to send an email to it and see if the user recieves it.
+ The one useful check that can be performed on an address is to check that the
+ email address is syntactically valid.  That is what this module does.
+ .
+ This module is functionally equivalent to RFC::RFC822::Address, but uses
+ regular expressions rather than the Parse::RecDescent parser.  This means that
+ startup time is greatly reduced making it suitable for use in transient scripts
+ such as CGI scripts.
+ .

Added: trunk/mail-rfc822-address/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/mail-rfc822-address/debian/copyright?rev=28276&op=file
==============================================================================
--- trunk/mail-rfc822-address/debian/copyright (added)
+++ trunk/mail-rfc822-address/debian/copyright Tue Dec 16 00:21:37 2008
@@ -1,0 +1,22 @@
+This is the debian package for the Mail::RFC822::Address module.
+It was created by Anand Kumria <wildfire at progsoc.org> using dh-make-perl.
+
+This copyright info was automatically extracted from the perl module.
+It may not be accurate, so you better check the module sources
+if don't want to get into legal troubles.
+
+The upstream author is: 
+
+Paul Warren, pdw at ex-parrot.com.
+
+Copyright:
+
+   Permission is hereby granted, free of charge, to any person obtaining a
+   copy of this software and associated documentation files (the "Soft‐
+   ware"), to deal in the Software without restriction, including without
+   limitation the rights to use, copy, modify, merge, publish, distribute,
+   sublicense, and/or sell copies of the Software, and to permit persons
+   to whom the Software is furnished to do so, subject to the following
+   conditions: The above copyright notice and this permission notice shall
+   be included in all copies or substantial portions of the Software.
+

Added: trunk/mail-rfc822-address/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/mail-rfc822-address/debian/rules?rev=28276&op=file
==============================================================================
--- trunk/mail-rfc822-address/debian/rules (added)
+++ trunk/mail-rfc822-address/debian/rules Tue Dec 16 00:21:37 2008
@@ -1,0 +1,83 @@
+#!/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
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-Wall -O2 -g"
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add commands to install the package into debian/$PACKAGE_NAME here
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+	# As this is a architecture independent package, we are not
+	# supposed to install stuff to /usr/lib. MakeMaker creates
+	# the dirs, we delete them from the deb:
+	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(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_installcron
+#	dh_installmenu
+#	dh_installexamples
+	dh_installdocs 
+	dh_installchangelogs Changes
+	dh_perl
+	dh_link
+	dh_strip
+	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/mail-rfc822-address/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




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