pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/mail/neomutt
Module Name: pkgsrc
Committed By: wiz
Date: Mon May 5 10:04:04 UTC 2025
Modified Files:
pkgsrc/mail/neomutt: Makefile distinfo
Added Files:
pkgsrc/mail/neomutt/patches: patch-parse_extract.c
Log Message:
neomutt: fix ctype(3) problem
Bump PKGREVISION.
To generate a diff of this commit:
cvs rdiff -u -r1.105 -r1.106 pkgsrc/mail/neomutt/Makefile
cvs rdiff -u -r1.78 -r1.79 pkgsrc/mail/neomutt/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/mail/neomutt/patches/patch-parse_extract.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/neomutt/Makefile
diff -u pkgsrc/mail/neomutt/Makefile:1.105 pkgsrc/mail/neomutt/Makefile:1.106
--- pkgsrc/mail/neomutt/Makefile:1.105 Sat Apr 19 07:58:02 2025
+++ pkgsrc/mail/neomutt/Makefile Mon May 5 10:04:03 2025
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.105 2025/04/19 07:58:02 wiz Exp $
+# $NetBSD: Makefile,v 1.106 2025/05/05 10:04:03 wiz Exp $
DISTNAME= neomutt-20250404
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= mail
MASTER_SITES= ${MASTER_SITE_GITHUB:=neomutt/}
GITHUB_TAG= ${PKGVERSION_NOREV}
Index: pkgsrc/mail/neomutt/distinfo
diff -u pkgsrc/mail/neomutt/distinfo:1.78 pkgsrc/mail/neomutt/distinfo:1.79
--- pkgsrc/mail/neomutt/distinfo:1.78 Sat Apr 5 08:16:45 2025
+++ pkgsrc/mail/neomutt/distinfo Mon May 5 10:04:03 2025
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.78 2025/04/05 08:16:45 wiz Exp $
+$NetBSD: distinfo,v 1.79 2025/05/05 10:04:03 wiz Exp $
BLAKE2s (neomutt-20250404-20250404.tar.gz) = 013fe633cfdff432bff9260c6f824ff701fce3194bf25ad0c45fb5938af315a7
SHA512 (neomutt-20250404-20250404.tar.gz) = f1ed60071d2c70ce6065ff04a79d175ba9b9da54607388972b4074c837c943d47713aa4f6ecc21913a77fb373a98ce26edab16c012b4c238560e56984ef7dc69
Size (neomutt-20250404-20250404.tar.gz) = 4177395 bytes
+SHA1 (patch-parse_extract.c) = 56e80fb5342c57451620cdcb8655607fc9a73d80
Added files:
Index: pkgsrc/mail/neomutt/patches/patch-parse_extract.c
diff -u /dev/null pkgsrc/mail/neomutt/patches/patch-parse_extract.c:1.1
--- /dev/null Mon May 5 10:04:04 2025
+++ pkgsrc/mail/neomutt/patches/patch-parse_extract.c Mon May 5 10:04:03 2025
@@ -0,0 +1,16 @@
+$NetBSD: patch-parse_extract.c,v 1.1 2025/05/05 10:04:03 wiz Exp $
+
+Fix ctype(3) arguments
+https://github.com/neomutt/neomutt/issues/4620
+
+--- parse/extract.c.orig 2025-05-05 09:51:07.682959138 +0000
++++ parse/extract.c
+@@ -62,7 +62,7 @@ int parse_extract_token(struct Buffer *d
+ {
+ if (qc == '\0')
+ {
+- if (isspace(ch) && !(flags & TOKEN_SPACE))
++ if (isspace((unsigned char)ch) && !(flags & TOKEN_SPACE))
+ break;
+ if ((ch == '#') && !(flags & TOKEN_COMMENT))
+ break;
Home |
Main Index |
Thread Index |
Old Index