Merge pull request #89821 from veprbl/pr/clementine_1_4_0rc1
clementine: 1.3.1 -> 1.4.0rc1, switch to Qt 5, fix build
This commit is contained in:
commit
f97f334a6c
@ -1,21 +0,0 @@
|
|||||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
||||||
index 23070d9..83b6772 100644
|
|
||||||
--- a/CMakeLists.txt
|
|
||||||
+++ b/CMakeLists.txt
|
|
||||||
@@ -275,8 +275,6 @@ optional_component(LIBPULSE ON "Pulse audio integration"
|
|
||||||
optional_component(VISUALISATIONS ON "Visualisations")
|
|
||||||
|
|
||||||
if(NOT HAVE_SPOTIFY_BLOB AND NOT CRYPTOPP_FOUND)
|
|
||||||
- message(FATAL_ERROR "Either crypto++ must be available or the non-GPL Spotify "
|
|
||||||
- "code must be compiled in")
|
|
||||||
elseif(CRYPTOPP_FOUND)
|
|
||||||
set(HAVE_CRYPTOPP ON)
|
|
||||||
set(HAVE_SPOTIFY_DOWNLOADER ON)
|
|
||||||
@@ -434,7 +432,6 @@ if(HAVE_BREAKPAD)
|
|
||||||
endif(HAVE_BREAKPAD)
|
|
||||||
|
|
||||||
if(HAVE_SPOTIFY_BLOB)
|
|
||||||
- add_subdirectory(ext/clementine-spotifyblob)
|
|
||||||
endif(HAVE_SPOTIFY_BLOB)
|
|
||||||
|
|
||||||
if(HAVE_MOODBAR)
|
|
@ -1,4 +1,5 @@
|
|||||||
{ stdenv, fetchFromGitHub, fetchpatch, boost, cmake, chromaprint, gettext, gst_all_1, liblastfm
|
{ stdenv, mkDerivation, fetchFromGitHub, fetchpatch, boost, cmake, chromaprint, gettext, gst_all_1, liblastfm
|
||||||
|
, qtbase, qtx11extras
|
||||||
, taglib, fftw, glew, qjson, sqlite, libgpod, libplist, usbmuxd, libmtp
|
, taglib, fftw, glew, qjson, sqlite, libgpod, libplist, usbmuxd, libmtp
|
||||||
, libpulseaudio, gvfs, libcdio, libechonest, libspotify, pcre, projectm, protobuf
|
, libpulseaudio, gvfs, libcdio, libechonest, libspotify, pcre, projectm, protobuf
|
||||||
, qca2, pkgconfig, sparsehash, config, makeWrapper, gst_plugins }:
|
, qca2, pkgconfig, sparsehash, config, makeWrapper, gst_plugins }:
|
||||||
@ -9,30 +10,17 @@ let
|
|||||||
withCD = config.clementine.cd or true;
|
withCD = config.clementine.cd or true;
|
||||||
withCloud = config.clementine.cloud or true;
|
withCloud = config.clementine.cloud or true;
|
||||||
|
|
||||||
version = "1.3.1";
|
version = "1.4.0rc1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "clementine-player";
|
owner = "clementine-player";
|
||||||
repo = "Clementine";
|
repo = "Clementine";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0i3jkfs8dbfkh47jq3cnx7pip47naqg7w66vmfszk4d8vj37j62j";
|
sha256 = "1rqk0hrsn8f8bjk0j0vq1af0ygy6xx7qi9fw0jjw2cmj6kzckyi2";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./clementine-spotify-blob.patch
|
./clementine-spotify-blob.patch
|
||||||
# Required so as to avoid adding libspotify as a build dependency (as it is
|
|
||||||
# unfree and thus would prevent us from having a free package).
|
|
||||||
./clementine-spotify-blob-remove-from-build.patch
|
|
||||||
(fetchpatch {
|
|
||||||
# Fix w/gcc7
|
|
||||||
url = "https://github.com/clementine-player/Clementine/pull/5630.patch";
|
|
||||||
sha256 = "0px7xp1m4nvrncx8sga1qlxppk562wrk2qqk19iiry84nxg20mk4";
|
|
||||||
})
|
|
||||||
(fetchpatch {
|
|
||||||
# Fixes compilation with chromaprint >= 1.4
|
|
||||||
url = "https://github.com/clementine-player/Clementine/commit/d3ea0c8482dfd3f6264a30cfceb456076d76e6cd.patch";
|
|
||||||
sha256 = "1ifrs5aqdzw16jbnf0z1ilir20chdnr9k5n21r99miq9hzjpbh12";
|
|
||||||
})
|
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkgconfig ];
|
nativeBuildInputs = [ cmake pkgconfig ];
|
||||||
@ -54,6 +42,8 @@ let
|
|||||||
protobuf
|
protobuf
|
||||||
qca2
|
qca2
|
||||||
qjson
|
qjson
|
||||||
|
qtbase
|
||||||
|
qtx11extras
|
||||||
sqlite
|
sqlite
|
||||||
taglib
|
taglib
|
||||||
]
|
]
|
||||||
@ -71,7 +61,7 @@ let
|
|||||||
-e 's,libprotobuf.a,protobuf,g'
|
-e 's,libprotobuf.a,protobuf,g'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
free = stdenv.mkDerivation {
|
free = mkDerivation {
|
||||||
pname = "clementine-free";
|
pname = "clementine-free";
|
||||||
inherit version;
|
inherit version;
|
||||||
inherit src patches nativeBuildInputs postPatch;
|
inherit src patches nativeBuildInputs postPatch;
|
||||||
@ -79,7 +69,14 @@ let
|
|||||||
# gst_plugins needed for setup-hooks
|
# gst_plugins needed for setup-hooks
|
||||||
buildInputs = buildInputs ++ [ makeWrapper ] ++ gst_plugins;
|
buildInputs = buildInputs ++ [ makeWrapper ] ++ gst_plugins;
|
||||||
|
|
||||||
cmakeFlags = [ "-DUSE_SYSTEM_PROJECTM=ON" ];
|
preConfigure = ''
|
||||||
|
rm -rf ext/{,lib}clementine-spotifyblob
|
||||||
|
'';
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DUSE_SYSTEM_PROJECTM=ON"
|
||||||
|
"-DSPOTIFY_BLOB=OFF"
|
||||||
|
];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
@ -100,15 +97,11 @@ let
|
|||||||
};
|
};
|
||||||
|
|
||||||
# Unfree Spotify blob for Clementine
|
# Unfree Spotify blob for Clementine
|
||||||
unfree = stdenv.mkDerivation {
|
unfree = mkDerivation {
|
||||||
pname = "clementine-blob";
|
pname = "clementine-blob";
|
||||||
inherit version;
|
inherit version;
|
||||||
# Use the same patches and sources as Clementine
|
# Use the same patches and sources as Clementine
|
||||||
inherit src nativeBuildInputs postPatch;
|
inherit src nativeBuildInputs patches postPatch;
|
||||||
|
|
||||||
patches = [
|
|
||||||
./clementine-spotify-blob.patch
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = buildInputs ++ [ libspotify makeWrapper ];
|
buildInputs = buildInputs ++ [ libspotify makeWrapper ];
|
||||||
# Only build and install the Spotify blob
|
# Only build and install the Spotify blob
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{ stdenv, fetchurl, qt4, pkgconfig, libsamplerate, fftwSinglePrec, which, cmake
|
{ stdenv, fetchurl, pkgconfig, which, cmake
|
||||||
|
, fftwSinglePrec, libsamplerate, qtbase
|
||||||
, darwin }:
|
, darwin }:
|
||||||
|
|
||||||
let version = "1.1.0"; in
|
let version = "1.1.0"; in
|
||||||
@ -14,16 +15,22 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1j34xc30vg7sfszm2jx9mlz9hy7p1l929fka9wnfcpbib8gfi43x";
|
sha256 = "1j34xc30vg7sfszm2jx9mlz9hy7p1l929fka9wnfcpbib8gfi43x";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace CMakeLists.txt \
|
||||||
|
--replace 'find_package(Qt5Core QUIET)' \
|
||||||
|
'find_package(Qt5 REQUIRED COMPONENTS Core Network Sql Test Xml)'
|
||||||
|
'';
|
||||||
|
|
||||||
prefixKey = "--prefix ";
|
prefixKey = "--prefix ";
|
||||||
propagatedBuildInputs = [ qt4 libsamplerate fftwSinglePrec ];
|
|
||||||
nativeBuildInputs = [ pkgconfig which cmake ];
|
nativeBuildInputs = [ pkgconfig which cmake ];
|
||||||
buildInputs = stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.SystemConfiguration;
|
buildInputs = [ fftwSinglePrec libsamplerate qtbase ]
|
||||||
|
++ stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.SystemConfiguration;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://github.com/lastfm/liblastfm";
|
homepage = "https://github.com/lastfm/liblastfm";
|
||||||
repositories.git = "git://github.com/lastfm/liblastfm.git";
|
repositories.git = "git://github.com/lastfm/liblastfm.git";
|
||||||
description = "Official LastFM library";
|
description = "Official LastFM library";
|
||||||
inherit (qt4.meta) platforms;
|
platforms = platforms.unix;
|
||||||
maintainers = [ maintainers.phreedom ];
|
maintainers = [ maintainers.phreedom ];
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
};
|
};
|
||||||
|
@ -13072,7 +13072,7 @@ in
|
|||||||
|
|
||||||
liblastfmSF = callPackage ../development/libraries/liblastfmSF { };
|
liblastfmSF = callPackage ../development/libraries/liblastfmSF { };
|
||||||
|
|
||||||
liblastfm = callPackage ../development/libraries/liblastfm { };
|
liblastfm = libsForQt5.callPackage ../development/libraries/liblastfm { };
|
||||||
|
|
||||||
liblcf = callPackage ../development/libraries/liblcf { };
|
liblcf = callPackage ../development/libraries/liblcf { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user