r68128 - in /trunk/dh-make-perl: Changes debian/changelog debian/control lib/DhMakePerl/Command/Packaging.pm

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Sat Feb 5 22:06:49 UTC 2011


Author: periapt-guest
Date: Sat Feb  5 22:05:49 2011
New Revision: 68128

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=68128
Log:
added dependency on libemail-address-perl

Modified:
    trunk/dh-make-perl/Changes
    trunk/dh-make-perl/debian/changelog
    trunk/dh-make-perl/debian/control
    trunk/dh-make-perl/lib/DhMakePerl/Command/Packaging.pm

Modified: trunk/dh-make-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/Changes?rev=68128&op=diff
==============================================================================
--- trunk/dh-make-perl/Changes (original)
+++ trunk/dh-make-perl/Changes Sat Feb  5 22:05:49 2011
@@ -1,9 +1,10 @@
-0.72 ()
+0.72 (2011-02-05)
 
   [ Nicholas Bamber ]
   Added logic to parse special email change directives in the changelog
   so that the refresh command respects email changes.
       Debian bug #609409
+  Changed regular expression in t/dists.t to allow .svn not ending in /
 
 0.71 (2010-12-28)
 

Modified: trunk/dh-make-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/debian/changelog?rev=68128&op=diff
==============================================================================
--- trunk/dh-make-perl/debian/changelog (original)
+++ trunk/dh-make-perl/debian/changelog Sat Feb  5 22:05:49 2011
@@ -1,10 +1,4 @@
 dh-make-perl (0.72-1) UNRELEASED; urgency=low
-
-  TODO:
-  - man page change is not correct (should be fixed now)
-  - Agreed with Gregor that the email regex is too restrictive.
-
-  - before release: finish Changes
 
   [ gregor herrmann ]
   * Fix "Tries to mkdir directory in home of building user": set HOME to a

Modified: trunk/dh-make-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/debian/control?rev=68128&op=diff
==============================================================================
--- trunk/dh-make-perl/debian/control (original)
+++ trunk/dh-make-perl/debian/control Sat Feb  5 22:05:49 2011
@@ -29,7 +29,8 @@
  libtext-diff-perl,
  libtie-ixhash-perl,
  libwww-mechanize-perl,
- libyaml-perl
+ libyaml-perl,
+ libemail-address-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Gunnar Wolf <gwolf at debian.org>, Wolfgang Schemmel <debian at 37.org>,
  Christopher Sacca <csacca at thecsl.org>,
@@ -60,7 +61,8 @@
  libsoftware-license-perl,
  libtie-ixhash-perl,
  libwww-mechanize-perl,
- libyaml-perl
+ libyaml-perl,
+ libemail-address-perl
 Recommends: apt-file (>= 2.1.0)
 Description: helper for creating Debian packages from perl modules
  dh-make-perl will create the files required to build a Debian source

Modified: trunk/dh-make-perl/lib/DhMakePerl/Command/Packaging.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/lib/DhMakePerl/Command/Packaging.pm?rev=68128&op=diff
==============================================================================
--- trunk/dh-make-perl/lib/DhMakePerl/Command/Packaging.pm (original)
+++ trunk/dh-make-perl/lib/DhMakePerl/Command/Packaging.pm Sat Feb  5 22:05:49 2011
@@ -998,7 +998,11 @@
 
 
 my $ACTUAL_NAME_RE = '\pL[\s\pL\-\'\.]*\pL';
-my $EMAIL_RE = '[\w\.\-\+]+\@[\w\.\-]+';
+
+# See http://www.faqs.org/rfcs/rfc2822.html
+# Section 3.4.1
+use Email::Address;
+my $EMAIL_RE = $Email::Address::addr_spec;
 
 my $EMAIL_CHANGES_RE = qr{
     ^                           # beginining of line




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