[Python-modules-commits] r13747 - in packages/matplotlib/branches/experimental/debian (3 files)

morph at users.alioth.debian.org morph at users.alioth.debian.org
Thu Jul 1 18:16:11 UTC 2010


    Date: Thursday, July 1, 2010 @ 18:15:53
  Author: morph
Revision: 13747

* debian/patches/40_doc_clean_dont_fail
  - don't fail on doc clean if directories are missing

Added:
  packages/matplotlib/branches/experimental/debian/patches/40_doc_clean_dont_fail
Modified:
  packages/matplotlib/branches/experimental/debian/changelog
  packages/matplotlib/branches/experimental/debian/patches/series

Modified: packages/matplotlib/branches/experimental/debian/changelog
===================================================================
--- packages/matplotlib/branches/experimental/debian/changelog	2010-07-01 18:12:31 UTC (rev 13746)
+++ packages/matplotlib/branches/experimental/debian/changelog	2010-07-01 18:15:53 UTC (rev 13747)
@@ -5,8 +5,10 @@
     - updated to new upstream code
   * debian/patches/30_doc_pass_dpi.patch
     - removed, merged upstream
+  * debian/patches/40_doc_clean_dont_fail
+    - don't fail on doc clean if directories are missing
 
- -- Sandro Tosi <morph at debian.org>  Thu, 01 Jul 2010 18:53:20 +0200
+ -- Sandro Tosi <morph at debian.org>  Thu, 01 Jul 2010 19:11:23 +0200
 
 matplotlib (0.99.3-1) unstable; urgency=low
 

Added: packages/matplotlib/branches/experimental/debian/patches/40_doc_clean_dont_fail
===================================================================
--- packages/matplotlib/branches/experimental/debian/patches/40_doc_clean_dont_fail	                        (rev 0)
+++ packages/matplotlib/branches/experimental/debian/patches/40_doc_clean_dont_fail	2010-07-01 18:15:53 UTC (rev 13747)
@@ -0,0 +1,15 @@
+Index: matplotlib-1.0~rc1/doc/make.py
+===================================================================
+--- matplotlib-1.0~rc1.orig/doc/make.py	2010-07-01 19:06:36.778042187 +0200
++++ matplotlib-1.0~rc1/doc/make.py	2010-07-01 19:07:37.166042289 +0200
+@@ -65,8 +65,8 @@
+         print 'latex build has not been tested on windows'
+ 
+ def clean():
+-    shutil.rmtree("build")
+-    shutil.rmtree("examples")
++    shutil.rmtree("build", ignore_errors=True)
++    shutil.rmtree("examples", ignore_errors=True)
+     for pattern in ['mpl_examples/api/*.png',
+                     'mpl_examples/pylab_examples/*.png',
+                     'mpl_examples/pylab_examples/*.pdf',

Modified: packages/matplotlib/branches/experimental/debian/patches/series
===================================================================
--- packages/matplotlib/branches/experimental/debian/patches/series	2010-07-01 18:12:31 UTC (rev 13746)
+++ packages/matplotlib/branches/experimental/debian/patches/series	2010-07-01 18:15:53 UTC (rev 13747)
@@ -1,2 +1,3 @@
 10_build_fix.patch
 20_matplotlibrc_path_search_fix.patch
+40_doc_clean_dont_fail




More information about the Python-modules-commits mailing list