Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package aerc for openSUSE:Factory checked in at 2023-10-01 21:22:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/aerc (Old) and /work/SRC/openSUSE:Factory/.aerc.new.28202 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "aerc" Sun Oct 1 21:22:52 2023 rev:6 rq:1114454 version:0.16.0 Changes: -------- --- /work/SRC/openSUSE:Factory/aerc/aerc.changes 2023-08-13 19:17:56.372099631 +0200 +++ /work/SRC/openSUSE:Factory/.aerc.new.28202/aerc.changes 2023-10-01 21:24:05.960538214 +0200 @@ -1,0 +2,51 @@ +Thu Sep 28 13:33:30 UTC 2023 - Hannes Braun <apple.hannes@gmail.com> - 0.16.0 + +- Update to upstream version 0.16.0 + * JMAP support. + * The new account wizard now supports all source and outgoing backends. + * Edit email headers directly in the text editor with "[compose].edit-headers" + in aerc.conf or with the "-e" flag for all compose related commands (e.g. + ":compose", ":forward", ":recall", etc.). + * Use ":save -A" to save all the named parts, not just attachments. + * The "<Backspace>" key can now be bound. + * "colorize" can style diff chunk function names with "diff_chunk_func". + * Warn before sending emails with an empty subject with + "empty-subject-warning" in aerc.conf. + * IMAP now uses the delimiter advertised by the server. + * carddav-query utility to use for "address-book-cmd". + * Folder name mapping with "folder-map" in accounts.conf. + * Use ":open -d" to automatically delete temporary files. + * Remove headers from the compose window with ":header -d <name>". + * ":attach -r <name> <cmd>" to pipe the attachments from a command. + * New "msglist_gutter" and `msglist_pill` styles for message list scrollbar. + * New "%f" placeholder to "file-picker-cmd" which expands to a location of a + temporary file from which selected files will be read instead of the + standard output. + * Save drafts in custom folders with ":postpone -t <folder>". + * View "thread-context" in notmuch backends with ":toggle-thread-context". + * ":archive" now works on servers using a different delimiter. + * ":save -a" now works with multiple attachments with the same filename. + * ":open" uses the attachment extension for temporary files, if possible. + * Fixed memory leak when using notmuch with threading. + * Names formatted like "Last Name, First Name" are better supported in + templates + * Composing an email is now aborted if the text editor exits with an error + (e.g. with "vim", abort an email with ":cq"). + * Aerc builtin filters path (usually "/usr/libexec/aerc/filters") is now + prepended to the default system "PATH" to avoid conflicts with installed + distro binaries which have the same name as aerc builtin filters (e.g. + "/usr/bin/colorize"). + * ":export-mbox" only exports marked messages, if any. Otherwise it exports + everything, as usual. + * The local hostname is no longer exposed in outgoing "Message-Id" headers by + default. Legacy behaviour can be restored by setting "send-with-hostname + = true" in accounts.conf. + * Aerc now has a default style for most UI elements. The "default" styleset is + now empty. Existing stylesets will only override the default attributes if + they are set explicitly. To reset the default style and preserve existing + stylesets appearance, these two lines must be inserted at the beginning: + *.default=true + *.normal=true +- Update fix-script-interpreter.patch to patch the shebang of carddav-query + +------------------------------------------------------------------- Old: ---- aerc-0.15.2.tar.gz New: ---- aerc-0.16.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aerc.spec ++++++ --- /var/tmp/diff_new_pack.potzWP/_old 2023-10-01 21:24:06.988575412 +0200 +++ /var/tmp/diff_new_pack.potzWP/_new 2023-10-01 21:24:06.988575412 +0200 @@ -18,7 +18,7 @@ Name: aerc -Version: 0.15.2 +Version: 0.16.0 Release: 0 Summary: An email client for terminals License: MIT @@ -29,7 +29,7 @@ BuildRequires: gcc BuildRequires: go BuildRequires: make -BuildRequires: notmuch-devel +BuildRequires: notmuch-devel >= 0.37 BuildRequires: scdoc Recommends: dante Recommends: w3m @@ -55,13 +55,16 @@ %{_datadir}/%{name} %{_datadir}/applications/%{name}.desktop %{_bindir}/%{name} +%{_bindir}/carddav-query %{_libexecdir}/%{name} %{_mandir}/man1/aerc.1.gz %{_mandir}/man1/aerc-search.1.gz +%{_mandir}/man1/carddav-query.1.gz %{_mandir}/man5/aerc-accounts.5.gz %{_mandir}/man5/aerc-binds.5.gz %{_mandir}/man5/aerc-config.5.gz %{_mandir}/man5/aerc-imap.5.gz +%{_mandir}/man5/aerc-jmap.5.gz %{_mandir}/man5/aerc-maildir.5.gz %{_mandir}/man5/aerc-sendmail.5.gz %{_mandir}/man5/aerc-notmuch.5.gz ++++++ aerc-0.15.2.tar.gz -> aerc-0.16.0.tar.gz ++++++ ++++ 45720 lines of diff (skipped) ++++++ fix-script-interpreter.patch ++++++ --- /var/tmp/diff_new_pack.potzWP/_old 2023-10-01 21:24:07.760603347 +0200 +++ /var/tmp/diff_new_pack.potzWP/_new 2023-10-01 21:24:07.764603492 +0200 @@ -1,3 +1,13 @@ +diff --git a/contrib/carddav-query b/contrib/carddav-query +index f7eaa79..444b116 100755 +--- a/contrib/carddav-query ++++ b/contrib/carddav-query +@@ -1,4 +1,4 @@ +-#!/usr/bin/env python3 ++#!/usr/bin/python3 + # SPDX-License-Identifier: MIT + # Copyright (c) 2023 Robin Jarry + diff --git a/filters/show-ics-details.py b/filters/show-ics-details.py index 18b2b76..d2b4b5d 100755 --- a/filters/show-ics-details.py