diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2020-07-31 19:29:33 +0200 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2020-07-31 14:33:17 -0400 |
commit | d392c6e1a39abb739241e90ed6142ab6fbc0f0fd (patch) | |
tree | a48cc62270093df5fcf0a24539b9da210d5ddabe /dev-python/llvmlite | |
parent | dev-tex/bibtex2html: Drop old (diff) | |
download | gentoo-d392c6e1a39abb739241e90ed6142ab6fbc0f0fd.tar.gz gentoo-d392c6e1a39abb739241e90ed6142ab6fbc0f0fd.tar.bz2 gentoo-d392c6e1a39abb739241e90ed6142ab6fbc0f0fd.zip |
dev-python/llvmlite: remove unused patch
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'dev-python/llvmlite')
-rw-r--r-- | dev-python/llvmlite/files/llvmlite-0.15.0-use-system-six.patch | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/dev-python/llvmlite/files/llvmlite-0.15.0-use-system-six.patch b/dev-python/llvmlite/files/llvmlite-0.15.0-use-system-six.patch deleted file mode 100644 index f7cfeae404ad..000000000000 --- a/dev-python/llvmlite/files/llvmlite-0.15.0-use-system-six.patch +++ /dev/null @@ -1,50 +0,0 @@ -Description: use packaged six instead of stripped module -Author: Daniel Stender <debian@danielstender.com> -Forwarded: not-needed -Last-Update: 2016-21-06 - ---- a/llvmlite/binding/ffi.py -+++ b/llvmlite/binding/ffi.py -@@ -3,7 +3,7 @@ import os - - from .common import _decode_string, _is_shutting_down - from ..utils import get_library_name --from ..six import PY2 -+from six import PY2 - - - def _make_opaque_ref(name): ---- a/llvmlite/ir/values.py -+++ b/llvmlite/ir/values.py -@@ -7,7 +7,7 @@ from __future__ import print_function, absolute_import - - import string - --from .. import six -+import six - from . import types, _utils - from ._utils import _StrCaching, _StringReferenceCaching, _HasMetadata - ---- a/llvmlite/tests/customize.py -+++ b/llvmlite/tests/customize.py -@@ -12,7 +12,7 @@ import unittest - import warnings - from unittest import result, runner, signals - --from ..six import StringIO -+from six import StringIO - - - # "unittest.main" is really the TestProgram class! ---- a/llvmlite/tests/test_binding.py -+++ b/llvmlite/tests/test_binding.py -@@ -12,7 +12,8 @@ import subprocess - import sys - import unittest - --from llvmlite import six, ir -+from llvmlite import ir -+import six - from llvmlite import binding as llvm - from llvmlite.binding import ffi - from . import TestCase |