Gentoo Archives: gentoo-commits

From: Rick Farina <zerochaos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libnl/files/
Date: Wed, 27 Apr 2022 15:27:50
Message-Id: 1651073227.43ee53796fd4b8e7be168ad0f47f16a31b204d8e.zerochaos@gentoo
1 commit: 43ee53796fd4b8e7be168ad0f47f16a31b204d8e
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Tue Apr 26 19:09:29 2022 +0000
4 Commit: Rick Farina <zerochaos <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 27 15:27:07 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43ee5379
7
8 dev-libs/libnl: remove unused patch
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
12 Signed-off-by: Rick Farina <zerochaos <AT> gentoo.org>
13 Closes: https://github.com/gentoo/gentoo/pull/25215
14
15 dev-libs/libnl/files/libnl-99999999-2to3.patch | 42 --------------------------
16 1 file changed, 42 deletions(-)
17
18 diff --git a/dev-libs/libnl/files/libnl-99999999-2to3.patch b/dev-libs/libnl/files/libnl-99999999-2to3.patch
19 deleted file mode 100644
20 index 66a16406d780..000000000000
21 --- a/dev-libs/libnl/files/libnl-99999999-2to3.patch
22 +++ /dev/null
23 @@ -1,42 +0,0 @@
24 ---- a/python/netlink/route/links/bridge.py
25 -+++ b/python/netlink/route/links/bridge.py
26 -@@ -6,7 +6,7 @@
27 -
28 - """
29 -
30 --from __future__ import absolute_import
31 -+
32 -
33 - from ... import core as netlink
34 - from .. import capi as capi
35 -@@ -19,10 +19,10 @@
36 -
37 - def bridge_assert_ext_info(self):
38 - if self._has_ext_info == False:
39 -- print """
40 -+ print("""
41 - Please update your kernel to be able to call this method.
42 - Your current kernel bridge version is too old to support this extention.
43 -- """
44 -+ """)
45 - raise RuntimeWarning()
46 -
47 - def port_state2str(self, state):
48 ---- a/doc/resolve-asciidoc-refs.py
49 -+++ b/doc/resolve-asciidoc-refs.py
50 -@@ -22,4 +22,4 @@
51 -
52 - rc = re.compile('|'.join(map(re.escape, sorted(refs, reverse=True))))
53 - for line in open(sys.argv[1], 'r'):
54 -- print rc.sub(translate, line),
55 -+ print(rc.sub(translate, line), end=' ')
56 ---- a/doc/doxygen-link.py
57 -+++ b/doc/doxygen-link.py
58 -@@ -1,6 +1,6 @@
59 - #!/usr/bin/env python
60 -
61 --from __future__ import print_function
62 -+
63 - import fileinput
64 - import re
65 - import sys