Hello community,

here is the log from the commit of package xfce4-terminal for openSUSE:Factory 
checked in at 2017-12-12 21:22:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xfce4-terminal (Old)
 and      /work/SRC/openSUSE:Factory/.xfce4-terminal.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xfce4-terminal"

Tue Dec 12 21:22:52 2017 rev:18 rq:556031 version:0.8.6

Changes:
--------
--- /work/SRC/openSUSE:Factory/xfce4-terminal/xfce4-terminal.changes    
2017-11-30 12:45:34.849505571 +0100
+++ /work/SRC/openSUSE:Factory/.xfce4-terminal.new/xfce4-terminal.changes       
2017-12-12 21:22:55.170572587 +0100
@@ -1,0 +2,7 @@
+Mon Dec 11 17:31:21 UTC 2017 - seife+...@b1-systems.com
+
+- add 0001-Revert-Fix-handling-email-addresses.patch (boo#1071961,
+  bxo#14076) the "Fix handling email addresses" commit in 0.8.6
+  actually broke email address handling.
+
+-------------------------------------------------------------------

New:
----
  0001-Revert-Fix-handling-email-addresses.patch

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

Other differences:
------------------
++++++ xfce4-terminal.spec ++++++
--- /var/tmp/diff_new_pack.NhU45R/_old  2017-12-12 21:22:55.746544783 +0100
+++ /var/tmp/diff_new_pack.NhU45R/_new  2017-12-12 21:22:55.750544589 +0100
@@ -25,6 +25,8 @@
 Group:          System/X11/Terminals
 Url:            http://docs.xfce.org/apps/terminal/start
 Source0:        
http://archive.xfce.org/src/apps/xfce4-terminal/0.8/%{name}-%{version}.tar.bz2
+# PATCH-FIX-UPSTREAM - revert wrong email address handling (boo#1071961, 
bxo#14076) - seife+...@b1-systems.com
+Patch0:         0001-Revert-Fix-handling-email-addresses.patch
 BuildRequires:  intltool
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(dbus-glib-1)
@@ -46,6 +48,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %configure

++++++ 0001-Revert-Fix-handling-email-addresses.patch ++++++
>From fa4aaa19a107c404b0dc5d707d9c299472e0884f Mon Sep 17 00:00:00 2001
From: Stefan Seyfried <se...@tuxbox-git.slipkontur.de>
Date: Sat, 9 Dec 2017 13:51:35 +0100
Subject: [PATCH] Revert "Fix handling email addresses"

This reverts commit 5175d5ef5e6c9e92f4d296948528ac4bef35fe9d.
---
 terminal/terminal-widget.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/terminal/terminal-widget.c b/terminal/terminal-widget.c
index d65ebfd7..5494cff5 100644
--- a/terminal/terminal-widget.c
+++ b/terminal/terminal-widget.c
@@ -678,8 +678,8 @@ terminal_widget_open_uri (TerminalWidget *widget,
             break;
 
           case PATTERN_TYPE_EMAIL:
-            uri = g_str_has_prefix (wlink, MAILTO "//")
-                ? g_strdup (wlink) : g_strconcat (MAILTO "//", wlink, NULL);
+            uri = strncmp (wlink, MAILTO, strlen (MAILTO)) == 0
+                ? g_strdup (wlink) : g_strconcat (MAILTO, wlink, NULL);
             break;
 
           default:
-- 
2.15.1


Reply via email to