head 1.2; access; symbols pkgsrc-2026Q2:1.1.0.2 pkgsrc-2026Q2-base:1.1; locks; strict; comment @// @; 1.2 date 2026.08.11.14.40.34; author ktnb; state dead; branches; next 1.1; commitid QZhXEhi1zx7TgeRG; 1.1 date 2026.05.13.18.34.47; author ktnb; state Exp; branches; next ; commitid E0Bl6QnivA8zsGFG; desc @@ 1.2 log @mu: update to 1.14.3 Many internal cleanups/fixups/C++20-modernization, but also a number of new features: mu: - better handling of html parts - fall back to most recent 'Received' for 'Date:'-less messages - record the time-zone offset - command-line completion for bash & zsh mu4e: - improved mime-handling - improved HTML view (generate HTML view for pure text as well) - hide "clickables" until requested (but see - mu4e-view-always-show-url-indicators) scm: - performance improvements - new methods for querying system configuration" and querying database - fields, and getting timezone information (for 'date' and 'changed') @ text @$NetBSD: patch-lib_message_mu-labels.cc,v 1.1 2026/05/13 18:34:47 ktnb Exp $ ctype(3) for NetBSD 11 --- lib/message/mu-labels.cc.orig 2026-04-27 19:03:29.000000000 +0000 +++ lib/message/mu-labels.cc @@@@ -50,11 +50,11 @@@@ Mu::Labels::validate_label(const std::string &label) if (g_unichar_isalnum(uc)) continue; // alphanum is okay - if (::iscntrl(uc)) + if (::iscntrl(static_cast(uc))) return Err(Error{Error::Code::InvalidArgument, "control character {} not allowed in label", static_cast(uc)}); - if (::isblank(uc)) + if (::isblank(static_cast(uc))) return Err(Error{Error::Code::InvalidArgument, "blank character {} not allowed in label", static_cast(uc)}); @ 1.1 log @mu: found more ctype bugs @ text @d1 1 a1 1 $NetBSD$ @