commit maildir-utils for openSUSE:Factory
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-09-01 14:21:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/maildir-utils (Old) and /work/SRC/openSUSE:Factory/.maildir-utils.new.1766 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "maildir-utils" Fri Sep 1 14:21:48 2023 rev:47 rq:1108391 version:1.10.7 Changes: -------- --- /work/SRC/openSUSE:Factory/maildir-utils/maildir-utils.changes 2023-08-07 15:29:16.068379157 +0200 +++ /work/SRC/openSUSE:Factory/.maildir-utils.new.1766/maildir-utils.changes 2023-09-01 14:21:51.281893714 +0200 @@ -1,0 +2,8 @@ +Fri Sep 1 07:38:22 UTC 2023 - Michael Vetter <mvetter@suse.com> + +- Update to 1.10.7: + * Fix mu4e-compose-complete-addresses defcustom + * Allow for specifying the guile dir (useful for distros) + meson setup -Dguile-extension-dir= build + +------------------------------------------------------------------- Old: ---- mu-1.10.6.tar.xz New: ---- mu-1.10.7.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ maildir-utils.spec ++++++ --- /var/tmp/diff_new_pack.n07eRO/_old 2023-09-01 14:21:52.785947395 +0200 +++ /var/tmp/diff_new_pack.n07eRO/_new 2023-09-01 14:21:52.785947395 +0200 @@ -17,7 +17,7 @@ Name: maildir-utils -Version: 1.10.6 +Version: 1.10.7 Release: 0 Summary: Maildir indexer and searcher License: GPL-3.0-or-later ++++++ mu-1.10.6.tar.xz -> mu-1.10.7.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mu-1.10.6/guile/meson.build new/mu-1.10.7/guile/meson.build --- old/mu-1.10.6/guile/meson.build 2023-08-06 15:26:01.000000000 +0200 +++ new/mu-1.10.7/guile/meson.build 2023-08-30 21:24:45.000000000 +0200 @@ -74,7 +74,7 @@ 'mu-guile-message.cc' ], dependencies: [guile_dep, glib_dep, lib_mu_dep, config_h_dep, thread_dep ], install: true, - install_dir: guile_dep.get_variable(pkgconfig: 'extensiondir') + install_dir: guile_extension_dir ) if makeinfo.found() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mu-1.10.6/meson.build new/mu-1.10.7/meson.build --- old/mu-1.10.6/meson.build 2023-08-06 15:26:01.000000000 +0200 +++ new/mu-1.10.7/meson.build 2023-08-30 21:24:45.000000000 +0200 @@ -17,7 +17,7 @@ ################################################################################ # project setup project('mu', ['c', 'cpp'], - version: '1.10.6', + version: '1.10.7', meson_version: '>= 0.56.0', license: 'GPL-3.0-or-later', default_options : [ @@ -36,13 +36,13 @@ infodir = prefixdir / get_option('infodir') # allow for configuring lispdir, as with autotools. -# default to <p if get_option('lispdir') == '' mu4e_lispdir= datadir / join_paths('emacs', 'site-lisp', 'mu4e') else mu4e_lispdir= get_option('lispdir') / 'mu4e' endif + ################################################################################ # compilers / flags # @@ -136,7 +136,17 @@ # soft dependencies guile_dep = dependency('guile-3.0', required: get_option('guile')) -# soft dependencies + +# allow for a custom guile-extension-dir +if guile_dep.found() + custom_guile_xd=get_option('guile-extension-dir') + if custom_guile_xd == '' + guile_extension_dir = guile_dep.get_variable(pkgconfig: 'extensiondir') + else + guile_extension_dir = custom_guile_xd + endif + config_h_data.set_quoted('MU_GUILE_EXTENSION_DIR', guile_extension_dir) +endif # emacs -- needed for mu4e compilation emacs_name=get_option('emacs') diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mu-1.10.6/meson_options.txt new/mu-1.10.7/meson_options.txt --- old/mu-1.10.6/meson_options.txt 2023-08-06 15:26:01.000000000 +0200 +++ new/mu-1.10.7/meson_options.txt 2023-08-30 21:24:45.000000000 +0200 @@ -1,4 +1,4 @@ -## Copyright (C) 2022 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> +## Copyright (C) 2022-2023 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -20,6 +20,11 @@ value: 'auto', description: 'build the guile scripting support (requires guile-3.x)') +# by default, this uses guile_dep.get_variable(pkgconfig: 'extensiondir') +option('guile-extension-dir', + type: 'string', + description: 'custom install path for the guile extension module') + option('readline', type: 'feature', value: 'auto', diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mu-1.10.6/mu4e/mu4e-contacts.el new/mu-1.10.7/mu4e/mu4e-contacts.el --- old/mu-1.10.6/mu4e/mu4e-contacts.el 2023-08-06 15:26:01.000000000 +0200 +++ new/mu-1.10.7/mu4e/mu4e-contacts.el 2023-08-30 21:24:45.000000000 +0200 @@ -57,15 +57,14 @@ :group 'mu4e-compose) (defcustom mu4e-compose-complete-max nil - "Consider only the top-n contacts. -After considering the other -constraints (`mu4e-compose-complete-addresses' and + "Limit the amount of contacts for completion, nil for no limits. +After considering the other constraints +\(`mu4e-compose-complete-addresses' and `mu4e-compose-complete-only-after'), pick only the highest-ranked <n>. -This reduces start-up time and memory usage. Set to nil for no -limits." - :type 'string +Lowering this variable reduces start-up time and memory usage." + :type '(choice natnum (const :tag "No limits" nil)) :group 'mu4e-compose) ;; names and mail-addresses can be mapped onto their canonical
participants (1)
-
Source-Sync