Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package aerc for openSUSE:Factory checked in 
at 2025-09-15 19:53:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/aerc (Old)
 and      /work/SRC/openSUSE:Factory/.aerc.new.1977 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "aerc"

Mon Sep 15 19:53:35 2025 rev:17 rq:1304835 version:0.21.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/aerc/aerc.changes        2025-01-28 
15:00:23.921084387 +0100
+++ /work/SRC/openSUSE:Factory/.aerc.new.1977/aerc.changes      2025-09-15 
19:57:38.987066530 +0200
@@ -1,0 +2,59 @@
+Thu Aug 28 10:58:54 UTC 2025 - Hannes Braun <[email protected]> - 0.21.0
+
+- Update to upstream version 0.21.0
+  * If supported by the terminal, links from a message can now be copied
+    to the system clipboard with the :copy-link command of the message
+    viewer.
+  * More extensive automatic configuration when using :new-accoount.
+  * New :version command shows the version of the running instance of
+    aerc in the statusbar.
+  * The :new-account wizard now includes an extensive auto-detection
+    mechanism which handles most mailserver configurations.
+  * Add option to request full DSN for SMTP sent messages.
+  * Support for number block enter to act as <Cr> in mappings.
+  * It is now possible to toggle notmuch and JMAP tags.
+  * Stylesets can be chained-up in styleset-name config parameter using
+    comma-separated format.
+  * A .HasNew flag indicating whether the account has received new
+    messages to be used in the templates.
+  * A tab-title-terminal setting for customizing the title of tabs in
+    which the terminal widget is run.
+  * Add the -u option to :next-folder and :prev-folder commands to cycle
+    between folders that contain unseen messages.
+  * Support for marking multiple messages based on filters.
+  * Forward with a different account than the current one with
+    ":forward-x <account>".
+  * Readonly support for GMail labels.
+  * Always use X-GM-EXT-1 extension if negotiated with GMail.
+  * Support :modify-labels command for GMail and Proton.
+  * Parsed links in HTML message parts now do not include trailing HTML
+    tags.
+  * Fixed an unguarded concurrent map access leading to crashes.
+  * IMAP servers without IDLE support do not timeout while polling.
+  * Some contacts provided by Gmail were ignored when tab-completing
+    email addresses.
+  * Fix an error when starting aerc through a mailto: link when the
+    new_message template runs a signature command.
+  * Threads now sorted by the greatest message according to the sort
+    criteria and not by the message with the greatest UID.
+  * Maildir backend now builds the therads according to the various
+    config options such as sort-thread-siblings,
+    reverse-msglist-order, threading-by-subject and
+    reverse-thread-order.
+  * :unsubscribe now follows RFC 8058.
+  * The account wizard now always shows the correct path for the account
+    configuration.
+  * The default IMAP connection timeout has been increased to 90 seconds.
+  * ":search -x <flag>" now requires lower-case flag values consistently
+    with ":flag -x <flag>".
+  * Thread siblings will now be ordered by subject if
+    "[ui].sort-thread-siblings = false" and
+    "[ui].threading-by-subject = true".
+  * The <account>.folders-sort now supports patterns for folder names.
+  * Results of filtering when fuzzy-complete is enabled list exact
+    matches first.
+  * The JWZ library used for threading is now vendored.
+- Added skip-autoconfig-test.patch to skip autoconfig tests that are likely
+  failing due to a missing internet connection.
+
+-------------------------------------------------------------------

Old:
----
  aerc-0.20.1.tar.gz

New:
----
  aerc-0.21.0.tar.gz
  skip-autoconfig-test.patch

----------(New B)----------
  New:  * The JWZ library used for threading is now vendored.
- Added skip-autoconfig-test.patch to skip autoconfig tests that are likely
  failing due to a missing internet connection.
----------(New E)----------

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

Other differences:
------------------
++++++ aerc.spec ++++++
--- /var/tmp/diff_new_pack.bvdV53/_old  2025-09-15 19:57:39.515089435 +0200
+++ /var/tmp/diff_new_pack.bvdV53/_new  2025-09-15 19:57:39.519089608 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package aerc
 #
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2025 SUSE LLC and contributors
 # Copyright (c) 2023 Hannes Braun
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,7 +18,7 @@
 
 
 Name:           aerc
-Version:        0.20.1
+Version:        0.21.0
 Release:        0
 Summary:        An email client for terminals
 License:        GPL-3.0-or-later
@@ -27,6 +27,7 @@
 Source0:        
https://git.sr.ht/~rjarry/aerc/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 Source1:        vendor.tar.zst
 Patch0:         fix-script-interpreter.patch
+Patch1:         skip-autoconfig-test.patch
 BuildRequires:  gcc
 BuildRequires:  golang-packaging
 BuildRequires:  make
@@ -40,7 +41,11 @@
 aerc is an email client that runs in terminals.
 
 %prep
-%autosetup -p1 -a1
+%setup -q -a1
+%autopatch -M0 -p1
+%if "%{_arch}" == "riscv64"
+    %patch -P1 -p1
+%endif
 
 %build
 # Need for cache writes

++++++ aerc-0.20.1.tar.gz -> aerc-0.21.0.tar.gz ++++++
++++ 20171 lines of diff (skipped)

++++++ skip-autoconfig-test.patch ++++++
diff --git a/lib/autoconfig/autoconfig_test.go 
b/lib/autoconfig/autoconfig_test.go
index 0ca48a57..dbe3f91a 100644
--- a/lib/autoconfig/autoconfig_test.go
+++ b/lib/autoconfig/autoconfig_test.go
@@ -14,6 +14,7 @@ import (
 )
 
 func TestAutoconfig(t *testing.T) {
+       t.Skip()
        tests := []struct {
                address       string
                correctConfig *Config
diff --git a/lib/autoconfig/get_test.go b/lib/autoconfig/get_test.go
index bdf86327..023d33ca 100644
--- a/lib/autoconfig/get_test.go
+++ b/lib/autoconfig/get_test.go
@@ -11,6 +11,7 @@ import (
 )
 
 func TestConfigRetrieval(t *testing.T) {
+       t.Skip()
        tests := []struct {
                address       string
                correctConfig *Config

++++++ vendor.tar.zst ++++++
++++ 65289 lines of diff (skipped)

Reply via email to