pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

nmh: Update wip/nmh to 1.7rc3



Module Name:	pkgsrc-wip
Committed By:	Leonardo Taccari <leot%NetBSD.org@localhost>
Pushed By:	leot
Date:		Thu Aug 24 10:55:06 2017 +0200
Changeset:	58ce9284e29d5b07029c4f03b169c95be6dab055

Modified Files:
	nmh/Makefile
	nmh/distinfo
Removed Files:
	nmh/patches/patch-uip_mhical.c

Log Message:
nmh: Update wip/nmh to 1.7rc3

pkgsrc changes:
- Remove patches/patch-uip_mhical.c. Applied upstream.

Changes:
1.7rc3
------
This release fixes a few bugs, notably in the areas of MIME
external-body processing and iCalender handling. It also includes some
documentation improvements.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=58ce9284e29d5b07029c4f03b169c95be6dab055

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 nmh/Makefile                   |  4 ++--
 nmh/distinfo                   |  9 ++++-----
 nmh/patches/patch-uip_mhical.c | 16 ----------------
 3 files changed, 6 insertions(+), 23 deletions(-)

diffs:
diff --git a/nmh/Makefile b/nmh/Makefile
index 3940c5fc74..26ad2e82e5 100644
--- a/nmh/Makefile
+++ b/nmh/Makefile
@@ -1,7 +1,7 @@
 # $NetBSD: Makefile,v 1.92 2016/03/05 11:28:49 jperkin Exp $
 
-DISTNAME=		nmh-1.7-RC2
-PKGNAME=		nmh-1.7rc2
+DISTNAME=		nmh-1.7-RC3
+PKGNAME=		nmh-1.7rc3
 CATEGORIES=		mail
 MASTER_SITES=		https://download.savannah.nongnu.org/releases/nmh/
 
diff --git a/nmh/distinfo b/nmh/distinfo
index c3fcdafaa1..89261a6989 100644
--- a/nmh/distinfo
+++ b/nmh/distinfo
@@ -1,9 +1,8 @@
 $NetBSD: distinfo,v 1.19 2015/11/03 23:27:11 agc Exp $
 
-SHA1 (nmh-1.7-RC2.tar.gz) = dc94b3421ff4a7e0e3455456c0f71a618f6988f2
-RMD160 (nmh-1.7-RC2.tar.gz) = a3334bdee9336646e04fcad7280a03dacb080c99
-SHA512 (nmh-1.7-RC2.tar.gz) = 347e4267612e133e6c9b1efd7200b8070e9ffa75fe41b211701294333f6ca462e1e06fbf75824a15085e5c6a67acbdf6ebd52aadbe99b908a42c6f41f24e2327
-Size (nmh-1.7-RC2.tar.gz) = 1386938 bytes
+SHA1 (nmh-1.7-RC3.tar.gz) = dff8fca233174680cd45463e6f6b901f410f2076
+RMD160 (nmh-1.7-RC3.tar.gz) = bd55fb4867ce6fc7efc07a32a6544d8b4a0d1ed7
+SHA512 (nmh-1.7-RC3.tar.gz) = 4e4c99fc91adc6b920772c28ad0001cffde91277a19322acc0f127776bef33889b40141e093559e96616c3631b967ff9c57e4dee88755ec7cb6956d0dcda0a01
+Size (nmh-1.7-RC3.tar.gz) = 1389989 bytes
 SHA1 (patch-ca) = 8e3d655602d8b508f403e51b105e122818b50b7c
 SHA1 (patch-cd) = 5a775091713bca2597a01fcd267d56e2a175588a
-SHA1 (patch-uip_mhical.c) = b95b92cc4e02a151772757c5ba9b92a20d472c85
diff --git a/nmh/patches/patch-uip_mhical.c b/nmh/patches/patch-uip_mhical.c
deleted file mode 100644
index 29006893b1..0000000000
--- a/nmh/patches/patch-uip_mhical.c
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD$
-
-Avoid a possible NULL pointer dereference when mhical does not receive any input
-(e.g. calling it via `mhical < /dev/null').
-
---- uip/mhical.c.orig	2017-08-02 03:50:07.000000000 +0000
-+++ uip/mhical.c
-@@ -714,7 +714,7 @@ display (FILE *file, contentline *clines
-     }
- 
-     /* Don't call on the END:VCALENDAR line. */
--    if (clines->next) {
-+    if (clines  &&  clines->next) {
-       (void) fmt_scan (fmt, buffer, INT_MAX, dat, NULL);
-       fputs (charstring_buffer (buffer), file);
-       fmt_free (fmt, 1);


Home | Main Index | Thread Index | Old Index