[SCM] python-pyo/master: Adding new patch.

tiago at users.alioth.debian.org tiago at users.alioth.debian.org
Sun Apr 13 04:42:09 UTC 2014


The following commit has been merged in the master branch:
commit 769dc8c081e2904ac9f559f80062de78686bb8d3
Author: Tiago Bortoletto Vaz <tiago at debian.org>
Date:   Sun Apr 13 00:41:44 2014 -0400

    Adding new patch.

diff --git a/debian/patches/01-epyo_paths b/debian/patches/01-epyo_paths
new file mode 100644
index 0000000..b666e19
--- /dev/null
+++ b/debian/patches/01-epyo_paths
@@ -0,0 +1,48 @@
+--- a/utils/E-Pyo.py
++++ b/utils/E-Pyo.py
+@@ -210,7 +210,7 @@
+ elif WIN_APP_BUNDLED:
+     EXAMPLE_PATH = os.path.join(os.getcwd(), "Resources", "examples")
+ else:
+-    EXAMPLE_PATH = os.path.join(os.getcwd(), "../examples")
++    EXAMPLE_PATH = "/usr/share/doc/python-pyo/examples"
+ EXAMPLE_FOLDERS = [folder.capitalize() for folder in os.listdir(EXAMPLE_PATH) if folder[0] != "." and folder not in ["snds", "fft"]]
+ EXAMPLE_FOLDERS.append("FFT")
+ EXAMPLE_FOLDERS.sort()
+@@ -227,9 +227,9 @@
+                 for file in files:
+                     shutil.copy(os.path.join(os.getcwd(), "Resources", "snippets", rep, file), os.path.join(SNIPPETS_PATH, rep))
+             else:
+-                files = [f for f in os.listdir(os.path.join(os.getcwd(), "snippets", rep)) if f[0] != "."]
++                files = [f for f in os.listdir(os.path.join("/usr/lib/python-pyo", "snippets", rep)) if f[0] != "."]
+                 for file in files:
+-                    shutil.copy(os.path.join(os.getcwd(), "snippets", rep, file), os.path.join(SNIPPETS_PATH, rep))
++                    shutil.copy(os.path.join("/usr/lib/python-pyo", "snippets", rep, file), os.path.join(SNIPPETS_PATH, rep))
+ SNIPPETS_CATEGORIES = [rep for rep in os.listdir(SNIPPETS_PATH) if os.path.isdir(os.path.join(SNIPPETS_PATH, rep))]
+ SNIPPET_DEL_FILE_ID = 30
+ SNIPPET_ADD_FOLDER_ID = 31
+@@ -258,12 +258,12 @@
+         for file in files:
+             shutil.copy(os.path.join(os.getcwd(), "Resources", "styles", file), os.path.join(STYLES_PATH, file))
+     else:
+-        files = [f for f in os.listdir(os.path.join(os.getcwd(), "styles")) if f[0] != "."]
++        files = [f for f in os.listdir(os.path.join("/usr/lib/python-pyo", "styles")) if f[0] != "."]
+         for file in files:
+-            shutil.copy(os.path.join(os.getcwd(), "styles", file), os.path.join(STYLES_PATH, file))
++            shutil.copy(os.path.join("/usr/lib/python-pyo", "styles", file), os.path.join(STYLES_PATH, file))
+ DEFAULT_STYLE = os.path.join(STYLES_PATH, "Default")
+ if not os.path.isfile(os.path.join(STYLES_PATH, "Default")):
+-    shutil.copy(os.path.join(os.getcwd(), "styles", "Default"), DEFAULT_STYLE)
++    shutil.copy(os.path.join("/usr/lib/python-pyo", "styles", "Default"), DEFAULT_STYLE)
+ if PREFERENCES.has_key("pref_style"):
+     PREF_STYLE = os.path.join(ensureNFD(STYLES_PATH), PREFERENCES["pref_style"])
+ else:
+@@ -277,7 +277,7 @@
+     with open(MARKERS_FILE, "w") as f:
+         f.write("=\n")
+ 
+-BACKGROUND_SERVER_DEFAULT_ARGS = 'sr=44100, nchnls=2, buffersize=256, duplex=1, audio="portaudio", jackname="pyo"'
++BACKGROUND_SERVER_DEFAULT_ARGS = 'sr=44100, nchnls=2, buffersize=256, duplex=1, audio="jack", jackname="pyo"'
+ BACKGROUND_SERVER_ARGS = PREFERENCES.get("background_server_args", BACKGROUND_SERVER_DEFAULT_ARGS)
+ 
+ ################## TEMPLATES ##################

-- 
python-pyo packaging



More information about the pkg-multimedia-commits mailing list