Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 2 Jul 2020 16:45:34 +0000 (UTC)
From:      Jose Alonso Cardenas Marquez <acm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r541045 - in head/audio/mixxx: . files
Message-ID:  <202007021645.062GjY82028668@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: acm
Date: Thu Jul  2 16:45:34 2020
New Revision: 541045
URL: https://svnweb.freebsd.org/changeset/ports/541045

Log:
  - Update to 2.2.4
  - Use python3 scons

Modified:
  head/audio/mixxx/Makefile
  head/audio/mixxx/distinfo
  head/audio/mixxx/files/patch-build_depends.py
  head/audio/mixxx/files/patch-build_features.py

Modified: head/audio/mixxx/Makefile
==============================================================================
--- head/audio/mixxx/Makefile	Thu Jul  2 15:09:27 2020	(r541044)
+++ head/audio/mixxx/Makefile	Thu Jul  2 16:45:34 2020	(r541045)
@@ -3,8 +3,7 @@
 
 PORTNAME=	mixxx
 DISTVERSIONPREFIX=	release-
-DISTVERSION=	2.2.3
-PORTREVISION=	2
+DISTVERSION=	2.2.4
 CATEGORIES=	audio
 
 MAINTAINER=	acm@FreeBSD.org
@@ -33,7 +32,7 @@ LIB_DEPENDS=	libchromaprint.so:audio/chromaprint \
 		libprotobuf.so:devel/protobuf \
 		liblilv-0.so:audio/lilv
 
-USES=		compiler:c++11-lang gl iconv qt:5 pkgconfig scons:python2 xorg
+USES=		compiler:c++11-lang gl iconv qt:5 pkgconfig scons xorg
 USE_XORG=	x11
 USE_GL=		gl glu
 USE_GITHUB=	yes

Modified: head/audio/mixxx/distinfo
==============================================================================
--- head/audio/mixxx/distinfo	Thu Jul  2 15:09:27 2020	(r541044)
+++ head/audio/mixxx/distinfo	Thu Jul  2 16:45:34 2020	(r541045)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1576007042
-SHA256 (mixxxdj-mixxx-release-2.2.3_GH0.tar.gz) = 69230dca511ba08a284a22a979ff05b62130e97156d39a044bb4045f5f43cd2e
-SIZE (mixxxdj-mixxx-release-2.2.3_GH0.tar.gz) = 35060366
+TIMESTAMP = 1593383731
+SHA256 (mixxxdj-mixxx-release-2.2.4_GH0.tar.gz) = 9372b43d5ec882845b4fe2350ef50dabb3f1e0cc029f182b0ed8aa4f4f3b2afa
+SIZE (mixxxdj-mixxx-release-2.2.4_GH0.tar.gz) = 35480450

Modified: head/audio/mixxx/files/patch-build_depends.py
==============================================================================
--- head/audio/mixxx/files/patch-build_depends.py	Thu Jul  2 15:09:27 2020	(r541044)
+++ head/audio/mixxx/files/patch-build_depends.py	Thu Jul  2 16:45:34 2020	(r541045)
@@ -73,7 +73,7 @@
              qtdir = build.env['QTDIR']
              framework_path = Qt.find_framework_libdir(qtdir, qt5)
 -            if os.path.isdir(framework_path):
-+	    if framework_path and os.path.isdir(framework_path):
++            if framework_path and os.path.isdir(framework_path):
                  build.env.Append(LINKFLAGS="-L" + framework_path)
  
          # Mixxx requires C++11 support. Windows enables C++11 features by
@@ -91,7 +91,7 @@
          # it, though might cause issues. This is safe to remove once we
          # deprecate Karmic support. rryan 2/2011
 -        build.env.Append(CPPPATH='/usr/include/taglib/')
-+	build.env.Append(CPPPATH='%%LOCALBASE%%/include/taglib/')
++        build.env.Append(CPPPATH='%%LOCALBASE%%/include/taglib/')
  
          if build.platform_is_windows and build.static_dependencies:
              build.env.Append(CPPDEFINES='TAGLIB_STATIC')

Modified: head/audio/mixxx/files/patch-build_features.py
==============================================================================
--- head/audio/mixxx/files/patch-build_features.py	Thu Jul  2 15:09:27 2020	(r541044)
+++ head/audio/mixxx/files/patch-build_features.py	Thu Jul  2 16:45:34 2020	(r541045)
@@ -4,8 +4,8 @@
              # -pthread tells GCC to do the right thing regardless of system
              build.env.Append(CCFLAGS='-pthread')
              build.env.Append(LINKFLAGS='-pthread')
-+	elif build.platform_is_bsd:
-+	    build.env.ParseConfig('pkg-config hidapi --silence-errors --cflags --libs')
++        elif build.platform_is_bsd:
++            build.env.ParseConfig('pkg-config hidapi --silence-errors --cflags --libs')
  
 +            conf.CheckLib(['pthread', 'libpthread'])
 +            conf.CheckLib(['rt', 'librt'])



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007021645.062GjY82028668>