Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/llvmlite/files/
Date: Fri, 31 Jul 2020 18:33:26
Message-Id: 1596220397.d392c6e1a39abb739241e90ed6142ab6fbc0f0fd.bman@gentoo
1 commit: d392c6e1a39abb739241e90ed6142ab6fbc0f0fd
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Fri Jul 31 17:29:33 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 31 18:33:17 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d392c6e1
7
8 dev-python/llvmlite: remove unused patch
9
10 Package-Manager: Portage-3.0.1, Repoman-2.3.23
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
13
14 .../files/llvmlite-0.15.0-use-system-six.patch | 50 ----------------------
15 1 file changed, 50 deletions(-)
16
17 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
18 deleted file mode 100644
19 index f7cfeae404a..00000000000
20 --- a/dev-python/llvmlite/files/llvmlite-0.15.0-use-system-six.patch
21 +++ /dev/null
22 @@ -1,50 +0,0 @@
23 -Description: use packaged six instead of stripped module
24 -Author: Daniel Stender <debian@×××××××××××××.com>
25 -Forwarded: not-needed
26 -Last-Update: 2016-21-06
27 -
28 ---- a/llvmlite/binding/ffi.py
29 -+++ b/llvmlite/binding/ffi.py
30 -@@ -3,7 +3,7 @@ import os
31 -
32 - from .common import _decode_string, _is_shutting_down
33 - from ..utils import get_library_name
34 --from ..six import PY2
35 -+from six import PY2
36 -
37 -
38 - def _make_opaque_ref(name):
39 ---- a/llvmlite/ir/values.py
40 -+++ b/llvmlite/ir/values.py
41 -@@ -7,7 +7,7 @@ from __future__ import print_function, absolute_import
42 -
43 - import string
44 -
45 --from .. import six
46 -+import six
47 - from . import types, _utils
48 - from ._utils import _StrCaching, _StringReferenceCaching, _HasMetadata
49 -
50 ---- a/llvmlite/tests/customize.py
51 -+++ b/llvmlite/tests/customize.py
52 -@@ -12,7 +12,7 @@ import unittest
53 - import warnings
54 - from unittest import result, runner, signals
55 -
56 --from ..six import StringIO
57 -+from six import StringIO
58 -
59 -
60 - # "unittest.main" is really the TestProgram class!
61 ---- a/llvmlite/tests/test_binding.py
62 -+++ b/llvmlite/tests/test_binding.py
63 -@@ -12,7 +12,8 @@ import subprocess
64 - import sys
65 - import unittest
66 -
67 --from llvmlite import six, ir
68 -+from llvmlite import ir
69 -+import six
70 - from llvmlite import binding as llvm
71 - from llvmlite.binding import ffi
72 - from . import TestCase