From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 19 20:15:00 2023 Received: (at submit) by debbugs.gnu.org; 20 Jan 2023 01:15:00 +0000 Received: from localhost ([127.0.0.1]:45034 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pIfzf-000748-KD for submit@debbugs.gnu.org; Thu, 19 Jan 2023 20:15:00 -0500 Received: from lists.gnu.org ([209.51.188.17]:42944) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pIfzc-00073y-2x for submit@debbugs.gnu.org; Thu, 19 Jan 2023 20:14:58 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pIfzb-0003vp-T2 for bug-gnu-emacs@gnu.org; Thu, 19 Jan 2023 20:14:55 -0500 Received: from shell1.rawbw.com ([198.144.192.42]) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pIfzZ-0004zA-Jt for bug-gnu-emacs@gnu.org; Thu, 19 Jan 2023 20:14:55 -0500 Received: from alto (135-180-174-133.dsl.dynamic.sonic.net [135.180.174.133] (may be forged)) (authenticated bits=0) by shell1.rawbw.com (8.15.1/8.15.1) with ESMTPSA id 30K1EbxU035627 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Thu, 19 Jan 2023 17:14:42 -0800 (PST) (envelope-from kupfer@rawbw.com) X-Authentication-Warning: shell1.rawbw.com: Host 135-180-174-133.dsl.dynamic.sonic.net [135.180.174.133] (may be forged) claimed to be alto From: Mike Kupfer To: bug-gnu-emacs@gnu.org Subject: 29.0.60; [PATCH] MH-E breaks with nmh 1.8 X-Mailer: MH-E 8.6+git; nmh 1.7.1; Emacs 29.0.60 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Date: Thu, 19 Jan 2023 17:14:37 -0800 Message-ID: <51238.1674177277@alto> Received-SPF: pass client-ip=198.144.192.42; envelope-from=kupfer@rawbw.com; helo=shell1.rawbw.com X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) --=-=-= Content-Type: text/plain nmh 1.8 has not been released yet, but the first release candidate is out. I haven't had time to test it yet, but a user has reported that the mh-version command breaks with it. That is, mh-version is only able to report a few things before erroring out on a nil value where a string was expected. The attached patch fixes the problem and works on older nmh releases as well as 1.8. Is it okay for emacs-29? thanks, mike PS. The repo revision listed below includes the fix. It is based on e8c77d9abda. --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-MH-E-handle-removal-of-mhparam-libdir-from-nmh-1.8.patch Content-Description: proposed patch >From 77baa31a2f2dba1a5c83fc9d74c44628207616b7 Mon Sep 17 00:00:00 2001 From: Mike Kupfer Date: Mon, 16 Jan 2023 13:50:49 -0800 Subject: [PATCH] MH-E: handle removal of mhparam libdir from nmh 1.8 * lisp/mh-e/mh-e.el (mh-variant-nmh-info): If "libdir" doesn't work, try "libexecdir" (SF#491). --- lisp/mh-e/mh-e.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lisp/mh-e/mh-e.el b/lisp/mh-e/mh-e.el index 1640c23e002..34c809a5ecd 100644 --- a/lisp/mh-e/mh-e.el +++ b/lisp/mh-e/mh-e.el @@ -764,6 +764,8 @@ mh-variant-nmh-info ;; Sample '-version' outputs: ;; mhparam -- nmh-1.1-RC1 [compiled on chaak at Fri Jun 20 11:03:28 PDT 2003] ;; install-mh -- nmh-1.7.1 built October 26, 2019 on build-server-000 + ;; "libdir" was deprecated in nmh-1.7 in favor of "libexecdir", and + ;; removed completely in nmh-1.8. (let ((install-mh (expand-file-name "install-mh" dir))) (when (mh-file-command-p install-mh) (erase-buffer) @@ -774,7 +776,8 @@ mh-variant-nmh-info (mh-progs dir)) `(,version (variant nmh) - (mh-lib-progs ,(mh-profile-component "libdir")) + (mh-lib-progs ,(or (mh-profile-component "libdir") + (mh-profile-component "libexecdir"))) (mh-lib ,(mh-profile-component "etcdir")) (mh-progs ,dir) (flists ,(file-exists-p -- 2.30.2 --=-=-= Content-Type: text/plain In GNU Emacs 29.0.60 (build 11, x86_64-pc-linux-gnu, X toolkit, cairo version 1.16.0, Xaw scroll bars) of 2023-01-16 built on alto Repository revision: 77baa31a2f2dba1a5c83fc9d74c44628207616b7 Repository branch: emacs-29-sf491 Windowing system distributor 'The X.Org Foundation', version 11.0.12011000 System Description: Debian GNU/Linux 11 (bullseye) Configured using: 'configure --prefix=/usr/new' Configured features: CAIRO FREETYPE GIF GLIB GMP GNUTLS GSETTINGS HARFBUZZ JPEG LIBSELINUX LIBXML2 MODULES NOTIFY INOTIFY PDUMPER PNG SECCOMP SOUND THREADS TIFF TOOLKIT_SCROLL_BARS X11 XDBE XIM XPM LUCID ZLIB Important settings: value of $LC_TIME: C value of $LANG: en_US.UTF-8 locale-coding-system: utf-8-unix Major mode: Fundamental Minor modes in effect: shell-dirtrack-mode: t delete-selection-mode: t global-eldoc-mode: t show-paren-mode: t mouse-wheel-mode: t file-name-shadow-mode: t global-font-lock-mode: t buffer-read-only: t column-number-mode: t indent-tabs-mode: t transient-mark-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t Load-path shadows: None found. Features: (shadow mh-mime mh-identity mh-tool-bar mh-acros mh-letter mh-show goto-addr gnus-cite mh-xface mh-utils emacsbug misearch multi-isearch crm thingatpt cus-edit pp cus-start cus-load mdk-mail gnus-mh gnus-msg mh-comp mh-scan mh-gnus gnus-dup nnmh gnus-score score-mode gnus-art mm-uu mml2015 mm-view mml-smime smime gnutls dig gnus-sum shr pixel-fill kinsoku url-file svg dom browse-url url url-proxy url-privacy url-expand url-methods url-history url-cookie generate-lisp-file url-domsuf url-util url-parse auth-source cl-seq eieio eieio-core cl-macs json map gv url-vars gnus-group gnus-undo gnus-start gnus-dbus dbus xml gnus-cloud nnimap nnmail mail-source utf7 nnoo parse-time iso8601 gnus-spec gnus-int gnus-range gnus-win gnus nnheader range wid-edit mh-e mh-buffers mh-loaddefs message sendmail mailcap yank-media puny dired dired-loaddefs rfc822 mml mml-sec password-cache epa derived epg rfc6068 epg-config gnus-util text-property-search time-date mm-decode mm-bodies mm-encode mail-parse rfc2231 rfc2047 rfc2045 mm-util ietf-drums mail-prsvr mailabbrev mail-utils gmm-utils mailheader warnings server noutline outline icons cc-mode cc-fonts cc-guess cc-menus cc-cmds cc-styles cc-align cc-engine cc-vars cc-defs byte-opt bytecomp byte-compile shell subr-x pcomplete comint ansi-osc ansi-color ring xcscope advice delsel vc vc-dispatcher timeclock cl-loaddefs cl-lib mdk-hacks rmc iso-transl tooltip cconv eldoc paren electric uniquify ediff-hook vc-hooks lisp-float-type elisp-mode mwheel term/x-win x-win term/common-win x-dnd tool-bar dnd fontset image regexp-opt fringe tabulated-list replace newcomment text-mode lisp-mode prog-mode register page tab-bar menu-bar rfn-eshadow isearch easymenu timer select scroll-bar mouse jit-lock font-lock syntax font-core term/tty-colors frame minibuffer nadvice seq simple cl-generic indonesian philippine cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms cp51932 hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese composite emoji-zwj charscript charprop case-table epa-hook jka-cmpr-hook help abbrev obarray oclosure cl-preloaded button loaddefs theme-loaddefs faces cus-face macroexp files window text-properties overlay sha1 md5 base64 format env code-pages mule custom widget keymap hashtable-print-readable backquote threads inotify dynamic-setting system-font-setting font-render-setting cairo x-toolkit x multi-tty make-network-process emacs) Memory information: ((conses 16 192767 10746) (symbols 48 19218 0) (strings 32 59206 2143) (string-bytes 1 1950119) (vectors 16 33703) (vector-slots 8 377364 16745) (floats 8 228 47) (intervals 56 404 0) (buffers 976 14)) --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 20 02:10:49 2023 Received: (at 60952) by debbugs.gnu.org; 20 Jan 2023 07:10:49 +0000 Received: from localhost ([127.0.0.1]:45322 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pIlY1-00086F-12 for submit@debbugs.gnu.org; Fri, 20 Jan 2023 02:10:49 -0500 Received: from eggs.gnu.org ([209.51.188.92]:57230) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pIlXy-000861-Sc for 60952@debbugs.gnu.org; Fri, 20 Jan 2023 02:10:47 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pIlXt-000738-Bg; Fri, 20 Jan 2023 02:10:41 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=zC3G3TQJPr3ClmABf5C4ERscx0lFkzvLtZq8lFJkbvY=; b=S1J8sXWL7Qsb ETTju2wc/uMmaPiY3Sbnh6/YotBFJq2LacFcZ6VM4pjpFwybEFcCI4OAMa5n/lHM9lu/l3Ls1hvNQ w4HclAsEoLimYLQY1DCl3ybysjBnWbQq1+XC/6MqrMszRDQ8OYBxSjkabEjHtqSJaQHQTkChYnnsa 3sg9S/XzTbc+uw2e5QV4o9jaSR61oxSrwDKJPYGFCLlx2Wq8D5YaS507dVPVZd8tMsw4CgAgD0bq4 l/pnx20TbWP42QyQysXyrpNXZFcfR20Tcu4tA9luGSLSkEuEh16120ljx460HmBIU4Uxk6ecLrmt5 M8Uqmi8415I1/7jdD48CNw==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pIlXn-0001Q7-Mb; Fri, 20 Jan 2023 02:10:39 -0500 Date: Fri, 20 Jan 2023 09:10:35 +0200 Message-Id: <83fsc5of4k.fsf@gnu.org> From: Eli Zaretskii To: Mike Kupfer In-Reply-To: <51238.1674177277@alto> (message from Mike Kupfer on Thu, 19 Jan 2023 17:14:37 -0800) Subject: Re: bug#60952: 29.0.60; [PATCH] MH-E breaks with nmh 1.8 References: <51238.1674177277@alto> X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 60952 Cc: 60952@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > From: Mike Kupfer > Date: Thu, 19 Jan 2023 17:14:37 -0800 > > nmh 1.8 has not been released yet, but the first release candidate is > out. I haven't had time to test it yet, but a user has reported that > the mh-version command breaks with it. That is, mh-version is only able > to report a few things before erroring out on a nil value where a string > was expected. > > The attached patch fixes the problem and works on older nmh releases as > well as 1.8. Is it okay for emacs-29? Yes, thanks. From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 20 23:04:57 2023 Received: (at 60952-done) by debbugs.gnu.org; 21 Jan 2023 04:04:57 +0000 Received: from localhost ([127.0.0.1]:47687 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pJ57h-0004Fa-E3 for submit@debbugs.gnu.org; Fri, 20 Jan 2023 23:04:57 -0500 Received: from shell1.rawbw.com ([198.144.192.42]:52555 ident=root) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pJ57f-0004FO-Mm for 60952-done@debbugs.gnu.org; Fri, 20 Jan 2023 23:04:56 -0500 Received: from alto (135-180-174-133.dsl.dynamic.sonic.net [135.180.174.133] (may be forged)) (authenticated bits=0) by shell1.rawbw.com (8.15.1/8.15.1) with ESMTPSA id 30L44me9049380 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 20 Jan 2023 20:04:54 -0800 (PST) (envelope-from kupfer@rawbw.com) X-Authentication-Warning: shell1.rawbw.com: Host 135-180-174-133.dsl.dynamic.sonic.net [135.180.174.133] (may be forged) claimed to be alto From: Mike Kupfer To: Eli Zaretskii Subject: Re: bug#60952: 29.0.60; [PATCH] MH-E breaks with nmh 1.8 In-Reply-To: Eli's message of "Fri, 20 Jan 2023 09:10:35 +0200." <83fsc5of4k.fsf@gnu.org> X-Mailer: MH-E 8.6+git; nmh 1.7.1; Emacs 29.0.60 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <237485.1674273888.1@alto> Date: Fri, 20 Jan 2023 20:04:48 -0800 Message-ID: <237486.1674273888@alto> X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 60952-done Cc: 60952-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Eli Zaretskii wrote: > > From: Mike Kupfer > > Date: Thu, 19 Jan 2023 17:14:37 -0800 [...] > > The attached patch fixes the problem and works on older nmh releases as > > well as 1.8. Is it okay for emacs-29? > > Yes, thanks. Thanks, Eli. The fix has been committed and pushed, commit b3de81a6ee3, so I'm closing this bug. mike From unknown Sat Jun 21 03:31:13 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 18 Feb 2023 12:24:07 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator