summaryrefslogtreecommitdiff
path: root/app-misc/pax-utils
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-12-28 04:06:07 +0000
committerV3n3RiX <venerix@redcorelinux.org>2017-12-28 04:06:07 +0000
commitccf84bcd604130256d1377cd58f0a634ae6ee20f (patch)
treef42a709e0c7805183f5680883bc76dc935b7a0cc /app-misc/pax-utils
parentc85a90f90521c7e11d618b527d6630cc64cecbd4 (diff)
gentoo resync : 28.12.2017
Diffstat (limited to 'app-misc/pax-utils')
-rw-r--r--app-misc/pax-utils/Manifest1
-rw-r--r--app-misc/pax-utils/files/0001-lddtree.py-work-around-pyelftools-API-change.patch29
2 files changed, 0 insertions, 30 deletions
diff --git a/app-misc/pax-utils/Manifest b/app-misc/pax-utils/Manifest
index 81402455e04d..b82312e201c0 100644
--- a/app-misc/pax-utils/Manifest
+++ b/app-misc/pax-utils/Manifest
@@ -1,4 +1,3 @@
-AUX 0001-lddtree.py-work-around-pyelftools-API-change.patch 698 BLAKE2B 89d5cd05b2d6361887402d35ac68d4eacaa02255bd907f14bcb8aec226afa1552588cebac7cea2a337ee9a8ed828c411df9f8e0879d1a83998f0b756b41cf263 SHA512 0de6faafa5fb7f6d45c42f84cf5f5aec728130507b4231f7bc2b6499481d2caca49151f9eb72bdf82856f771d91972e930871079e6434179492f7cae9463f890
AUX pax-utils-1.2.2-linux-2.6.32.patch 2152 BLAKE2B d068e7fbcab2ca3c61dc186f28132e9efa063db05a4a6df1c04aef6f978a6ead67d11a867e99ddab1ca78dd024097cf5e805c3dd95ca6320a0617f4ac607a676 SHA512 3a39e08e327e5389fb4a249dc27049a716695bd310197eafc54b62458e167eba53848e9fa3b0aa05e224a8f468fc130b979d0d314ca1dc8cbb0c5c494d67b352
AUX pax-utils-1.2.2-scanelf-fix-out-of-bounds-access-in-ia64.patch 2032 BLAKE2B 29af365d08618cc85ad57dce8a041857f1d04164a4b26c6184a2009b02f09b3ed9977c90031d359492dfd947ba09033d76211f310169207171639a5a189567b1 SHA512 b0e0679c726acc56686b23b6d4720cd5b7e4dff3f007e0443e3ec37a434ffb2def2c351c81ef960bf8e1008769662851017ef9aaedc9b52890578db4d313a54e
AUX pax-utils-1.2.2-solaris.patch 5673 BLAKE2B af1fe089d469029922b09be19fe2e9d9271f9ee7ceac9826282d2eb3461a656f21c96720cdbc8b9c91661ac23327a8e5053ed7675afd47d7d8a037525a6d992d SHA512 df5cecdafe796fa7616767b93def2cd51d82a8911f7b195ca25048fb93a067a819cd362d3f5b4b02308ce67a688938a40aa2ecb04570d7bf3db83cb9847f62f1
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 7a8b74ea1e03..000000000000
--- 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 <floppym@gentoo.org>
-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
-