diff options
author | Marien Zwart <marienz@gentoo.org> | 2012-09-27 18:14:32 +0000 |
---|---|---|
committer | Marien Zwart <marienz@gentoo.org> | 2012-09-27 18:14:32 +0000 |
commit | 06ff78eb40f83e261e963b4d9d7b2483d7e0ffc3 (patch) | |
tree | 6073a67c0da98e043d01a3a327b6a2efc59f757d /dev-python/twisted/files | |
parent | stable ppc ppc64, bug #436368 (diff) | |
download | gentoo-2-06ff78eb40f83e261e963b4d9d7b2483d7e0ffc3.tar.gz gentoo-2-06ff78eb40f83e261e963b4d9d7b2483d7e0ffc3.tar.bz2 gentoo-2-06ff78eb40f83e261e963b4d9d7b2483d7e0ffc3.zip |
Bump to 12.2.0 (bug #423777) with some test-related ebuild improvements.
(Portage version: 2.2.0_alpha133/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/twisted/files')
-rw-r--r-- | dev-python/twisted/files/twisted-12.1.0-remove-tests-conch-dependency.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/dev-python/twisted/files/twisted-12.1.0-remove-tests-conch-dependency.patch b/dev-python/twisted/files/twisted-12.1.0-remove-tests-conch-dependency.patch new file mode 100644 index 000000000000..db2e2454bbc6 --- /dev/null +++ b/dev-python/twisted/files/twisted-12.1.0-remove-tests-conch-dependency.patch @@ -0,0 +1,15 @@ +Index: twisted/test/test_strcred.py +=================================================================== +--- twisted/test/test_strcred.py (revision 34525) ++++ twisted/test/test_strcred.py (working copy) +@@ -352,6 +352,10 @@ + except ImportError: + skip = "PyCrypto is not available" + ++ try: ++ from twisted import conch ++ except ImportError: ++ skip = "Twisted Conch is not available" + + def test_isChecker(self): + """ |