Hello community,

here is the log from the commit of package xtrans for openSUSE:Factory checked 
in at 2019-03-26 22:30:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xtrans (Old)
 and      /work/SRC/openSUSE:Factory/.xtrans.new.25356 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xtrans"

Tue Mar 26 22:30:12 2019 rev:14 rq:687690 version:1.4.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/xtrans/xtrans.changes    2017-06-04 
01:46:26.477688388 +0200
+++ /work/SRC/openSUSE:Factory/.xtrans.new.25356/xtrans.changes 2019-03-26 
22:30:14.249737422 +0100
@@ -1,0 +2,15 @@
+Fri Mar 22 13:38:03 UTC 2019 - Stefan Dirsch <sndir...@suse.com>
+
+- n_unifdef-LBXPROXY_t-and-TEST_t.patch
+  * reverse apply in order to fix build of lbxproxy again ...
+
+-------------------------------------------------------------------
+Fri Mar 22 11:11:11 UTC 2019 - Stefan Dirsch <sndir...@suse.com>
+
+- Update to version 1.4.0
+  * This release drops a bunch of dead code, including support
+    only used by lbxproxy and pre-1.4.0 versions of libX11, as
+    well as support for obsolete SysV x86 platforms. It also
+    provides some bug fixes & other maintenance work.
+
+-------------------------------------------------------------------

Old:
----
  xtrans-1.3.5.tar.bz2

New:
----
  n_unifdef-LBXPROXY_t-and-TEST_t.patch
  xtrans-1.4.0.tar.bz2

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

Other differences:
------------------
++++++ xtrans.spec ++++++
--- /var/tmp/diff_new_pack.Zj3yZu/_old  2019-03-26 22:30:14.961737250 +0100
+++ /var/tmp/diff_new_pack.Zj3yZu/_new  2019-03-26 22:30:14.965737249 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xtrans
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -17,7 +17,7 @@
 
 
 Name:           xtrans
-Version:        1.3.5
+Version:        1.4.0
 Release:        0
 Summary:        Library to handle network protocol transport in X
 License:        MIT
@@ -25,6 +25,7 @@
 Url:            http://xorg.freedesktop.org/
 Source:         
http://xorg.freedesktop.org/archive/individual/lib/%{name}-%{version}.tar.bz2
 Patch0:         p_xauth.diff
+Patch1:         n_unifdef-LBXPROXY_t-and-TEST_t.patch
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(xorg-macros) >= 1.12
 BuildRequires:  pkgconfig(xshmfence)
@@ -45,6 +46,7 @@
 %prep
 %setup -q
 %patch0 -p0
+%patch1 -p1 -R
 
 %build
 %configure --docdir=%{_docdir}/xtrans
@@ -59,7 +61,7 @@
 
 %files
 %defattr(-,root,root)
-%doc AUTHORS ChangeLog COPYING README
+%doc AUTHORS ChangeLog COPYING README.md
 %doc doc/xtrans.xml
 %{_includedir}/X11/Xtrans/
 %{_datadir}/aclocal/xtrans.m4

++++++ n_unifdef-LBXPROXY_t-and-TEST_t.patch ++++++
>From 0794b1b712a90b40e2b019c9edc6f96874493c52 Mon Sep 17 00:00:00 2001
From: Adam Jackson <a...@redhat.com>
Date: Wed, 18 May 2016 12:41:41 -0400
Subject: [PATCH] unifdef LBXPROXY_t and TEST_t

LBX is dead, and TEST_t is unused.

Reviewed-by: Keith Packard <kei...@keithp.com>
Signed-off-by: Adam Jackson <a...@redhat.com>
---
 Xtrans.h     | 15 ---------------
 Xtranssock.c |  8 --------
 2 files changed, 23 deletions(-)

diff --git a/Xtrans.h b/Xtrans.h
index 3fd73b8..7ed033b 100644
--- a/Xtrans.h
+++ b/Xtrans.h
@@ -111,21 +111,6 @@ static const char *__xtransname = "_IceTrans";
 #endif
 #endif /* ICE_t */
 
-#ifdef TEST_t
-#define TRANS(func) _TESTTrans##func
-#ifdef XTRANSDEBUG
-static const char *__xtransname = "_TESTTrans";
-#endif
-#endif /* TEST_t */
-
-#ifdef LBXPROXY_t
-#define TRANS(func) _LBXPROXYTrans##func
-#define X11_t          /* The server defines this - so should the LBX proxy */
-#ifdef XTRANSDEBUG
-static const char *__xtransname = "_LBXPROXYTrans";
-#endif
-#endif /* LBXPROXY_t */
-
 #if !defined(TRANS)
 #define TRANS(func) _XTrans##func
 #ifdef XTRANSDEBUG
diff --git a/Xtranssock.c b/Xtranssock.c
index 2cda9bb..866f4ab 100644
--- a/Xtranssock.c
+++ b/Xtranssock.c
@@ -215,14 +215,6 @@ static int TRANS(SocketINETClose) (XtransConnInfo ciptr);
 #define UNIX_PATH "/tmp/.ICE-unix/"
 #define UNIX_DIR "/tmp/.ICE-unix"
 #endif /* ICE_t */
-#if defined(TEST_t)
-#define UNIX_PATH "/tmp/.Test-unix/test"
-#define UNIX_DIR "/tmp/.Test-unix"
-#endif
-#if defined(LBXPROXY_t)
-#define UNIX_PATH "/tmp/.X11-unix/X"
-#define UNIX_DIR  "/tmp/.X11-unix"
-#endif
 
 
 #endif /* UNIXCONN */
-- 
2.16.4

++++++ xtrans-1.3.5.tar.bz2 -> xtrans-1.4.0.tar.bz2 ++++++
++++ 7847 lines of diff (skipped)


Reply via email to