summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMart Raudsepp <leio@gentoo.org>2018-02-03 21:22:01 +0200
committerMart Raudsepp <leio@gentoo.org>2018-02-03 21:38:42 +0200
commit0c5751081595a053ab37e645b0543a9be19f3b52 (patch)
treeb59dfd932d6ab23b6584c7a605051fbc56148573 /dev-python/dbusmock/files
parentdev-libs/libgweather: remove old (diff)
downloadgentoo-0c5751081595a053ab37e645b0543a9be19f3b52.tar.gz
gentoo-0c5751081595a053ab37e645b0543a9be19f3b52.tar.bz2
gentoo-0c5751081595a053ab37e645b0543a9be19f3b52.zip
dev-python/dbusmock: remove old
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'dev-python/dbusmock/files')
-rw-r--r--dev-python/dbusmock/files/0.16.7-disable-pyflakes-test.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/dev-python/dbusmock/files/0.16.7-disable-pyflakes-test.patch b/dev-python/dbusmock/files/0.16.7-disable-pyflakes-test.patch
deleted file mode 100644
index 160003ce5eac..000000000000
--- a/dev-python/dbusmock/files/0.16.7-disable-pyflakes-test.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-https://github.com/martinpitt/python-dbusmock/issues/28
-
---- a/tests/test_code.orig
-+++ b/tests/test_code.py
-@@ -17,6 +17,7 @@
-
-
- class StaticCodeTests(unittest.TestCase):
-+ """
- @unittest.skipIf(subprocess.call(['which', 'pyflakes'],
- stdout=subprocess.PIPE) != 0,
- 'pyflakes not installed')
-@@ -25,6 +26,7 @@
- universal_newlines=True)
- (out, err) = pyflakes.communicate()
- self.assertEqual(pyflakes.returncode, 0, out)
-+ """
-
- @unittest.skipIf(subprocess.call(['which', 'pep8'],
- stdout=subprocess.PIPE) != 0,