Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/pax-utils/files/
Date: Wed, 27 Dec 2017 18:40:59
Message-Id: 1514400009.c4e5190af9ddf949ec8e980153d2629dd1d3c188.soap@gentoo
1 commit: c4e5190af9ddf949ec8e980153d2629dd1d3c188
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Wed Dec 27 09:56:26 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 27 18:40:09 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4e5190a
7
8 app-misc/pax-utils: remove unused patch
9
10 Closes: https://github.com/gentoo/gentoo/pull/6659
11
12 ...tree.py-work-around-pyelftools-API-change.patch | 29 ----------------------
13 1 file changed, 29 deletions(-)
14
15 diff --git a/app-misc/pax-utils/files/0001-lddtree.py-work-around-pyelftools-API-change.patch b/app-misc/pax-utils/files/0001-lddtree.py-work-around-pyelftools-API-change.patch
16 deleted file mode 100644
17 index 7a8b74ea1e0..00000000000
18 --- a/app-misc/pax-utils/files/0001-lddtree.py-work-around-pyelftools-API-change.patch
19 +++ /dev/null
20 @@ -1,29 +0,0 @@
21 -From 6557b1512ebfda508345e032e09ed85789c16c98 Mon Sep 17 00:00:00 2001
22 -From: Mike Gilbert <floppym@g.o>
23 -Date: Tue, 8 Nov 2016 15:37:27 -0500
24 -Subject: [PATCH] lddtree.py: work around pyelftools API change
25 -
26 -Section names now get returned as strings rather than bytes. See
27 -108eaea9 upstream.
28 -
29 -Bug: https://bugs.gentoo.org/599082
30 ----
31 - lddtree.py | 2 ++
32 - 1 file changed, 2 insertions(+)
33 -
34 -diff --git a/lddtree.py b/lddtree.py
35 -index 3971a9a..8480248 100755
36 ---- a/lddtree.py
37 -+++ b/lddtree.py
38 -@@ -72,6 +72,8 @@ def dbg(debug, *args, **kwargs):
39 -
40 - def bstr(buf):
41 - """Decode the byte string into a string"""
42 -+ if isinstance(buf, str):
43 -+ return buf
44 - return buf.decode('utf-8')
45 -
46 -
47 ---
48 -2.10.2
49 -