Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/typed-ast/files/
Date: Fri, 17 Mar 2023 12:34:23
Message-Id: 1679056452.6bd0f37b500ed7410328935e6900e8240f360abf.arthurzam@gentoo
1 commit: 6bd0f37b500ed7410328935e6900e8240f360abf
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Fri Mar 17 12:15:56 2023 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 17 12:34:12 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bd0f37b
7
8 dev-python/typed-ast: remove unused patch(es)
9
10 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
11 Closes: https://github.com/gentoo/gentoo/pull/30178
12 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
13
14 .../files/typed-ast-1.4.3-python310.patch | 30 ----------------------
15 1 file changed, 30 deletions(-)
16
17 diff --git a/dev-python/typed-ast/files/typed-ast-1.4.3-python310.patch b/dev-python/typed-ast/files/typed-ast-1.4.3-python310.patch
18 deleted file mode 100644
19 index 7c95f2465f0d..000000000000
20 --- a/dev-python/typed-ast/files/typed-ast-1.4.3-python310.patch
21 +++ /dev/null
22 @@ -1,30 +0,0 @@
23 -https://github.com/python/typed_ast/commit/123286721923ae8f3885dbfbad94d6ca940d5c96
24 -https://bugs.gentoo.org/874900
25 -
26 -From 123286721923ae8f3885dbfbad94d6ca940d5c96 Mon Sep 17 00:00:00 2001
27 -From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= <miro@×××××××.cz>
28 -Date: Wed, 10 Nov 2021 19:15:50 +0100
29 -Subject: [PATCH] Define _PyUnicode_DecodeUnicodeEscape even on Python 3.6+
30 - (#171)
31 -
32 ---- a/ast3/Python/ast.c
33 -+++ b/ast3/Python/ast.c
34 -@@ -56,6 +56,8 @@ _PyBytes_DecodeEscape(const char *s,
35 - return PyBytes_DecodeEscape(s, len, errors, unicode, recode_encoding);
36 - }
37 -
38 -+#endif
39 -+
40 - PyObject *
41 - _PyUnicode_DecodeUnicodeEscape(const char *s,
42 - Py_ssize_t size,
43 -@@ -66,8 +68,6 @@ _PyUnicode_DecodeUnicodeEscape(const char *s,
44 - return PyUnicode_DecodeUnicodeEscape(s, size, errors);
45 - }
46 -
47 --#endif
48 --
49 - static int validate_stmts(asdl_seq *);
50 - static int validate_exprs(asdl_seq *, expr_context_ty, int);
51 - static int validate_nonempty_seq(asdl_seq *, const char *, const char *);
52 -