File: 1000_disable_submodule.diff

package info (click to toggle)
python-mpld3 0.3git%2B20140910dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,804 kB
  • ctags: 1,095
  • sloc: python: 3,595; makefile: 187
file content (30 lines) | stat: -rw-r--r-- 946 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Description: disable fetching of git submodule during build
Author: W. Martin Borgert <debacle@debian.org>
Origin: vendor
Last-Update: 2014-09-30
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/setup.py
+++ b/setup.py
@@ -23,7 +23,6 @@
 
 # Make sure submodules are updated and synced
 root_dir = os.path.abspath(os.path.dirname(__file__))
-require_clean_submodules(root_dir, sys.argv)
 
 # Warn if it looks like JS libs need to be built
 if 'buildjs' not in sys.argv:
@@ -41,11 +40,10 @@
       url=URL,
       download_url=DOWNLOAD_URL,
       license=LICENSE,
-      cmdclass={'submodule': UpdateSubmodules,
+      cmdclass={
                 'buildjs': BuildJavascript},
       packages=['mpld3',
-                'mpld3/mplexporter',
-                'mpld3/mplexporter/renderers'],
+                ],
       package_data={'mpld3': ['js/*.js']},
       classifiers=[
           'Development Status :: 4 - Beta',