public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Seifert" <soap@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rope/files/
Date: Mon, 19 Sep 2016 21:23:59 +0000 (UTC)	[thread overview]
Message-ID: <1474320219.50e8e2a3acd802b59f8bbe1f2fd45773ba17432d.soap@gentoo> (raw)

commit:     50e8e2a3acd802b59f8bbe1f2fd45773ba17432d
Author:     Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Mon Sep 19 17:45:34 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon Sep 19 21:23:39 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50e8e2a3

dev-python/rope: remove unused patches

Closes: https://github.com/gentoo/gentoo/pull/2362

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 .../rope/files/rope-0.9.3-fix_tests_results.patch  | 16 -----
 dev-python/rope/files/rope-0.9.3-python2.7.patch   | 76 ----------------------
 2 files changed, 92 deletions(-)

diff --git a/dev-python/rope/files/rope-0.9.3-fix_tests_results.patch b/dev-python/rope/files/rope-0.9.3-fix_tests_results.patch
deleted file mode 100644
index 5250cc6..00000000
--- a/dev-python/rope/files/rope-0.9.3-fix_tests_results.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-https://bitbucket.org/agr/rope/issue/7/
-
---- ropetest/__init__.py
-+++ ropetest/__init__.py
-@@ -1,3 +1,4 @@
-+import sys
- import unittest
- 
- import ropetest.projecttest
-@@ -31,4 +32,5 @@
- 
- if __name__ == '__main__':
-     runner = unittest.TextTestRunner()
--    runner.run(suite())
-+    result = runner.run(suite())
-+    sys.exit(not result.wasSuccessful())

diff --git a/dev-python/rope/files/rope-0.9.3-python2.7.patch b/dev-python/rope/files/rope-0.9.3-python2.7.patch
deleted file mode 100644
index f1a4fe4..00000000
--- a/dev-python/rope/files/rope-0.9.3-python2.7.patch
+++ /dev/null
@@ -1,76 +0,0 @@
-Apply upstream changesets:
-https://bitbucket.org/agr/rope/changeset/1c100ebabc16
-https://bitbucket.org/agr/rope/changeset/f5eb880e0be2
-
-to fix issues with python 2.7
-
-https://bugs.gentoo.org/show_bug.cgi?id=326401
-https://bitbucket.org/agr/rope/issue/8/
-
---- a/rope/base/ast.py
-+++ b/rope/base/ast.py
-@@ -27,6 +27,10 @@
-     method_name = '_' + node.__class__.__name__
-     method = getattr(walker, method_name, None)
-     if method is not None:
-+        if isinstance(node, _ast.ImportFrom) and node.module is None:
-+            # In python < 2.7 ``node.module == ''`` for relative imports
-+            # but for python 2.7 it is None. Generalizing it to ''.
-+            node.module = ''
-         return method(node)
-     for child in get_child_nodes(node):
-         walk(child, walker)
---- a/rope/base/oi/runmod.py
-+++ b/rope/base/oi/runmod.py
-@@ -187,6 +187,7 @@
- 
-         def close(self):
-             self.sender.close()
-+            sys.settrace(None)
- 
-     def _realpath(path):
-         return os.path.realpath(os.path.abspath(os.path.expanduser(path)))
---- a/rope/refactor/importutils/module_imports.py
-+++ b/rope/refactor/importutils/module_imports.py
-@@ -428,7 +428,8 @@
-         if node.level:
-             level = node.level
-         import_info = importinfo.FromImport(
--            node.module, level, self._get_names(node.names))
-+            node.module or '', # see comment at rope.base.ast.walk
-+            level, self._get_names(node.names))
-         start_line = node.lineno
-         self.imports.append(importinfo.ImportStatement(
-                             import_info, node.lineno, end_line,
---- a/rope/refactor/patchedast.py
-+++ b/rope/refactor/patchedast.py
-@@ -350,7 +350,8 @@
-         children = ['from']
-         if node.level:
-             children.append('.' * node.level)
--        children.extend([node.module, 'import'])
-+        children.extend([node.module or '', # see comment at rope.base.ast.walk
-+                         'import'])
-         children.extend(self._child_nodes(node.names, ','))
-         self._handle(node, children)
- 
---- a/ropetest/refactor/patchedasttest.py
-+++ b/ropetest/refactor/patchedasttest.py
-@@ -441,6 +441,17 @@
-                            'import', ' ', 'alias'])
-         checker.check_children('alias', ['y', ' ', 'as', ' ', 'z'])
- 
-+    @testutils.run_only_for_25
-+    def test_from_node_relative_import(self):
-+        source = 'from . import y as z\n'
-+        ast = patchedast.get_patched_ast(source, True)
-+        checker = _ResultChecker(self, ast)
-+        checker.check_region('ImportFrom', 0, len(source) - 1)
-+        checker.check_children(
-+            'ImportFrom', ['from', ' ', '.', '', '', ' ',
-+                           'import', ' ', 'alias'])
-+        checker.check_children('alias', ['y', ' ', 'as', ' ', 'z'])
-+
-     def test_simple_gen_expr_node(self):
-         source = 'zip(i for i in x)\n'
-         ast = patchedast.get_patched_ast(source, True)


             reply	other threads:[~2016-09-19 21:24 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-19 21:23 David Seifert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-11-16  8:22 [gentoo-commits] repo/gentoo:master commit in: dev-python/rope/files/ Michał Górny

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1474320219.50e8e2a3acd802b59f8bbe1f2fd45773ba17432d.soap@gentoo \
    --to=soap@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox