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

Antonio Rojas arojas at archlinux.org
Fri Dec 15 11:18:12 UTC 2017


    Date: Friday, December 15, 2017 @ 11:18:10
  Author: arojas
Revision: 274510

archrelease: copy trunk to community-staging-x86_64

Added:
  mixxx/repos/community-staging-x86_64/
  mixxx/repos/community-staging-x86_64/PKGBUILD
    (from rev 274509, mixxx/trunk/PKGBUILD)
  mixxx/repos/community-staging-x86_64/mixxx-2.0.0-build.patch
    (from rev 274509, mixxx/trunk/mixxx-2.0.0-build.patch)
  mixxx/repos/community-staging-x86_64/mixxx-2.0.0-chromaprint-1.4.0.patch
    (from rev 274509, mixxx/trunk/mixxx-2.0.0-chromaprint-1.4.0.patch)
  mixxx/repos/community-staging-x86_64/mixxx-2.0.0-gcc-6.patch
    (from rev 274509, mixxx/trunk/mixxx-2.0.0-gcc-6.patch)
  mixxx/repos/community-staging-x86_64/mixxx-remove-sqlite-typedef.patch
    (from rev 274509, mixxx/trunk/mixxx-remove-sqlite-typedef.patch)

-------------------------------------+
 PKGBUILD                            |   46 ++++++++++++++++++++++++++++++++++
 mixxx-2.0.0-build.patch             |   10 +++++++
 mixxx-2.0.0-chromaprint-1.4.0.patch |   17 ++++++++++++
 mixxx-2.0.0-gcc-6.patch             |   17 ++++++++++++
 mixxx-remove-sqlite-typedef.patch   |   27 +++++++++++++++++++
 5 files changed, 117 insertions(+)

Copied: mixxx/repos/community-staging-x86_64/PKGBUILD (from rev 274509, mixxx/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2017-12-15 11:18:10 UTC (rev 274510)
@@ -0,0 +1,46 @@
+# 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=13
+pkgdesc="Free, open source software for digital DJ'ing."
+arch=('x86_64')
+url='http://www.mixxx.org'
+license=('GPL')
+depends=('fftw' 'libid3tag' 'libmad' 'libogg' 'libshout' 'libsndfile' 'portaudio' 'portmidi'
+         'taglib' 'qt4' '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
+        mixxx-2.0.0-chromaprint-1.4.0.patch
+        mixxx-2.0.0-build.patch
+        mixxx-remove-sqlite-typedef.patch)
+md5sums=('5520a2f110f1078197d2ff914ccca37a'
+         '957245cf7a06e57d42fb7f8e3421a934'
+         '9aa411ccc9e72b27860858ac68104f2b'
+         '0da474abaf9eb50cfdcdc449854a6772'
+         '5cbc4f21a5ff8e477a986af015f1ed31')
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  patch -p1 -i ../mixxx-2.0.0-gcc-6.patch
+  patch -p1 -i ../mixxx-2.0.0-chromaprint-1.4.0.patch
+  patch -p1 -i ../mixxx-2.0.0-build.patch
+  patch -p1 -i ../mixxx-remove-sqlite-typedef.patch # rpmfusion
+}
+
+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-build.patch (from rev 274509, mixxx/trunk/mixxx-2.0.0-build.patch)
===================================================================
--- community-staging-x86_64/mixxx-2.0.0-build.patch	                        (rev 0)
+++ community-staging-x86_64/mixxx-2.0.0-build.patch	2017-12-15 11:18:10 UTC (rev 274510)
@@ -0,0 +1,10 @@
+diff -ur mixxx-2.0.0/build/mixxx.py mixxx-2.0.0-patched/build/mixxx.py
+--- ./build/depends.py.orig	2016-02-09 04:30:54.860754912 +0000
++++ ./build/depends.py	2016-02-09 04:29:53.286383033 +0000
+@@ -359,7 +359,6 @@ class Qt(Dependence):
+             qtdir = build.env['QTDIR']
+             framework_path = Qt.find_framework_libdir(qtdir, qt5)
+             if os.path.isdir(framework_path):
+-                build.env.Append(LINKFLAGS="-Wl,-rpath," + framework_path)
+                 build.env.Append(LINKFLAGS="-L" + framework_path)
+

Copied: mixxx/repos/community-staging-x86_64/mixxx-2.0.0-chromaprint-1.4.0.patch (from rev 274509, mixxx/trunk/mixxx-2.0.0-chromaprint-1.4.0.patch)
===================================================================
--- community-staging-x86_64/mixxx-2.0.0-chromaprint-1.4.0.patch	                        (rev 0)
+++ community-staging-x86_64/mixxx-2.0.0-chromaprint-1.4.0.patch	2017-12-15 11:18:10 UTC (rev 274510)
@@ -0,0 +1,17 @@
+--- mixxx-2.0.0/src/musicbrainz/chromaprinter.cpp.old	2017-01-13 14:24:15.105139156 +0100
++++ mixxx-2.0.0/src/musicbrainz/chromaprinter.cpp	2017-01-13 14:24:06.568450904 +0100
+@@ -57,12 +57,12 @@ QString ChromaPrinter::calcFingerPrint(c
+     }
+     chromaprint_finish(ctx);
+ 
+-    void* fprint = NULL;
++    uint32_t* fprint = NULL;
+     int size = 0;
+     int ret = chromaprint_get_raw_fingerprint(ctx, &fprint, &size);
+     QByteArray fingerprint;
+     if (ret == 1) {
+-        void* encoded = NULL;
++        char* encoded = NULL;
+         int encoded_size = 0;
+         chromaprint_encode_fingerprint(fprint, size,
+                                        CHROMAPRINT_ALGORITHM_DEFAULT,

Copied: mixxx/repos/community-staging-x86_64/mixxx-2.0.0-gcc-6.patch (from rev 274509, 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	2017-12-15 11:18:10 UTC (rev 274510)
@@ -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/mixxx-remove-sqlite-typedef.patch (from rev 274509, mixxx/trunk/mixxx-remove-sqlite-typedef.patch)
===================================================================
--- community-staging-x86_64/mixxx-remove-sqlite-typedef.patch	                        (rev 0)
+++ community-staging-x86_64/mixxx-remove-sqlite-typedef.patch	2017-12-15 11:18:10 UTC (rev 274510)
@@ -0,0 +1,27 @@
+--- a/src/library/trackcollection.cpp
++++ b/src/library/trackcollection.cpp
+@@ -2,10 +2,6 @@
+ #include <QtDebug>
+ 
+ #include "library/trackcollection.h"
+-
+-#ifdef __SQLITE3__
+-#include <sqlite3.h>
+-#endif
+ 
+ #include "library/librarytablemodel.h"
+ #include "library/schemamanager.h"
+
+--- a/src/library/trackcollection.h
++++ b/src/library/trackcollection.h
+@@ -34,8 +34,7 @@
+ #include "library/dao/libraryhashdao.h"
+ 
+ #ifdef __SQLITE3__
+-typedef struct sqlite3_context sqlite3_context;
+-typedef struct Mem sqlite3_value;
++#include <sqlite3.h>
+ #endif
+ 
+ class TrackInfoObject;
+



More information about the arch-commits mailing list