[SCM] python-pyo/master: Fixing changelog

tiago at users.alioth.debian.org tiago at users.alioth.debian.org
Sun Aug 31 00:08:37 UTC 2014


The following commit has been merged in the master branch:
commit 31fb88ba7bd7555bf4e09f20a51babae440b7e15
Author: Tiago Bortoletto Vaz <tiago at debian.org>
Date:   Sat Aug 30 17:14:38 2014 -0400

    Fixing changelog

diff --git a/debian/changelog b/debian/changelog
index 7e3d573..91075d7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-python-pyo (0.7) unstable; urgency=medium
+python-pyo (0.7-1) unstable; urgency=medium
 
   * New upstream version.
 
diff --git a/utils/E-Pyo.py b/utils/E-Pyo.py
index 31f0b5f..3f85ba9 100755
--- a/utils/E-Pyo.py
+++ b/utils/E-Pyo.py
@@ -223,7 +223,7 @@ if OSX_APP_BUNDLED:
 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()
@@ -240,9 +240,9 @@ if not os.path.isdir(SNIPPETS_PATH):
                 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
@@ -271,12 +271,12 @@ if not os.path.isdir(STYLES_PATH):
         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:
@@ -290,7 +290,7 @@ if not os.path.isfile(MARKERS_FILE):
     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