[SCM] supercollider/master: Strip accidental gremlin characters that can cause problems for users in some locales
danstowell-guest at users.alioth.debian.org
danstowell-guest at users.alioth.debian.org
Sun Jul 15 09:52:28 UTC 2012
The following commit has been merged in the master branch:
commit 98720cd12b4b1440f61aa3c45c1372dc4c4d96e8
Author: Dan Stowell <danstowell at users.sourceforge.net>
Date: Sun Jul 15 10:52:13 2012 +0100
Strip accidental gremlin characters that can cause problems for users in
some locales
diff --git a/debian/changelog b/debian/changelog
index 4810c54..b94bd82 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,8 @@ supercollider (1:3.5.3~repack-2) unstable; urgency=low
* Fix caps in supercollider-emacs remove script. Closes: #681187
* Boost-atomic build fix for PPC
* Note copyright for file adapted from wmctrl project
+ * Strip accidental gremlin characters that can cause problems for users in
+ some locales
[ Felipe Sateler ]
* Fix FTBFS in big endian architectures
diff --git a/debian/patches/series b/debian/patches/series
index 1f08be3..d31abfd 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -3,3 +3,4 @@ arm-qreal-is-float.patch
boost-big-endian-typo.patch
deactivate_perf_counter.patch
boostatomic_ppc_build.patch
+strip_gremlin_characters.patch
diff --git a/debian/patches/strip_gremlin_characters.patch b/debian/patches/strip_gremlin_characters.patch
new file mode 100644
index 0000000..071fa42
--- /dev/null
+++ b/debian/patches/strip_gremlin_characters.patch
@@ -0,0 +1,22 @@
+Author: Dan Stowell
+Description: Strip accidental gremlin characters that can cause problems for users in some locales. (Backported from upstream commit aeab35e3103d35)
+--- a/SCClassLibrary/JITLib/ProxySpace/wrapForNodeProxy.sc
++++ b/SCClassLibrary/JITLib/ProxySpace/wrapForNodeProxy.sc
+@@ -65,7 +65,7 @@
+
+ prepareForProxySynthDef { arg proxy;
+ proxy.initBus(\control, 1);
+- ^{ÊDC.multiNewList([proxy.rate] ++ this) };
++ ^{DC.multiNewList([proxy.rate] ++ this) };
+ }
+ }
+
+@@ -82,7 +82,7 @@
+ +RawArray {
+ prepareForProxySynthDef { arg proxy;
+ proxy.initBus(\control, this.size);
+- ^{ÊDC.multiNewList([proxy.rate] ++ this) };
++ ^{DC.multiNewList([proxy.rate] ++ this) };
+ }
+ }
+
--
supercollider packaging
More information about the pkg-multimedia-commits
mailing list