[arch-commits] Commit in mixxx/repos (6 files)

Lukas Fleischer lfleischer at archlinux.org
Sat Nov 12 11:28:39 UTC 2016


    Date: Saturday, November 12, 2016 @ 11:28:39
  Author: lfleischer
Revision: 195427

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  mixxx/repos/community-staging-i686/
  mixxx/repos/community-staging-i686/PKGBUILD
    (from rev 195426, mixxx/trunk/PKGBUILD)
  mixxx/repos/community-staging-i686/mixxx-2.0.0-gcc-6.patch
    (from rev 195426, mixxx/trunk/mixxx-2.0.0-gcc-6.patch)
  mixxx/repos/community-staging-x86_64/
  mixxx/repos/community-staging-x86_64/PKGBUILD
    (from rev 195426, mixxx/trunk/PKGBUILD)
  mixxx/repos/community-staging-x86_64/mixxx-2.0.0-gcc-6.patch
    (from rev 195426, mixxx/trunk/mixxx-2.0.0-gcc-6.patch)

--------------------------------------------------+
 community-staging-i686/PKGBUILD                  |   37 +++++++++++++++++++++
 community-staging-i686/mixxx-2.0.0-gcc-6.patch   |   17 +++++++++
 community-staging-x86_64/PKGBUILD                |   37 +++++++++++++++++++++
 community-staging-x86_64/mixxx-2.0.0-gcc-6.patch |   17 +++++++++
 4 files changed, 108 insertions(+)

Copied: mixxx/repos/community-staging-i686/PKGBUILD (from rev 195426, mixxx/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2016-11-12 11:28:39 UTC (rev 195427)
@@ -0,0 +1,37 @@
+# Maintainer: Lukas Fleischer <lfleischer at archlinux.org>
+# Contributor: Ali H. Caliskan <ali.h.caliskan AT gmail DOT com>
+# Contributor: Ryan Coyner <rcoyner at gmail.com>
+# Contributor: Stefan Husmann <stefan-husmann at t-online.de>
+
+pkgname=mixxx
+pkgver=2.0.0
+pkgrel=5
+pkgdesc="Free, open source software for digital DJ'ing."
+arch=('i686' 'x86_64')
+url='http://www.mixxx.org'
+license=('GPL')
+depends=('fftw' 'libid3tag' 'libmad' 'libogg' 'libshout' 'libsndfile' 'portaudio' 'portmidi'
+         'taglib' 'qtwebkit' 'vamp-plugin-sdk' 'libusbx' 'protobuf' 'faad2' 'libmp4v2'
+         'rubberband' 'chromaprint' 'sqlite' 'opus' 'opusfile')
+makedepends=('mesa' 'scons' 'libshout' 'glu')
+source=("https://downloads.mixxx.org/${pkgname}-${pkgver}/${pkgname}-${pkgver}-src.tar.gz"
+        mixxx-2.0.0-gcc-6.patch)
+md5sums=('5520a2f110f1078197d2ff914ccca37a'
+         '957245cf7a06e57d42fb7f8e3421a934')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -p1 -i ../mixxx-2.0.0-gcc-6.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  export SCONSFLAGS="-j $(nproc)"
+  scons build=release optimize=portable virtualize=0 localecompare=1 qt_sqlite_plugin=0 opus=1 \
+    qtdir=/usr/lib/qt4 prefix=/usr faad=1
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  scons qtdir=/usr/lib/qt4 prefix=/usr install_root="${pkgdir}/usr" install
+}

