pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/mail/mutt mutt: Update to version 2.0.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7f079406a295
branches:  trunk
changeset: 441950:7f079406a295
user:      tron <tron%pkgsrc.org@localhost>
date:      Sun Nov 15 08:04:53 2020 +0000

description:
mutt: Update to version 2.0.1

This release fixes a compilation issue on a few platforms, and clarifies the
pattern completion function in the UPDATING file. No other changes were made.

diffstat:

 mail/mutt/Makefile                     |   4 ++--
 mail/mutt/distinfo                     |  11 +++++------
 mail/mutt/patches/patch-mutt__random.c |  29 -----------------------------
 3 files changed, 7 insertions(+), 37 deletions(-)

diffs (66 lines):

diff -r 5a4b67f393fe -r 7f079406a295 mail/mutt/Makefile
--- a/mail/mutt/Makefile        Sun Nov 15 07:07:47 2020 +0000
+++ b/mail/mutt/Makefile        Sun Nov 15 08:04:53 2020 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.236 2020/11/08 17:42:45 tron Exp $
+# $NetBSD: Makefile,v 1.237 2020/11/15 08:04:53 tron Exp $
 
-DISTNAME=              mutt-2.0.0
+DISTNAME=              mutt-2.0.1
 CATEGORIES=            mail
 MASTER_SITES=          http://ftp.mutt.org/pub/mutt/
 
diff -r 5a4b67f393fe -r 7f079406a295 mail/mutt/distinfo
--- a/mail/mutt/distinfo        Sun Nov 15 07:07:47 2020 +0000
+++ b/mail/mutt/distinfo        Sun Nov 15 08:04:53 2020 +0000
@@ -1,12 +1,11 @@
-$NetBSD: distinfo,v 1.87 2020/11/11 18:57:15 otis Exp $
+$NetBSD: distinfo,v 1.88 2020/11/15 08:04:53 tron Exp $
 
-SHA1 (mutt-2.0.0.tar.gz) = 2554e214f2f0e6ff148a33805af6b00bb57ee988
-RMD160 (mutt-2.0.0.tar.gz) = 778578909487e7182dd0418416e63a002832ca6b
-SHA512 (mutt-2.0.0.tar.gz) = 2f48bf7eb9bb79a477e3fb9bf4bcde6033d7aaa8922eee20b6e6a05f49a1aea152a7987b99f335343175d87180062064c90c5a7b5bfa82aed188eeab0ac4a90b
-Size (mutt-2.0.0.tar.gz) = 5287742 bytes
+SHA1 (mutt-2.0.1.tar.gz) = 7ac1f00a540d6ce36154f7373acdb43f91f4d38d
+RMD160 (mutt-2.0.1.tar.gz) = 680819332ed976b54f85d8ea4117b13c542141b1
+SHA512 (mutt-2.0.1.tar.gz) = 1930c1470972f74a422d3f609263a5eac1e29938de8eb1bb33b89d4f0aff8757610f155d7dddd1e5ddf769f14132027720523b25a5a513b68c849288e9b21e0b
+Size (mutt-2.0.1.tar.gz) = 5287888 bytes
 SHA1 (patch-Makefile.in) = 646eab10790053fff80bf8012ea85f40412b330c
 SHA1 (patch-color.c) = 69964830c13d4113e78a19539aad1e560825182a
 SHA1 (patch-configure) = cbd7ff52b0b358fff41988d286267046f56ee8d5
 SHA1 (patch-doc_Makefile.in) = 8086887afeec554d0c78047a48ec3eb33d38f26c
 SHA1 (patch-lib.h) = f10c32fc891a3c70c7379e092159e207b6c27b8b
-SHA1 (patch-mutt__random.c) = 73a9a4fd24b8cf4f6354930d2c7dd91d29d46231
diff -r 5a4b67f393fe -r 7f079406a295 mail/mutt/patches/patch-mutt__random.c
--- a/mail/mutt/patches/patch-mutt__random.c    Sun Nov 15 07:07:47 2020 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,29 +0,0 @@
-$NetBSD: patch-mutt__random.c,v 1.1 2020/11/11 18:57:15 otis Exp $
-
-Cast to more portable C99 uint32_t
-
---- mutt_random.c.orig 2020-11-03 17:50:37.000000000 +0000
-+++ mutt_random.c
-@@ -29,7 +29,7 @@
- #include <sys/types.h>
- #include <unistd.h>
- 
--static u_int32_t z[4]; /* Keep state for LFRS113 PRNG */
-+static uint32_t z[4]; /* Keep state for LFRS113 PRNG */
- static int rand_bytes_produced = 0;
- static time_t time_last_reseed = 0;
- 
-@@ -92,11 +92,11 @@ void mutt_reseed (void)
-    * Use as many of the lower order bits from the current time of day as the seed.
-    * If the upper bound is truncated, that is fine.
-    *
--   * tv_sec is integral of type integer or float.  Cast to 'u_int32_t' before
-+   * tv_sec is integral of type integer or float.  Cast to 'uint32_t' before
-    * bitshift in case it is a float. */
- 
-   /* Finally, set our seeds */
--  z[0] ^= (((u_int32_t) tv.tv_sec << 20) | tv.tv_usec);
-+  z[0] ^= (((uint32_t) tv.tv_sec << 20) | tv.tv_usec);
-   z[1] ^= getpid ()                             ^ z[0];
-   z[2] ^= getppid ()                            ^ z[0];
-   z[3] ^= (intptr_t) &z[3] ^ time_last_reseed   ^ z[0];



Home | Main Index | Thread Index | Old Index