svn commit: r355424 - in head/audio/clementine-player: . files

Sean Bruno sbruno at FreeBSD.org
Mon May 26 18:18:10 UTC 2014


Author: sbruno (src committer)
Date: Mon May 26 18:18:09 2014
New Revision: 355424
URL: http://svnweb.freebsd.org/changeset/ports/355424
QAT: https://qat.redports.org/buildarchive/r355424/

Log:
  Update clementine-player to 1.2.3
  
  - Move distfile location to GitHub
  - Remove three uneeded patches accepted upstream
  - Add one new patch for <functional> support
  - Add new dependency on libechonest
  
  From Changelog:
  Version 1.2.3:
    Bugfixes:
      * Fix compilation with GCC 4.9.
      * (Linux) Fix poor search performance with sqlite 3.8.
      * (Ubuntu) Fix dependency issues on Ubuntu 14.04.
      * (Windows) Upgrade to OpenSSL 1.0.1g to fix CVE-2014-0160.
  
  Version 1.2.2:
    Major features:
      * (Android Remote) Add kittens support.
  
    Bugfixes:
      * Rename SkyDrive to OneDrive.
      * Don't include the user's IP address in the log (from the network remote
        settings dialog).
      * (Debian) Fix a bug with HTTPS logins to all cloud storage providers.
      * (Mac OS X) Fix a bug in the workaround for a weird font issue on 10.9.
      * (Mac OS X) Fix rendering of source icons on retina displays.
      * (Android Remote) Don't advertise songs that aren't available.
      * (Android Remote) Fix playing songs with special characters in filenames.
  
  Reviewed by:	mat@

Added:
  head/audio/clementine-player/files/patch-src__library_groupbydialog.h   (contents, props changed)
Deleted:
  head/audio/clementine-player/files/patch-ext__libclementine-common__core__closure.cpp
  head/audio/clementine-player/files/patch-ext__libclementine-common__core__closure.h
  head/audio/clementine-player/files/patch-src__playlistparsers__plsparser.cpp
Modified:
  head/audio/clementine-player/Makefile
  head/audio/clementine-player/distinfo

Modified: head/audio/clementine-player/Makefile
==============================================================================
--- head/audio/clementine-player/Makefile	Mon May 26 18:11:19 2014	(r355423)
+++ head/audio/clementine-player/Makefile	Mon May 26 18:18:09 2014	(r355424)
@@ -2,12 +2,16 @@
 # $FreeBSD$
 
 PORTNAME=	clementine
-PORTVERSION=	1.2.1
-PORTREVISION=	7
+PORTVERSION=	1.2.3
 CATEGORIES=	audio
-MASTER_SITES=	GOOGLE_CODE
 PKGNAMESUFFIX=	-player
 
+USE_GITHUB=	yes
+GH_ACCOUNT=	${PORTNAME}${PKGNAMESUFFIX}
+GH_PROJECT=	Clementine
+GH_TAGNAME=	${PORTVERSION}
+GH_COMMIT=	c189ee5
+
 MAINTAINER=	sbruno at FreeBSD.org
 COMMENT=	Cross-platform music player based on Amarok 1.4
 
@@ -19,7 +23,8 @@ LIB_DEPENDS=	libexecinfo.so:${PORTSDIR}/
 		libprotobuf.so:${PORTSDIR}/devel/protobuf \
  	 	libqca.so:${PORTSDIR}/devel/qca \
 		libqjson.so:${PORTSDIR}/devel/qjson \
-		libfftw3.so:${PORTSDIR}/math/fftw3
+		libfftw3.so:${PORTSDIR}/math/fftw3 \
+		libechonest.so:${PORTSDIR}/audio/libechonest
 
 BUILD_DEPENDS=	${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs
 

Modified: head/audio/clementine-player/distinfo
==============================================================================
--- head/audio/clementine-player/distinfo	Mon May 26 18:11:19 2014	(r355423)
+++ head/audio/clementine-player/distinfo	Mon May 26 18:18:09 2014	(r355424)
@@ -1,2 +1,2 @@
-SHA256 (clementine-1.2.1.tar.gz) = db556e8bf230e2535636f5736a62ffe24ce154481fb05123e8395ab4aa64654e
-SIZE (clementine-1.2.1.tar.gz) = 9274351
+SHA256 (clementine-1.2.3.tar.gz) = b7e4813b54f2cb586e80c27945240c11d884082459248e87b7359689a0f0dffb
+SIZE (clementine-1.2.3.tar.gz) = 9075813

Added: head/audio/clementine-player/files/patch-src__library_groupbydialog.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/clementine-player/files/patch-src__library_groupbydialog.h	Mon May 26 18:18:09 2014	(r355424)
@@ -0,0 +1,11 @@
+--- ./src/library/groupbydialog.h.orig	2014-05-25 10:38:37.378768447 -0700
++++ ./src/library/groupbydialog.h	2014-05-25 10:39:12.641759778 -0700
+@@ -22,6 +22,8 @@
+ 
+ #include <memory>
+ 
++#include <functional>
++
+ using std::placeholders::_1;
+ using std::placeholders::_2;
+ 


More information about the svn-ports-all mailing list