Copied: mixxx/repos/community-staging-i686/mixxx-2.0.0-gcc-6.patch (from rev 195426, mixxx/trunk/mixxx-2.0.0-gcc-6.patch)
===================================================================
--- community-staging-i686/mixxx-2.0.0-gcc-6.patch	                        (rev 0)
+++ community-staging-i686/mixxx-2.0.0-gcc-6.patch	2016-11-12 11:28:39 UTC (rev 195427)
@@ -0,0 +1,17 @@
+--- ./src/util/math.h.orig	2016-07-14 04:13:22.861482580 +0100
++++ ./src/util/math.h	2016-07-14 04:15:36.966067224 +0100
+@@ -4,7 +4,13 @@
+ // Causes MSVC to define M_PI and friends.
+ // http://msdn.microsoft.com/en-us/library/4hwaceh6.aspx
+ #define _USE_MATH_DEFINES
+-#include <cmath>
++#include <math.h>
++#include <cmath> 
++// Note: Because of our fpclassify hack, we actualy need to inlude both, 
++// the c and the c++ version of the math header.  
++// From GCC 6.1.1 math.h depends on cmath, which failes to compile if included 
++// after our fpclassify hack 
++
+ #include <algorithm>
+ 
+ #include "util/assert.h"

Copied: mixxx/repos/community-staging-x86_64/PKGBUILD (from rev 195426, mixxx/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2016-11-12 11:28:39 UTC (rev 195427)
@@ -0,0 +1,37 @@
+# Maintainer: Lukas Fleischer <lfleischer at archlinux.org>
+# Contributor: Ali H. Caliskan <ali.h.caliskan AT gmail DOT com>
+# Contributor: Ryan Coyner <rcoyner at gmail.com>
+# Contributor: Stefan Husmann <stefan-husmann at t-online.de>
+
+pkgname=mixxx
+pkgver=2.0.0
+pkgrel=5
+pkgdesc="Free, open source software for digital DJ'ing."
+arch=('i686' 'x86_64')
+url='http://www.mixxx.org'
+license=('GPL')
+depends=('fftw' 'libid3tag' 'libmad' 'libogg' 'libshout' 'libsndfile' 'portaudio' 'portmidi'
+         'taglib' 'qtwebkit' 'vamp-plugin-sdk' 'libusbx' 'protobuf' 'faad2' 'libmp4v2'
+         'rubberband' 'chromaprint' 'sqlite' 'opus' 'opusfile')
+makedepends=('mesa' 'scons' 'libshout' 'glu')
+source=("https://downloads.mixxx.org/${pkgname}-${pkgver}/${pkgname}-${pkgver}-src.tar.gz"
+        mixxx-2.0.0-gcc-6.patch)
+md5sums=('5520a2f110f1078197d2ff914ccca37a'
+         '957245cf7a06e57d42fb7f8e3421a934')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -p1 -i ../mixxx-2.0.0-gcc-6.patch
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  export SCONSFLAGS="-j $(nproc)"
+  scons build=release optimize=portable virtualize=0 localecompare=1 qt_sqlite_plugin=0 opus=1 \
+    qtdir=/usr/lib/qt4 prefix=/usr faad=1
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  scons qtdir=/usr/lib/qt4 prefix=/usr install_root="${pkgdir}/usr" install
+}

Copied: mixxx/repos/community-staging-x86_64/mixxx-2.0.0-gcc-6.patch (from rev 195426, mixxx/trunk/mixxx-2.0.0-gcc-6.patch)
===================================================================
--- community-staging-x86_64/mixxx-2.0.0-gcc-6.patch	                        (rev 0)
+++ community-staging-x86_64/mixxx-2.0.0-gcc-6.patch	2016-11-12 11:28:39 UTC (rev 195427)
@@ -0,0 +1,17 @@
+--- ./src/util/math.h.orig	2016-07-14 04:13:22.861482580 +0100
++++ ./src/util/math.h	2016-07-14 04:15:36.966067224 +0100
+@@ -4,7 +4,13 @@
+ // Causes MSVC to define M_PI and friends.
+ // http://msdn.microsoft.com/en-us/library/4hwaceh6.aspx
+ #define _USE_MATH_DEFINES
+-#include <cmath>
++#include <math.h>
++#include <cmath> 
++// Note: Because of our fpclassify hack, we actualy need to inlude both, 
++// the c and the c++ version of the math header.  
++// From GCC 6.1.1 math.h depends on cmath, which failes to compile if included 
++// after our fpclassify hack 
++
+ #include <algorithm>
+ 
+ #include "util/assert.h"



More information about the arch-commits mailing list