pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/mail/mutt
Module Name: pkgsrc
Committed By: wiz
Date: Mon Aug 25 11:29:53 UTC 2025
Modified Files:
pkgsrc/mail/mutt: Makefile distinfo
Added Files:
pkgsrc/mail/mutt/patches: patch-pager.c
Log Message:
mutt: fix ctype(3) compilation warning
Bump PKGREVISION to be on the safe side.
To generate a diff of this commit:
cvs rdiff -u -r1.288 -r1.289 pkgsrc/mail/mutt/Makefile
cvs rdiff -u -r1.119 -r1.120 pkgsrc/mail/mutt/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/mail/mutt/patches/patch-pager.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/mail/mutt/Makefile
diff -u pkgsrc/mail/mutt/Makefile:1.288 pkgsrc/mail/mutt/Makefile:1.289
--- pkgsrc/mail/mutt/Makefile:1.288 Sat Apr 19 07:58:02 2025
+++ pkgsrc/mail/mutt/Makefile Mon Aug 25 11:29:53 2025
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.288 2025/04/19 07:58:02 wiz Exp $
+# $NetBSD: Makefile,v 1.289 2025/08/25 11:29:53 wiz Exp $
DISTNAME= mutt-2.2.14
-PKGREVISION= 2
+PKGREVISION= 3
CATEGORIES= mail
MASTER_SITES= http://ftp.mutt.org/pub/mutt/
Index: pkgsrc/mail/mutt/distinfo
diff -u pkgsrc/mail/mutt/distinfo:1.119 pkgsrc/mail/mutt/distinfo:1.120
--- pkgsrc/mail/mutt/distinfo:1.119 Thu Feb 20 18:41:55 2025
+++ pkgsrc/mail/mutt/distinfo Mon Aug 25 11:29:53 2025
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.119 2025/02/20 18:41:55 tron Exp $
+$NetBSD: distinfo,v 1.120 2025/08/25 11:29:53 wiz Exp $
BLAKE2s (mutt-2.2.14.tar.gz) = 9a504c1a3015774eed3283b9cf37812b95056f67f0223f100b53facb1c583dc9
SHA512 (mutt-2.2.14.tar.gz) = 5c2aacc6a6be8e2be3ee5085c364383f7ed1b7fef730607c70d5e588f65a0fea8748b12b9cdadee7dabdaa5d3c5f94ebddc092737f0ce3b5022c8e5bc7e3c42f
@@ -7,3 +7,4 @@ SHA1 (patch-Makefile.in) = 646eab1079005
SHA1 (patch-color.c) = fc3777cace89e615b13118561ba133c504741bd0
SHA1 (patch-configure) = d481cfd7e1e288d70ff9d48ac07d758ede5d3d30
SHA1 (patch-doc_Makefile.in) = 8086887afeec554d0c78047a48ec3eb33d38f26c
+SHA1 (patch-pager.c) = 0dc2d3ea67202e02629b2bd703406fa7e164f2df
Added files:
Index: pkgsrc/mail/mutt/patches/patch-pager.c
diff -u /dev/null pkgsrc/mail/mutt/patches/patch-pager.c:1.1
--- /dev/null Mon Aug 25 11:29:53 2025
+++ pkgsrc/mail/mutt/patches/patch-pager.c Mon Aug 25 11:29:53 2025
@@ -0,0 +1,16 @@
+$NetBSD: patch-pager.c,v 1.1 2025/08/25 11:29:53 wiz Exp $
+
+Fix ctype(3) usage.
+https://gitlab.com/muttmua/mutt/-/issues/508
+
+--- pager.c.orig 2025-08-25 11:26:35.247435070 +0000
++++ pager.c
+@@ -1011,7 +1011,7 @@ resolve_types (char *buf, char *raw, str
+
+ static int is_ansi (const char *buf)
+ {
+- while (*buf && (isdigit(*buf) || *buf == ';'))
++ while (*buf && (isdigit((unsigned char)*buf) || *buf == ';'))
+ buf++;
+ return (*buf == 'm');
+ }
Home |
Main Index |
Thread Index |
Old Index