diff options
| author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-03-17 13:14:45 +0100 |
|---|---|---|
| committer | Arthur Zamarin <arthurzam@gentoo.org> | 2023-03-17 14:34:11 +0200 |
| commit | aedf9819765ae28dcc80f3f81e0ef8c707be5dba (patch) | |
| tree | 56c5797a0d7375b35f82d2dfbb95b79f5a91cd78 /dev-python | |
| parent | 6d557b52c81b6b00fb247e9eccb979ccfe57138a (diff) | |
| download | gentoo-aedf9819765ae28dcc80f3f81e0ef8c707be5dba.tar.gz gentoo-aedf9819765ae28dcc80f3f81e0ef8c707be5dba.tar.bz2 gentoo-aedf9819765ae28dcc80f3f81e0ef8c707be5dba.zip | |
dev-python/automat: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python')
3 files changed, 0 insertions, 100 deletions
diff --git a/dev-python/automat/files/automat-20.2.0-ignore-m2r.patch b/dev-python/automat/files/automat-20.2.0-ignore-m2r.patch deleted file mode 100644 index 5e3ef39f33e1..000000000000 --- a/dev-python/automat/files/automat-20.2.0-ignore-m2r.patch +++ /dev/null @@ -1,25 +0,0 @@ -Completely ignore m2r (which is now last-rited) so we can drop the hard-blocker -which makes world upgrades a pain (installed m2r would break b/c of newer -mistune, and would break automat build). - -https://github.com/miyakogi/m2r/issues/66 -https://bugs.gentoo.org/848900 -https://bugs.gentoo.org/847532 ---- a/setup.py -+++ b/setup.py -@@ -4,13 +4,8 @@ Setup file for automat - - from setuptools import setup, find_packages - --try: -- from m2r import parse_from_file -- long_description = parse_from_file('README.md') --except(IOError, ImportError): -- print("\n\n!!! m2r not found, long_description is bad, don't upload this to PyPI !!!\n\n") -- import io -- long_description = io.open('README.md', encoding="utf-8").read() -+import io -+long_description = io.open('README.md', encoding="utf-8").read() - - setup( - name='Automat', diff --git a/dev-python/automat/files/automat-20.2.0-py311.patch b/dev-python/automat/files/automat-20.2.0-py311.patch deleted file mode 100644 index 14ca69e7235d..000000000000 --- a/dev-python/automat/files/automat-20.2.0-py311.patch +++ /dev/null @@ -1,23 +0,0 @@ -https://github.com/glyph/automat/commit/d0c2845ead9b8f576042d42134bfb5c63086be39 - -diff --git a/automat/_introspection.py b/automat/_introspection.py -index 3f7307d..403cddb 100644 ---- a/automat/_introspection.py -+++ b/automat/_introspection.py -@@ -6,6 +6,8 @@ - - - def copycode(template, changes): -+ if hasattr(code, "replace"): -+ return template.replace(**{"co_" + k : v for k, v in changes.items()}) - names = [ - "argcount", "nlocals", "stacksize", "flags", "code", "consts", - "names", "varnames", "filename", "name", "firstlineno", "lnotab", -@@ -23,7 +25,6 @@ def copycode(template, changes): - return code(*values) - - -- - def copyfunction(template, funcchanges, codechanges): - names = [ - "globals", "name", "defaults", "closure", diff --git a/dev-python/automat/files/test_visualize-twisted-import-errors.patch b/dev-python/automat/files/test_visualize-twisted-import-errors.patch deleted file mode 100644 index b3d8938cf7de..000000000000 --- a/dev-python/automat/files/test_visualize-twisted-import-errors.patch +++ /dev/null @@ -1,52 +0,0 @@ -From 9f6312e0c2504c27b72bb228a37ed5ac58776e94 Mon Sep 17 00:00:00 2001 -From: Brian Dolbec <dolsen@gentoo.org> -Date: Wed, 10 Jun 2020 07:31:45 -0700 -Subject: [PATCH] Fix _test_visualize.py twisted import errors - -When graphviz modules are installed but not twisted, this creates test failures -in _discover.py which hard depends on twisted being installed. - -Signed-off-by: Brian Dolbec <dolsen@gentoo.org> ---- - automat/_test/test_visualize.py | 4 ++++ - 1 file changed, 4 insertions(+) - -diff --git a/automat/_test/test_visualize.py b/automat/_test/test_visualize.py -index 987eb3c..142c4bf 100644 ---- a/automat/_test/test_visualize.py -+++ b/automat/_test/test_visualize.py -@@ -62,6 +62,7 @@ def sampleMachine(): - - - @skipIf(not isGraphvizModuleInstalled(), "Graphviz module is not installed.") -+@skipIf(not isTwistedInstalled(), "Twisted is not installed.") - class ElementMakerTests(TestCase): - """ - L{elementMaker} generates HTML representing the specified element. -@@ -134,6 +135,7 @@ def isLeaf(element): - - - @skipIf(not isGraphvizModuleInstalled(), "Graphviz module is not installed.") -+@skipIf(not isTwistedInstalled(), "Twisted is not installed.") - class TableMakerTests(TestCase): - """ - Tests that ensure L{tableMaker} generates HTML tables usable as -@@ -214,6 +216,7 @@ class TableMakerTests(TestCase): - - @skipIf(not isGraphvizModuleInstalled(), "Graphviz module is not installed.") - @skipIf(not isGraphvizInstalled(), "Graphviz tools are not installed.") -+@skipIf(not isTwistedInstalled(), "Twisted is not installed.") - class IntegrationTests(TestCase): - """ - Tests which make sure Graphviz can understand the output produced by -@@ -232,6 +235,7 @@ class IntegrationTests(TestCase): - - - @skipIf(not isGraphvizModuleInstalled(), "Graphviz module is not installed.") -+@skipIf(not isTwistedInstalled(), "Twisted is not installed.") - class SpotChecks(TestCase): - """ - Tests to make sure that the output contains salient features of the machine --- -libgit2 0.99.0 - |
