diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-11-14 17:14:08 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-11-14 17:14:08 +0000 |
commit | 5cbfd18851d0c3bc02fdc46401ec716f916db185 (patch) | |
tree | ccceb73fc3659b49915a7e1647960fb318e2a9a8 /dev-python/reportlab/files | |
parent | Drop old version. (diff) | |
download | gentoo-2-5cbfd18851d0c3bc02fdc46401ec716f916db185.tar.gz gentoo-2-5cbfd18851d0c3bc02fdc46401ec716f916db185.tar.bz2 gentoo-2-5cbfd18851d0c3bc02fdc46401ec716f916db185.zip |
Delete older ebuilds.
Diffstat (limited to 'dev-python/reportlab/files')
-rw-r--r-- | dev-python/reportlab/files/2.1-test_fix.patch | 12 | ||||
-rw-r--r-- | dev-python/reportlab/files/2.1-test_no_network.patch | 14 | ||||
-rw-r--r-- | dev-python/reportlab/files/2.1-tests_report_failure.patch | 26 |
3 files changed, 0 insertions, 52 deletions
diff --git a/dev-python/reportlab/files/2.1-test_fix.patch b/dev-python/reportlab/files/2.1-test_fix.patch deleted file mode 100644 index 800102d3e1e6..000000000000 --- a/dev-python/reportlab/files/2.1-test_fix.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Naur reportlab_2_1.orig/reportlab/test/test_platypus_pleaseturnover.py reportlab_2_1/reportlab/test/test_platypus_pleaseturnover.py ---- reportlab_2_1.orig/reportlab/test/test_platypus_pleaseturnover.py 2007-06-23 10:28:17.000000000 +0200 -+++ reportlab_2_1/reportlab/test/test_platypus_pleaseturnover.py 2007-06-23 10:28:45.000000000 +0200 -@@ -113,7 +113,7 @@ - pto.alignment = TA_RIGHT - pto.fontSize -= 1 - def ColorParagraph(c,text,style): -- return Paragraph('<para color=%s>%s</para>' % (c,text),style) -+ return Paragraph('<para color="%s">%s</para>' % (c,text),style) - - def ptoblob(blurb,content,trailer=None,header=None, story=story, H1=H1): - if type(content) not in (type([]),type(())): content = [content] diff --git a/dev-python/reportlab/files/2.1-test_no_network.patch b/dev-python/reportlab/files/2.1-test_no_network.patch deleted file mode 100644 index d3b6548362ab..000000000000 --- a/dev-python/reportlab/files/2.1-test_no_network.patch +++ /dev/null @@ -1,14 +0,0 @@ ---- test/test_lib_utils.py 2008-05-13 14:57:23.350829336 +0300 -+++ test/test_lib_utils.py 2008-05-13 14:57:33.962839567 +0300 -@@ -95,11 +95,6 @@ - from reportlab.lib.utils import open_and_read - b = open_and_read('file:../docs/images/Edit_Prefs.gif') - -- def test9(self): -- "test open and read of an http: URL" -- from reportlab.lib.utils import open_and_read -- b = open_and_read('http://www.reportlab.com/rsrc/encryption.gif') -- - def test10(self): - "test open and read of a simple relative file" - from reportlab.lib.utils import open_and_read, getStringIO diff --git a/dev-python/reportlab/files/2.1-tests_report_failure.patch b/dev-python/reportlab/files/2.1-tests_report_failure.patch deleted file mode 100644 index c6c65dd868a4..000000000000 --- a/dev-python/reportlab/files/2.1-tests_report_failure.patch +++ /dev/null @@ -1,26 +0,0 @@ ---- reportlab_2_1/reportlab/test/runAll.py.orig 2007-05-24 13:08:05.000000000 +0200 -+++ reportlab_2_1/reportlab/test/runAll.py 2007-06-21 20:38:12.000000000 +0200 -@@ -59,7 +59,7 @@ - cleanOnly = '--clean' in sys.argv - if not cleanOnly: - testSuite = makeSuite(folder,nonImportable=NI,pattern=pattern+(not haveSRC and 'c' or '')) -- unittest.TextTestRunner().run(testSuite) -+ result = unittest.TextTestRunner().run(testSuite) - if haveSRC: cleanup(folder,patterns=('*.pyc','*.pyo')) - if not cleanOnly: - if NI: -@@ -67,6 +67,7 @@ - for f,tb in NI: - print 'file: "%s"\n%s\n' % (f,string.join(tb,'')) - printLocation() -+ return result - - def mainEx(): - '''for use in subprocesses''' -@@ -90,4 +91,5 @@ - return '\nFAILED' in outerr - - if __name__ == '__main__': #noruntests -- main() -+ if not main().wasSuccessful(): -+ sys.exit(-1) |