Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/open-vm-tools/files/
Date: Fri, 15 Feb 2019 21:22:22
Message-Id: 1550265732.37d1cd04fe9a69eafa7b79ae0aa76c9f18b2cad9.floppym@gentoo
1 commit: 37d1cd04fe9a69eafa7b79ae0aa76c9f18b2cad9
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 15 21:22:12 2019 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 15 21:22:12 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37d1cd04
7
8 app-emulation/open-vm-tools: remove old patches
9
10 Package-Manager: Portage-2.3.59_p2, Repoman-2.3.12_p67
11 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
12
13 .../open-vm-tools/files/10.1.0-vgauth.patch | 25 ------------
14 .../open-vm-tools/files/10.2.5-libtirpc.patch | 45 ----------------------
15 2 files changed, 70 deletions(-)
16
17 diff --git a/app-emulation/open-vm-tools/files/10.1.0-vgauth.patch b/app-emulation/open-vm-tools/files/10.1.0-vgauth.patch
18 deleted file mode 100644
19 index bc91b1b141a..00000000000
20 --- a/app-emulation/open-vm-tools/files/10.1.0-vgauth.patch
21 +++ /dev/null
22 @@ -1,25 +0,0 @@
23 -From 488258effa60e293a70000338422c33ce5c73f9b Mon Sep 17 00:00:00 2001
24 -From: Mike Gilbert <floppym@g.o>
25 -Date: Fri, 25 Nov 2016 13:59:34 -0500
26 -Subject: [PATCH] build: Always link VGAuthService using CXX
27 -
28 ----
29 - open-vm-tools/vgauth/service/Makefile.am | 2 +-
30 - 1 file changed, 1 insertion(+), 1 deletion(-)
31 -
32 -diff --git a/open-vm-tools/vgauth/service/Makefile.am b/open-vm-tools/vgauth/service/Makefile.am
33 -index 8c51d9f2..8f99dad1 100644
34 ---- a/open-vm-tools/vgauth/service/Makefile.am
35 -+++ b/open-vm-tools/vgauth/service/Makefile.am
36 -@@ -95,7 +95,7 @@ if HAVE_ICU
37 - $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
38 - $(LDFLAGS) -o $@
39 - else
40 -- VGAuthService_LINK = $(LINK)
41 -+ VGAuthService_LINK = $(CXXLINK)
42 - endif
43 -
44 - # Message catalogs.
45 ---
46 -2.11.0.rc2
47 -
48
49 diff --git a/app-emulation/open-vm-tools/files/10.2.5-libtirpc.patch b/app-emulation/open-vm-tools/files/10.2.5-libtirpc.patch
50 deleted file mode 100644
51 index a9dfb42b2fc..00000000000
52 --- a/app-emulation/open-vm-tools/files/10.2.5-libtirpc.patch
53 +++ /dev/null
54 @@ -1,45 +0,0 @@
55 -From 75505fed193fc3779560b57c1b0d6d4209b05bf9 Mon Sep 17 00:00:00 2001
56 -From: Xiami <i@×××××××.com>
57 -Date: Thu, 14 Jun 2018 16:23:00 +0800
58 -Subject: [PATCH] lib/dynxdr: for libtirpc
59 -
60 -glibc-2.26 do not provide RPC support by default.
61 -This workaround only works for Gentoo as ebuild forces libtirpc.
62 ----
63 - open-vm-tools/lib/dynxdr/dynxdr.c | 6 +++---
64 - 1 file changed, 3 insertions(+), 3 deletions(-)
65 -
66 -diff --git a/open-vm-tools/lib/dynxdr/dynxdr.c b/open-vm-tools/lib/dynxdr/dynxdr.c
67 -index 95fdc7e2..d3182733 100644
68 ---- a/open-vm-tools/lib/dynxdr/dynxdr.c
69 -+++ b/open-vm-tools/lib/dynxdr/dynxdr.c
70 -@@ -55,7 +55,7 @@ typedef struct DynXdrData {
71 - * Mac OS X, FreeBSD and Solaris don't take a const parameter to the
72 - * "x_getpostn" function.
73 - */
74 --#if defined(__APPLE__) || defined(__FreeBSD__) || defined(sun)
75 -+#if defined(__APPLE__) || defined(__FreeBSD__) || defined(sun) || defined(_TIRPC_XDR_H)
76 - # define DYNXDR_GETPOS_CONST
77 - #else
78 - # define DYNXDR_GETPOS_CONST const
79 -@@ -172,7 +172,7 @@ DynXdrSetPos(XDR *xdrs, // IN
80 - }
81 -
82 -
83 --#if defined(__GLIBC__) || (defined(sun) && (defined(_LP64) || defined(_KERNEL)))
84 -+#if (defined(__GLIBC__) && !defined(_TIRPC_XDR_H)) || (defined(sun) && (defined(_LP64) || defined(_KERNEL)))
85 - /*
86 - *-----------------------------------------------------------------------------
87 - *
88 -@@ -322,7 +322,7 @@ DynXdr_Create(XDR *in) // IN
89 - DynXdrSetPos, /* x_setpostn */
90 - DynXdrInline, /* x_inline */
91 - NULL, /* x_destroy */
92 --#if defined(__GLIBC__)
93 -+#if defined(__GLIBC__) && !defined(_TIRPC_XDR_H)
94 - NULL, /* x_getint32 */
95 - DynXdrPutInt32, /* x_putint32 */
96 - #elif defined(__APPLE__)
97 ---
98 -2.16.4
99 -