Hello community,

here is the log from the commit of package maildir-utils for openSUSE:Factory 
checked in at 2018-01-24 15:31:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/maildir-utils (Old)
 and      /work/SRC/openSUSE:Factory/.maildir-utils.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "maildir-utils"

Wed Jan 24 15:31:08 2018 rev:7 rq:568541 version:1.0~alpha3

Changes:
--------
--- /work/SRC/openSUSE:Factory/maildir-utils/maildir-utils.changes      
2017-12-19 10:58:46.520516592 +0100
+++ /work/SRC/openSUSE:Factory/.maildir-utils.new/maildir-utils.changes 
2018-01-24 15:31:11.400438223 +0100
@@ -1,0 +2,7 @@
+Tue Jan 23 10:43:22 UTC 2018 - [email protected]
+
+- Add patch mu4e-1.0-alpha3-gh1168.patch
+  * Fix for https://github.com/djcb/mu/issues/1168
+- Make automake version requirement (1.14) explicit
+
+-------------------------------------------------------------------

New:
----
  mu4e-1.0-alpha3-gh1168.patch

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

Other differences:
------------------
++++++ maildir-utils.spec ++++++
--- /var/tmp/diff_new_pack.15XdjS/_old  2018-01-24 15:31:12.252398378 +0100
+++ /var/tmp/diff_new_pack.15XdjS/_new  2018-01-24 15:31:12.256398191 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package maildir-utils
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,8 +25,10 @@
 Group:          Productivity/Networking/Email/Utilities
 Url:            http://www.djcbsoftware.nl/code/mu/
 Source:         
https://github.com/djcb/mu/releases/download/%{_version}/mu-%{_version}.tar.xz
+# PATCH-FIX-UPSTREAM mu4e-1.0-alpha3-gh1168.patch #1168
+Patch0:         mu4e-1.0-alpha3-gh1168.patch
 BuildRequires:  autoconf
-BuildRequires:  automake
+BuildRequires:  automake >= 1.14
 BuildRequires:  emacs-nox >= 23
 BuildRequires:  libtool
 BuildRequires:  libxapian-devel
@@ -49,6 +51,7 @@
 
 %prep
 %setup -q -n mu-%{_version}
+%patch0 -p1
 
 %build
 autoreconf -i

++++++ mu4e-1.0-alpha3-gh1168.patch ++++++
>From 0228f35ec5bcf7f6fdde2244bac0c6937475f3d7 Mon Sep 17 00:00:00 2001
From: djcb <[email protected]>
Date: Wed, 27 Dec 2017 12:51:44 +0200
Subject: [PATCH] simplify mu4e~docid-msgid-param

It was using an ununed `format', which caused trouble when the msgid
contained format characters.
---
 mu4e/mu4e-proc.el | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/mu4e/mu4e-proc.el b/mu4e/mu4e-proc.el
index 69dd796c..34534906 100644
--- a/mu4e/mu4e-proc.el
+++ b/mu4e/mu4e-proc.el
@@ -310,13 +310,11 @@ Start the process if needed."
       (t
        (error "Something bad happened to the mu server process")))))
 
-(defsubst mu4e~docid-msgid-param (docid-or-msgid)
+(defun mu4e~docid-msgid-param (docid-or-msgid)
   "Construct a backend parameter based on DOCID-OR-MSGID."
-  (format
-    (if (stringp docid-or-msgid)
-      (concat "msgid:"(mu4e~escape (format "%s" docid-or-msgid)))
-      "docid:%d")
-    docid-or-msgid))
+  (if (stringp docid-or-msgid)
+    (concat "msgid:" (mu4e~escape docid-or-msgid))
+    (format "docid:%d" docid-or-msgid)))
 
 (defun mu4e~proc-find (query threads sortfield sortdir maxnum skip-dups
                        include-related)

Reply via email to