Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package maildir-utils for openSUSE:Factory 
checked in at 2023-11-13 22:18:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/maildir-utils (Old)
 and      /work/SRC/openSUSE:Factory/.maildir-utils.new.17445 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "maildir-utils"

Mon Nov 13 22:18:47 2023 rev:48 rq:1125110 version:1.10.8

Changes:
--------
--- /work/SRC/openSUSE:Factory/maildir-utils/maildir-utils.changes      
2023-09-01 14:21:51.281893714 +0200
+++ /work/SRC/openSUSE:Factory/.maildir-utils.new.17445/maildir-utils.changes   
2023-11-13 22:21:25.912742090 +0100
@@ -1,0 +2,11 @@
+Fri Nov 10 19:30:54 UTC 2023 - Michael Vetter <mvet...@suse.com>
+
+- Update to 1.10.8:
+  * guile: fix module installation path
+  * infodir: allow passing absolute path
+  * mu4e-view: assign gnus-article-buffer (helps with some external
+    programs)
+  * mu4e: fix completion with non-quick keys (when using completion
+    frameworks)
+
+-------------------------------------------------------------------

Old:
----
  mu-1.10.7.tar.xz

New:
----
  mu-1.10.8.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ maildir-utils.spec ++++++
--- /var/tmp/diff_new_pack.CnPwYJ/_old  2023-11-13 22:21:26.432761236 +0100
+++ /var/tmp/diff_new_pack.CnPwYJ/_new  2023-11-13 22:21:26.432761236 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           maildir-utils
-Version:        1.10.7
+Version:        1.10.8
 Release:        0
 Summary:        Maildir indexer and searcher
 License:        GPL-3.0-or-later

++++++ mu-1.10.7.tar.xz -> mu-1.10.8.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mu-1.10.7/build-aux/meson-install-info.sh 
new/mu-1.10.8/build-aux/meson-install-info.sh
--- old/mu-1.10.7/build-aux/meson-install-info.sh       2023-08-30 
21:24:45.000000000 +0200
+++ new/mu-1.10.8/build-aux/meson-install-info.sh       2023-11-09 
20:17:09.000000000 +0100
@@ -4,11 +4,10 @@
 infofile=$2
 
 # Meson post-install script to update info metadata
+
 # If DESTDIR is set, do _not_ install-info, since it's only a temporary
 # install
 if test -z "${DESTDIR}"; then
-    install-info --info-dir ${MESON_INSTALL_DESTDIR_PREFIX}/${infodir} \
-                ${MESON_INSTALL_DESTDIR_PREFIX}/${infodir}/${infofile}
+    install-info --info-dir "${infodir}" "${infodir}/${infofile}"
+    gzip --force "${infodir}/${infofile}"
 fi
-
-gzip --force ${MESON_INSTALL_DESTDIR_PREFIX}/${infodir}/${infofile}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mu-1.10.7/guile/meson.build 
new/mu-1.10.8/guile/meson.build
--- old/mu-1.10.7/guile/meson.build     2023-08-30 21:24:45.000000000 +0200
+++ new/mu-1.10.8/guile/meson.build     2023-11-09 20:17:09.000000000 +0100
@@ -87,16 +87,18 @@
                           '-o', join_paths(meson.current_build_dir(), 
'mu-guile.info'),
                           join_paths(meson.current_source_dir(), 
'mu-guile.texi'),
                           '-I', join_paths(meson.current_build_dir(), '..')])
-
   if install_info.found()
-    meson.add_install_script(install_info_script, 'share/info', 
'mu-guile.info')
+    infodir = join_paths(get_option('prefix') / get_option('infodir'))
+    meson.add_install_script(install_info_script, infodir, 'mu-guile.info')
   endif
 endif
 
-guile_scm_dir=join_paths(datadir, 'guile', 'site', '3.0', 'mu')
-install_data(['mu.scm','mu/script.scm', 'mu/message.scm', 'mu/stats.scm', 
'mu/plot.scm'],
-             install_dir: guile_scm_dir)
-
+guile_scm_dir=join_paths(datadir, 'guile', 'site', '3.0')
+install_data(['mu.scm'], install_dir: guile_scm_dir)
+guile_scm_mu_dir=join_paths(guile_scm_dir, 'mu')
+foreach mod : ['script.scm', 'message.scm', 'stats.scm', 'plot.scm']
+    install_data(join_paths('mu', mod), install_dir: guile_scm_mu_dir)
+endforeach
 
 mu_guile_scripts=[
   join_paths('scripts', 'find-dups.scm'),
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mu-1.10.7/meson.build new/mu-1.10.8/meson.build
--- old/mu-1.10.7/meson.build   2023-08-30 21:24:45.000000000 +0200
+++ new/mu-1.10.8/meson.build   2023-11-09 20:17:09.000000000 +0100
@@ -17,7 +17,7 @@
 
################################################################################
 # project setup
 project('mu', ['c', 'cpp'],
-        version: '1.10.7',
+        version: '1.10.8',
         meson_version: '>= 0.56.0',
         license: 'GPL-3.0-or-later',
         default_options : [
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mu-1.10.7/mu4e/meson.build 
new/mu-1.10.8/mu4e/meson.build
--- old/mu-1.10.7/mu4e/meson.build      2023-08-30 21:24:45.000000000 +0200
+++ new/mu-1.10.8/mu4e/meson.build      2023-11-09 20:17:09.000000000 +0100
@@ -131,6 +131,7 @@
                           join_paths(meson.current_source_dir(), 'mu4e.texi'),
                           '-I', join_paths(meson.current_build_dir(), '..')])
   if install_info.found()
-    meson.add_install_script(install_info_script, 'share/info', 'mu4e.info')
+    infodir = join_paths(get_option('prefix') / get_option('infodir'))
+    meson.add_install_script(install_info_script, infodir, 'mu4e.info')
   endif
 endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mu-1.10.7/mu4e/mu4e-helpers.el 
new/mu-1.10.8/mu4e/mu4e-helpers.el
--- old/mu-1.10.7/mu4e/mu4e-helpers.el  2023-08-30 21:24:45.000000000 +0200
+++ new/mu-1.10.8/mu4e/mu4e-helpers.el  2023-11-09 20:17:09.000000000 +0100
@@ -241,7 +241,7 @@
              ;; Require confirmation, if the input does not match a suggestion
              nil t nil nil nil))))
     (or quick-result
-        (cdr (assoc result choices)))))
+        (cdadr (assoc result choices)))))
 
 (defun mu4e--read-choice-builtin (prompt choices)
   "Read and return one of CHOICES, prompting for PROMPT.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mu-1.10.7/mu4e/mu4e-view.el 
new/mu-1.10.8/mu4e/mu4e-view.el
--- old/mu-1.10.7/mu4e/mu4e-view.el     2023-08-30 21:24:45.000000000 +0200
+++ new/mu-1.10.8/mu4e/mu4e-view.el     2023-11-09 20:17:09.000000000 +0100
@@ -1057,6 +1057,10 @@
               (lambda(func &rest args)
                 (if (mu4e--view-mode-p)
                     "." (apply func args))))
+
+   ;; some external tools (bbdb) depend on this
+  (setq gnus-article-buffer (current-buffer))
+
   (use-local-map mu4e-view-mode-map)
   (mu4e-context-minor-mode)
   (mu4e-search-minor-mode)

Reply via email to