File: Customize-paths-for-Debian.patch

package info (click to toggle)
spyder 6.0.5%2Bds-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 24,676 kB
  • sloc: python: 121,632; sh: 420; xml: 142; javascript: 131; cpp: 67; makefile: 20; ansic: 19; erlang: 15; lisp: 11; java: 5
file content (25 lines) | stat: -rw-r--r-- 751 bytes parent folder | download | duplicates (2)
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
Description: Customize paths for Debian
Author: Debian Science Maintainers
  <debian-science-maintainers@lists.alioth.debian.org>
Forwarded: not-needed
Last-Update: 2014-07-18

---
 spyder/__init__.py | 5 +++++
 1 file changed, 5 insertions(+)

--- a/spyder/__init__.py
+++ b/spyder/__init__.py
@@ -47,7 +47,11 @@
 
 # Dear (Debian, RPM, ...) package makers, please feel free to customize the
 # following path to module's data (images) and translations:
-DATAPATH = LOCALEPATH = DOCPATH = MATHJAXPATH = JQUERYPATH = ''
+DATAPATH = '/usr/share/spyder/images'
+LOCALEPATH = '/usr/share/spyder/locale'
+DOCPATH = '/usr/share/doc/spyder-doc/html'
+MATHJAXPATH = '/usr/share/javascript/mathjax'
+JQUERYPATH = '/usr/share/javascript/jquery'
 
 
 import os