Your message dated Fri, 28 Feb 2025 01:34:04 +0000
with message-id <e1tnpgo-004xcg...@fasolo.debian.org>
and subject line Bug#1099027: fixed in dictionaries-common 1.30.8
has caused the Debian Bug report #1099027,
regarding dictionaries-common: Silence Emacs load messages in files from
dictionaries-common
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)
--
1099027: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1099027
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: dictionaries-common
Version: 1.30.5
Severity: wishlist
X-Debbugs-Cc: farb...@vodafonemail.de
Dear Maintainer,
thanks for so quickly fixing my previous issue #1098337, much
appreciated! Here is another one with rather low severity,
related to bug #979982. Which unfortunately waits for a
resolution for quite some time already.
Anyway, when calling Emacs in batch mode, like this:
[~]$ emacs --batch --eval '(message "foobarbaz")'
Loading /etc/emacs/site-start.d/00debian.el (source)...
Loading /etc/emacs/site-start.d/50autoconf.el (source)...
Loading /etc/emacs/site-start.d/50bbdb3.el (source)...
Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)...
Loading debian-ispell...
Loading /var/cache/dictionaries-common/emacsen-ispell-default.el (source)...
Loading /var/cache/dictionaries-common/emacsen-ispell-dicts.el (source)...
foobarbaz
[~]$ emacs -q --batch --eval '(message "foobarbaz")'
Loading /etc/emacs/site-start.d/00debian.el (source)...
Loading /etc/emacs/site-start.d/50autoconf.el (source)...
Loading /etc/emacs/site-start.d/50bbdb3.el (source)...
Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)...
Loading debian-ispell...
Loading /var/cache/dictionaries-common/emacsen-ispell-default.el (source)...
Loading /var/cache/dictionaries-common/emacsen-ispell-dicts.el (source)...
foobarbaz
the Debian Elisp is rather noisy. While the first couple of
messages is related to bug #979982, the last three ones could be
fixed in dictionaries-common.
Like in the following two patches:
------------------------- snip -------------------------
--- 50dictionaries-common.el.orig 2021-02-22 19:03:21.000000000 +0100
+++ 50dictionaries-common.el 2025-02-27 13:29:14.814316733 +0100
@@ -32,12 +32,12 @@
(symbol-name debian-emacs-flavor)
"/site-lisp/dictionaries-common/debian-ispell.el"))
(if (getenv "DPKG_RUNNING_VERSION")
(message "Info: Skip debian-el loading if run under dpkg control.")
(let ((coding-system-for-read 'raw-text)) ;; Read these as data
streams
- (load "debian-ispell" t)
- (load debian-dict-entries t)))
+ (load "debian-ispell" t t)
+ (load debian-dict-entries t t)))
(message "Info: Package dictionaries-common removed but not purged."))))
;;; Previous code for loading ispell.el and refreshing spell-checking
;;; pulldown menus has been removed from this file since it should no
;;; longer be needed.
------------------------- snip -------------------------
------------------------- snip -------------------------
--- debian-ispell.el.orig 2025-02-19 21:32:13.000000000 +0100
+++ debian-ispell.el 2025-02-27 13:29:34.654291299 +0100
@@ -307,11 +307,11 @@
;; ---------------------------------------------------------------------------
;; Load the file containing the default value for debian-ispell-dictionary
;; ---------------------------------------------------------------------------
(if (file-exists-p "/var/cache/dictionaries-common/emacsen-ispell-default.el")
- (load "/var/cache/dictionaries-common/emacsen-ispell-default.el"))
+ (load "/var/cache/dictionaries-common/emacsen-ispell-default.el" nil t))
;;; ----------------
(defvar debian-aspell-dictionary
nil
------------------------- snip -------------------------
Thanks!
-- System Information:
Debian Release: trixie/sid
APT prefers testing
APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Kernel: Linux 6.12.12-amd64 (SMP w/16 CPU threads; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8),
LANGUAGE=en_US:en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
Versions of packages dictionaries-common depends on:
ii debconf [debconf-2.0] 1.5.89
ii emacsen-common 3.0.5
ii libtext-iconv-perl 1.7-8+b4
dictionaries-common recommends no packages.
Versions of packages dictionaries-common suggests:
ii aspell 0.60.8.1-4
ii ispell 3.4.06-1
ii wamerican [wordlist] 2020.12.07-3
ii wngerman [wordlist] 20161207-14
-- debconf information excluded
--- End Message ---
--- Begin Message ---
Source: dictionaries-common
Source-Version: 1.30.8
Done: Agustin Martin Domingo <agmar...@debian.org>
We believe that the bug you reported is fixed in the latest version of
dictionaries-common, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to 1099...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Agustin Martin Domingo <agmar...@debian.org> (supplier of updated
dictionaries-common package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Fri, 28 Feb 2025 02:01:56 +0100
Source: dictionaries-common
Architecture: source
Version: 1.30.8
Distribution: unstable
Urgency: medium
Maintainer: Agustin Martin Domingo <agmar...@debian.org>
Changed-By: Agustin Martin Domingo <agmar...@debian.org>
Closes: 1099027
Changes:
dictionaries-common (1.30.8) unstable; urgency=medium
.
* support/emacsen/startup.el.in: Silence Emacs load messages in
files loaded from dictionaries-common when in batch mode, thanks Jens
Schmidt for pointing out this (Closes: #1099027).
Checksums-Sha1:
d05359e5bdc6b72a596d51977357a4b9488ccd28 1893 dictionaries-common_1.30.8.dsc
5dd5e2286e63ff8ff4bfe6149a6a405b67806e11 291540
dictionaries-common_1.30.8.tar.xz
3c63b92aac84588c93380a9f42166bac5d3ccd61 6685
dictionaries-common_1.30.8_amd64.buildinfo
Checksums-Sha256:
78a8971b796cb58890fa3502c5a6603a0bb3057f0914da8c155f2c97549ed7d0 1893
dictionaries-common_1.30.8.dsc
3a65d2f026e6fad5634484fa2db250a9876e1cdc1e779e829f85bb2db8040272 291540
dictionaries-common_1.30.8.tar.xz
bbcdd078ce9998ee48258fcfd913cce01a5b12b5f0ff0a5436e4fd54fa808668 6685
dictionaries-common_1.30.8_amd64.buildinfo
Files:
f763f9b7ef27f5b1c5d71e25310aa8b1 1893 text optional
dictionaries-common_1.30.8.dsc
8db7dbb003ec9374e701826e6ee37c04 291540 text optional
dictionaries-common_1.30.8.tar.xz
51d16c2e861017d70b183712f797a33d 6685 text optional
dictionaries-common_1.30.8_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEEehey7p+gYd346SEFJrCLeiggvwFAmfBDLAACgkQFJrCLeig
gvzO7w/+OVz1vylU2Kg4HmNyjPPf8ec5BgiJBUcjXEOmsWBaQYPGFXde2N3IZw7D
mRbHWFylQe/k6Z5jTd67hpS7w75nM5UD+2RoSAjRwUWy+GeMKdA76UnwlvhQbZPk
8qcprMNE+cHD76mVhM0tMWwC44heMB+756Qx+AaRwhkcp8xKgx4YY92wppni/1BV
RKlD+PpEWy7AQnMPY7WnaAPm90fou6ktdjocrOunq94CZnPBh7iFSgDhjARvZ6W0
tSY05odLiz9P2J3gsW351Lqu+l8mV0wYy+5y0bAFDSoflQ3CrmHBHUSVYO/QrKye
H1O8liPCur07USc4YzygUROjV0hk4b+vV1NWLeMzEZ6b4kBC5IT3l8rok87jFIEm
ngVOp0tuxZL0bxtTR72qwL5BQMgX+a6pmTnm4qoOq7cWJmlSuNgCCNgCgYPgk8UD
kA9cMZtgdcSSpTmA3JhzH9GOql/rSmbgIQgDJAj6Q+Nn8JO98sLHpYR/prFFu3fq
5h3C+5VbS6ICxSumfpyyw7/BYCGM3fKY673dBVd5XL7FmCV4vBgpOqucMbnt9EoD
COwxct7K2Q392Ij348EsgFkE3MlaFk/bjNgpwioPHWhzV5sjg4ErlylCh2b2A1EH
EinmvVK83ALPvQIs6jOExbcOKLqFfsWwT/mWb5b1egAerbrFJfM=
=t8Ej
-----END PGP SIGNATURE-----
pgpR9uZ2R0Ry3.pgp
Description: PGP signature
--- End Message ---