[SCM] supercollider/master: Restrict (optional) supernova to its target archs

danstowell-guest at users.alioth.debian.org danstowell-guest at users.alioth.debian.org
Tue May 17 22:34:22 UTC 2016


The following commit has been merged in the master branch:
commit 837440f53425195c71a63651856e1717678bd4b5
Author: Dan Stowell <danstowell at users.sourceforge.net>
Date:   Tue May 17 23:05:00 2016 +0100

    Restrict (optional) supernova to its target archs
    
    i386, ia64, amd64

diff --git a/debian/control b/debian/control
index f5ae176..ed8035e 100644
--- a/debian/control
+++ b/debian/control
@@ -117,7 +117,7 @@ Description: integrated development environment for supercollider audio system
  working with SuperCollider code.
 
 Package: supercollider-supernova
-Architecture: any-i386 any-amd64 armel armhf ia64 mips mipsel s390 s390x
+Architecture: any-i386 any-amd64 ia64
 Depends: ${shlibs:Depends}, ${misc:Depends}, jackd
 Description: real time audio synthesis server (multiprocessor version)
  SuperCollider is an environment and programming language for real time
diff --git a/debian/rules b/debian/rules
index 3d36e0a..e15375a 100755
--- a/debian/rules
+++ b/debian/rules
@@ -21,15 +21,11 @@ DEB_INSTALL_MANPAGES_supercollider-language  = debian/sclang.1
 DEB_INSTALL_MANPAGES_supercollider-vim     = debian/scvim.1 debian/sclangpipe_app.1
 DEB_INSTALL_MANPAGES_supercollider-ide     = debian/scide.1
 
-# supernova (alternative to scsynth) uses fancy simd things which fail to build on sparc/powerpc
-ifeq ("$(DEB_HOST_ARCH_CPU)","sparc")
+# supernova (optional alternative to scsynth) uses fancy simd things which fail to build on non-target architectures
+ifeq (,$(findstring $(DEB_HOST_ARCH_CPU),"i386" "amd64" "ia64"))
 	DEB_BUILD_SUPERNOVA=off
 else
-	ifeq ("$(DEB_HOST_ARCH_CPU)","powerpc")
-		DEB_BUILD_SUPERNOVA=off
-	else
-		DEB_BUILD_SUPERNOVA=on
-	endif
+	DEB_BUILD_SUPERNOVA=on
 endif
 
 DEB_CMAKE_EXTRA_FLAGS = \

-- 
supercollider packaging



More information about the pkg-multimedia-commits mailing list