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/yapsy/files/
Date: Tue, 02 Jun 2020 04:28:34
Message-Id: 1591072083.d5a3d0f1a24ade39ac3c38a4a5f3f57dea2dbc50.bman@gentoo
1 commit: d5a3d0f1a24ade39ac3c38a4a5f3f57dea2dbc50
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Tue May 19 19:24:59 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 2 04:28:03 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5a3d0f1
7
8 dev-python/yapsy: remove unused patch(es)
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/15883
12 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
13
14 .../files/yapsy-1.11.223-python36-tests.patch | 22 ----------------------
15 1 file changed, 22 deletions(-)
16
17 diff --git a/dev-python/yapsy/files/yapsy-1.11.223-python36-tests.patch b/dev-python/yapsy/files/yapsy-1.11.223-python36-tests.patch
18 deleted file mode 100644
19 index 55b6b00873b..00000000000
20 --- a/dev-python/yapsy/files/yapsy-1.11.223-python36-tests.patch
21 +++ /dev/null
22 @@ -1,22 +0,0 @@
23 -From b79ab28e430995cd64923bb93474b214bc38529b Mon Sep 17 00:00:00 2001
24 -From: Thibauld Nion <thibauld@×××××××××.net>
25 -Date: Sun, 29 Jan 2017 18:31:06 +0100
26 -Subject: [PATCH] fix error on python 3.6
27 -
28 ----
29 - test/test_ErrorInPlugin.py | 2 +-
30 - 1 file changed, 1 insertion(+), 1 deletion(-)
31 -
32 -diff --git a/test/test_ErrorInPlugin.py b/test/test_ErrorInPlugin.py
33 -index 171ce5d..9f22dcf 100644
34 ---- a/test/test_ErrorInPlugin.py
35 -+++ b/test/test_ErrorInPlugin.py
36 -@@ -50,7 +50,7 @@ def errorMock(*args,**kwargs):
37 - self.assertEqual(len(callback_infos),1)
38 - self.assertTrue(isinstance(callback_infos[0].error,tuple))
39 - self.assertEqual(loadedPlugins[0],callback_infos[0])
40 -- self.assertEqual(callback_infos[0].error[0],ImportError)
41 -+ self.assertTrue(issubclass(callback_infos[0].error[0],ImportError))
42 - # check that the getCategories works
43 - self.assertEqual(len(spm.getCategories()),1)
44 - sole_category = spm.getCategories()[0]