summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorseb <seb@pkgsrc.org>2006-10-01 22:05:38 +0000
committerseb <seb@pkgsrc.org>2006-10-01 22:05:38 +0000
commit023afcd28711183a73d29a3e36afffb82a38679e (patch)
treef0adba4fa168d85a27f7dab4264a5b534b858a79 /devel
parent8f470ce048b544c844f4271a83a1f8994cba1af7 (diff)
downloadpkgsrc-023afcd28711183a73d29a3e36afffb82a38679e.tar.gz
Update to version 2.64.
Changes since last packaged version (2.57): 2.64 2006-09-28T18:39:47 - Added notes about Net::SMPT and Net::SMTP_auth to the README file. Reported by Nacho Barrientos Arias. - The regular expresson for RT ticket numbers now also case-insnsitively matches "RT" in addtion to "Ticket". Suggested by Ask Bjørn Hansen. - Now skipping all tests in 't/alt.t' if HTML::Entities is not installed. Reported by Marshall Roch. - Added a new option, '--ticket-map', to map regular expressions that match ticket references to the URLs to create links for those references. This allows users to specify any number of ticketing systems for which to scan for references in the log message. - Deprecated '--ticket-regex' and '--ticket-url' in favor of the new '--ticket-map' option. - Converted the support for explicit ticketing systems (RT, JIRA, GnatsWeb, and Bugzilla) to internally use the 'ticket_map' attribute. This change eliminates quite a bit of redundant code. Based on a patch from Martijn van Beers (Ticket # 21633). - Unified the internal ticket system regular expressions so that SVN::Notify::HTML can reference and use exactly the same regexen that SVN::Notify uses. Inspired by a patch from Martijn van Beers. 2.63 2006-08-02T18:11:36 - The tests in t/options.t no longer fail when HTML::Entities is not installed. Thanks to Ricardo Signes for the spot! Ticket #20267. - The email subject is now encoded in the MIME-Q encoding, in compliance with RFC 2047. Patch from Éric Cholet. - Now properly setting the binmode on file handles in Win32 when running under Perl 5.8. - Added the --add-header option to add headers to the outgoing email. Useful for things like auto-approval for MLMs. Patch (with tests!) from Ricardo Signes. - Documented the --language option in the svnnotify script. - Before executing 'sendmail', SVN::Notify now sets the $LANG environment variable with the contents of the language and charset options if language is set. Ticket #16050. 2.62 2006-06-30T18:03:21 - Changed to() accessor to return the first value in the array in scalar context, and all of the items as a list in list context. This makes its behavior more consistent with versions of SVN::Notify priort to 2.61. - Added strip_cx_regex() accessor. It also returns the first value in scalar context, and the full list in list context, for consistency with to(). 2.61 2006-06-28T23:07:40 - Removed unused patch file from the distribution. It was temporary, and never supposed to be there, anyway. - Added an "Errors-To" header to the outgoing email, using the same email address as is used for the "From" header. - Added the --set-sender option to specify the envelope sender to the same value as is used for the From: header when sending via sendmail. - The --to option may now be specified multiple times (or passed as an array reference to the constructor) to specify multiple recipients. This change allows multiple recipients to be used when sending notifications via SMTP. Ticket # 20121. Reported by John Colton. 2.60 2006-06-16T22:42:48 - HTML output now creates a link from a directory name to its place in the diff if the type of diff for the directory is a property change. Patch from Lamar Goddard. - Added --author-url option. Based on a patch from Lamar Goddard. - Deprecated --svnweb-url and --viewcvs-url in favor of the new, more general --revision-url. Inspired by a patch from Lamar Goddard. - Added --diff-switches option. This can be used to specify switches to pass through to 'svnlook diff'. Inspired by a patch from Lamar Goddard. 2.59 2006-05-11T17:23:12 - Fixed a few typos, with thanks to Marshall "Eagle Eyes" Roch. - Now throw an exception if 'sendmail' is not specified or cannot be found and 'smtp' is not specified. Reported by Eric Lemes. - Fixed processing of commad-line arguments under Windows. Reported by Eric Lemes. This means that SVN::Notify has now been confirmed to actually *work* on Windows. - An exception will now be thrown if a Net::SMTP object cannot be created. Reported by Eric Lemes. - Added note for Windows users about setting environment variables required by SVN::Notify. Thanks to Eric Lemes <ericlemes@gmail.com> for figuring these things out! - Added link to Eric Lemes's tutorial for installing Apache, Subversion, and SVN::Notify on Windows. 2.58 2006-05-05T20:44:05 - Improved documentation of '--ticket-regex', since it seemed to confuse people using it with SVN::Notify::HTML. Thanks to Dominic Giampaolo for the push. - SVN::Notify::HTML now allows '--ticket-regex' to capture only one string, in which case it will be used both for the link text and for the ticket number passed to the '--ticket-url' format string. - Added support for SMTP authentication using Net::SMTP_auth. Use the '--smtp-user', '--smtp-pass', and '--smtp-authtype' options to take advantage of this feature. Patch from Eric Lemes. - Specifying '--verbose' two or more times now turns on SMTP debugging.
Diffstat (limited to 'devel')
-rw-r--r--devel/p5-SVN-Notify/Makefile5
-rw-r--r--devel/p5-SVN-Notify/distinfo8
2 files changed, 7 insertions, 6 deletions
diff --git a/devel/p5-SVN-Notify/Makefile b/devel/p5-SVN-Notify/Makefile
index f88099f4cc5..9210a049450 100644
--- a/devel/p5-SVN-Notify/Makefile
+++ b/devel/p5-SVN-Notify/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.1.1.1 2006/04/20 10:18:24 seb Exp $
+# $NetBSD: Makefile,v 1.2 2006/10/01 22:05:38 seb Exp $
-DISTNAME= SVN-Notify-2.57
+DISTNAME= SVN-Notify-2.64
PKGNAME= p5-${DISTNAME}
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=SVN/}
@@ -15,6 +15,7 @@ PERL5_MODULE_TYPE= Module::Build
DEPENDS+= p5-HTML-Parser-[0-9]*:../../www/p5-HTML-Parser
DEPENDS+= p5-Test-Pod-Coverage>=1.06:../../devel/p5-Test-Pod-Coverage
DEPENDS+= p5-Test-Pod>=1.20:../../devel/p5-Test-Pod
+DEPENDS+= p5-Net-SMTP_auth>=0.1:../../mail/p5-Net-SMTP_auth
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/devel/p5-SVN-Notify/distinfo b/devel/p5-SVN-Notify/distinfo
index d832e794b61..783028fbb34 100644
--- a/devel/p5-SVN-Notify/distinfo
+++ b/devel/p5-SVN-Notify/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1.1.1 2006/04/20 10:18:24 seb Exp $
+$NetBSD: distinfo,v 1.2 2006/10/01 22:05:38 seb Exp $
-SHA1 (SVN-Notify-2.57.tar.gz) = c16e8f686eea5f78d44933eb2ce573b3111250ae
-RMD160 (SVN-Notify-2.57.tar.gz) = 8e54f34d16ee364fcbea203f0d8fcd55cc98a134
-Size (SVN-Notify-2.57.tar.gz) = 47512 bytes
+SHA1 (SVN-Notify-2.64.tar.gz) = 895ea57508c4dfc2e4421a796649a06232bceca2
+RMD160 (SVN-Notify-2.64.tar.gz) = 20ccb26abf5363b8adc5821dfedf8d2e293f1f2e
+Size (SVN-Notify-2.64.tar.gz) = 54165 bytes