From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2DAD6138AE9 for ; Wed, 27 Dec 2017 18:40:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 663C9E0F78; Wed, 27 Dec 2017 18:40:56 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3DB62E0F87 for ; Wed, 27 Dec 2017 18:40:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CBDB6340AFC for ; Wed, 27 Dec 2017 18:40:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 28266AF74 for ; Wed, 27 Dec 2017 18:40:53 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1514400009.c4e5190af9ddf949ec8e980153d2629dd1d3c188.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/pax-utils/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/pax-utils/files/0001-lddtree.py-work-around-pyelftools-API-change.patch X-VCS-Directories: app-misc/pax-utils/files/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: c4e5190af9ddf949ec8e980153d2629dd1d3c188 X-VCS-Branch: master Date: Wed, 27 Dec 2017 18:40:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: bec48b16-d1aa-4bfb-af54-4b982c5bf597 X-Archives-Hash: 957c212c374d95975da402bad6a9b154 commit: c4e5190af9ddf949ec8e980153d2629dd1d3c188 Author: Michael Mair-Keimberger gmail com> AuthorDate: Wed Dec 27 09:56:26 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Dec 27 18:40:09 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4e5190a app-misc/pax-utils: remove unused patch Closes: https://github.com/gentoo/gentoo/pull/6659 ...tree.py-work-around-pyelftools-API-change.patch | 29 ---------------------- 1 file changed, 29 deletions(-) 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 deleted file mode 100644 index 7a8b74ea1e0..00000000000 --- a/app-misc/pax-utils/files/0001-lddtree.py-work-around-pyelftools-API-change.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 6557b1512ebfda508345e032e09ed85789c16c98 Mon Sep 17 00:00:00 2001 -From: Mike Gilbert -Date: Tue, 8 Nov 2016 15:37:27 -0500 -Subject: [PATCH] lddtree.py: work around pyelftools API change - -Section names now get returned as strings rather than bytes. See -108eaea9 upstream. - -Bug: https://bugs.gentoo.org/599082 ---- - lddtree.py | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/lddtree.py b/lddtree.py -index 3971a9a..8480248 100755 ---- a/lddtree.py -+++ b/lddtree.py -@@ -72,6 +72,8 @@ def dbg(debug, *args, **kwargs): - - def bstr(buf): - """Decode the byte string into a string""" -+ if isinstance(buf, str): -+ return buf - return buf.decode('utf-8') - - --- -2.10.2 -