summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2016-10-29 12:46:40 +0200
committerJohannes Huber <johu@gentoo.org>2016-10-29 12:46:52 +0200
commit1e9ac26727286ba78c253684af3bf3ca71bebfd3 (patch)
tree9a3a9c06c3c578cb42896b90d8c2eb3eec2f76e8 /media-sound/tomahawk/files
parentmedia-sound/tomahawk: Version bump 0.9.0 pre snapshot (diff)
downloadgentoo-1e9ac26727286ba78c253684af3bf3ca71bebfd3.tar.gz
gentoo-1e9ac26727286ba78c253684af3bf3ca71bebfd3.tar.bz2
gentoo-1e9ac26727286ba78c253684af3bf3ca71bebfd3.zip
media-sound/tomahawk: Remove 0.8.4 (r3)
Package-Manager: portage-2.3.2
Diffstat (limited to 'media-sound/tomahawk/files')
-rw-r--r--media-sound/tomahawk/files/tomahawk-0.8.4-echonest231.patch168
-rw-r--r--media-sound/tomahawk/files/tomahawk-0.8.4-qca-qt5-linking.patch70
-rw-r--r--media-sound/tomahawk/files/tomahawk-0.8.4-qt55.patch34
-rw-r--r--media-sound/tomahawk/files/tomahawk-0.8.4-taglib-1.10.patch35
4 files changed, 0 insertions, 307 deletions
diff --git a/media-sound/tomahawk/files/tomahawk-0.8.4-echonest231.patch b/media-sound/tomahawk/files/tomahawk-0.8.4-echonest231.patch
deleted file mode 100644
index 537fa1d933c9..000000000000
--- a/media-sound/tomahawk/files/tomahawk-0.8.4-echonest231.patch
+++ /dev/null
@@ -1,168 +0,0 @@
-commit 778b8ee180480e4296fe96d2496b740df8365f02
-Author: Dominik Schmidt <dev@dominik-schmidt.de>
-Date: Fri Feb 6 22:48:54 2015 +0100
-
- Use new echonest5 include dir for Qt5
-
-diff --git a/CMakeModules/FindEchonest.cmake b/CMakeModules/FindEchonest.cmake
-index 2a3625e..1459372 100644
---- a/CMakeModules/FindEchonest.cmake
-+++ b/CMakeModules/FindEchonest.cmake
-@@ -13,7 +13,7 @@ endif()
-
- PKG_CHECK_MODULES(PC_ECHONEST QUIET libechonest${LIBECHONEST_SUFFIX})
-
--FIND_PATH(ECHONEST_INCLUDE_DIR NAMES echonest/Track.h
-+FIND_PATH(ECHONEST_INCLUDE_DIR NAMES echonest${LIBECHONEST_SUFFIX}/Track.h
- HINTS
- ${PC_ECHONEST_INCLUDEDIR}
- ${PC_ECHONEST_INCLUDE_DIRS}
-diff --git a/src/infoplugins/generic/echonest/EchonestPlugin.cpp b/src/infoplugins/generic/echonest/EchonestPlugin.cpp
-index 92e8c11..a17c4a4 100644
---- a/src/infoplugins/generic/echonest/EchonestPlugin.cpp
-+++ b/src/infoplugins/generic/echonest/EchonestPlugin.cpp
-@@ -23,7 +23,11 @@
- #include "utils/Logger.h"
- #include "utils/NetworkAccessManager.h"
-
-+#if QT_VERSION >= QT_VERSION_CHECK(5,0,0)
-+#include <echonest5/ArtistTypes.h>
-+#else
- #include <echonest/ArtistTypes.h>
-+#endif
-
- #include <QNetworkConfiguration>
-
-diff --git a/src/infoplugins/generic/echonest/EchonestPlugin.h b/src/infoplugins/generic/echonest/EchonestPlugin.h
-index 7388b38..40edd0c 100644
---- a/src/infoplugins/generic/echonest/EchonestPlugin.h
-+++ b/src/infoplugins/generic/echonest/EchonestPlugin.h
-@@ -25,7 +25,11 @@
- #include "infosystem/InfoSystem.h"
- #include "infosystem/InfoSystemWorker.h"
-
-+#if QT_VERSION >= QT_VERSION_CHECK(5,0,0)
-+#include <echonest5/Artist.h>
-+#else
- #include <echonest/Artist.h>
-+#endif
-
- #include <QObject>
-
-diff --git a/src/libtomahawk/EchonestCatalogSynchronizer.cpp b/src/libtomahawk/EchonestCatalogSynchronizer.cpp
-index cb70ed8..5d030c7 100644
---- a/src/libtomahawk/EchonestCatalogSynchronizer.cpp
-+++ b/src/libtomahawk/EchonestCatalogSynchronizer.cpp
-@@ -33,8 +33,13 @@
- #include "TomahawkSettings.h"
- #include "Track.h"
-
-+#if QT_VERSION >= QT_VERSION_CHECK(5,0,0)
-+#include <echonest5/CatalogUpdateEntry.h>
-+#include <echonest5/Config.h>
-+#else
- #include <echonest/CatalogUpdateEntry.h>
- #include <echonest/Config.h>
-+#endif
-
- using namespace Tomahawk;
-
-diff --git a/src/libtomahawk/EchonestCatalogSynchronizer.h b/src/libtomahawk/EchonestCatalogSynchronizer.h
-index 50d7cc2..0e7a5ac 100644
---- a/src/libtomahawk/EchonestCatalogSynchronizer.h
-+++ b/src/libtomahawk/EchonestCatalogSynchronizer.h
-@@ -22,7 +22,11 @@
- #include "DllMacro.h"
- #include "Query.h"
-
-+#if QT_VERSION >= QT_VERSION_CHECK(5,0,0)
-+#include <echonest5/Catalog.h>
-+#else
- #include <echonest/Catalog.h>
-+#endif
-
- #include <QObject>
- #include <QQueue>
-diff --git a/src/libtomahawk/GlobalActionManager.cpp b/src/libtomahawk/GlobalActionManager.cpp
-index 1b14bb2..24f0ad1 100644
---- a/src/libtomahawk/GlobalActionManager.cpp
-+++ b/src/libtomahawk/GlobalActionManager.cpp
-@@ -61,8 +61,12 @@
- #include <QClipboard>
- #include <QMessageBox>
-
--#include <echonest/Playlist.h>
-
-+#if QT_VERSION >= QT_VERSION_CHECK(5,0,0)
-+#include <echonest5/Playlist.h>
-+#else
-+#include <echonest/Playlist.h>
-+#endif
-
- GlobalActionManager* GlobalActionManager::s_instance = 0;
-
-diff --git a/src/libtomahawk/playlist/dynamic/echonest/EchonestControl.h b/src/libtomahawk/playlist/dynamic/echonest/EchonestControl.h
-index b12108e..5704f35 100644
---- a/src/libtomahawk/playlist/dynamic/echonest/EchonestControl.h
-+++ b/src/libtomahawk/playlist/dynamic/echonest/EchonestControl.h
-@@ -24,7 +24,11 @@
- #include <QTimer>
- #include <QPointer>
-
-+#if QT_VERSION >= QT_VERSION_CHECK(5,0,0)
-+#include <echonest5/Playlist.h>
-+#else
- #include <echonest/Playlist.h>
-+#endif
-
- namespace Tomahawk
- {
-diff --git a/src/libtomahawk/playlist/dynamic/echonest/EchonestGenerator.h b/src/libtomahawk/playlist/dynamic/echonest/EchonestGenerator.h
-index 5ed250c..adb6e6c 100644
---- a/src/libtomahawk/playlist/dynamic/echonest/EchonestGenerator.h
-+++ b/src/libtomahawk/playlist/dynamic/echonest/EchonestGenerator.h
-@@ -28,7 +28,12 @@
-
- #include "DllMacro.h"
-
-+
-+#if QT_VERSION >= QT_VERSION_CHECK(5,0,0)
-+#include <echonest5/Playlist.h>
-+#else
- #include <echonest/Playlist.h>
-+#endif
-
- namespace Tomahawk
- {
-diff --git a/src/libtomahawk/playlist/dynamic/echonest/EchonestSteerer.cpp b/src/libtomahawk/playlist/dynamic/echonest/EchonestSteerer.cpp
-index d7e2040..960aadb 100644
---- a/src/libtomahawk/playlist/dynamic/echonest/EchonestSteerer.cpp
-+++ b/src/libtomahawk/playlist/dynamic/echonest/EchonestSteerer.cpp
-@@ -24,7 +24,11 @@
- #include "utils/TomahawkUtils.h"
- #include "utils/Logger.h"
-
-+#if QT_VERSION >= QT_VERSION_CHECK(5,0,0)
-+#include <echonest5/Playlist.h>
-+#else
- #include <echonest/Playlist.h>
-+#endif
-
- #include <QPaintEvent>
- #include <QHBoxLayout>
-diff --git a/src/tomahawk/sourcetree/items/CategoryItems.cpp b/src/tomahawk/sourcetree/items/CategoryItems.cpp
-index 425591f..c830ff9 100644
---- a/src/tomahawk/sourcetree/items/CategoryItems.cpp
-+++ b/src/tomahawk/sourcetree/items/CategoryItems.cpp
-@@ -33,7 +33,11 @@
- #include "utils/ImageRegistry.h"
- #include "utils/Logger.h"
-
-+#if QT_VERSION >= QT_VERSION_CHECK(5,0,0)
-+#include <echonest5/Playlist.h>
-+#else
- #include <echonest/Playlist.h>
-+#endif
-
- using namespace Tomahawk;
-
diff --git a/media-sound/tomahawk/files/tomahawk-0.8.4-qca-qt5-linking.patch b/media-sound/tomahawk/files/tomahawk-0.8.4-qca-qt5-linking.patch
deleted file mode 100644
index bc52cc3bae29..000000000000
--- a/media-sound/tomahawk/files/tomahawk-0.8.4-qca-qt5-linking.patch
+++ /dev/null
@@ -1,70 +0,0 @@
-From 4fa69d9607b95bf74dd86a151b8f77113f04f205 Mon Sep 17 00:00:00 2001
-From: Dominik Schmidt <domme@tomahawk-player.org>
-Date: Thu, 29 Jan 2015 06:11:36 +0100
-Subject: [PATCH] Link against correct qca library with Qt5
-
----
- CMakeLists.txt | 10 +++++++++-
- src/accounts/hatchet/CMakeLists.txt | 1 -
- src/libtomahawk/CMakeLists.txt | 5 +----
- 3 files changed, 10 insertions(+), 6 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 6db3741..65eebb1 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -325,7 +325,15 @@ macro_log_feature(GNUTLS_FOUND "GnuTLS"
- "http://gnutls.org/" TRUE ""
- "GnuTLS is needed for serving the Playdar/HTTP API via TLS")
-
--macro_optional_find_package(QCA2)
-+if( TOMAHAWK_QT5 )
-+ macro_optional_find_package(Qca-qt5)
-+ if(Qca-qt5_DIR)
-+ set(QCA2_FOUND ON CACHE BOOL "QCA2 was found")
-+ set(QCA2_LIBRARIES "qca-qt5" CACHE STRING "QCA2 Qt5 target")
-+ endif()
-+else()
-+ macro_optional_find_package(QCA2)
-+endif()
- macro_log_feature(QCA2_FOUND "QCA2" "Provides encryption and signing functions necessary for some resolvers and accounts" "http://delta.affinix.com/qca/" TRUE "" "")
-
- if( TOMAHAWK_QT5 )
-diff --git a/src/accounts/hatchet/CMakeLists.txt b/src/accounts/hatchet/CMakeLists.txt
-index eb082ff..86ebee4 100644
---- a/src/accounts/hatchet/CMakeLists.txt
-+++ b/src/accounts/hatchet/CMakeLists.txt
-@@ -13,7 +13,6 @@ endif()
- include( ${TOMAHAWK_USE_FILE} )
-
- find_package(OpenSSL REQUIRED)
--find_package(QCA2 REQUIRED)
- find_package(websocketpp 0.2.99 REQUIRED)
-
- include_directories(
-diff --git a/src/libtomahawk/CMakeLists.txt b/src/libtomahawk/CMakeLists.txt
-index 238670e..1e07325 100644
---- a/src/libtomahawk/CMakeLists.txt
-+++ b/src/libtomahawk/CMakeLists.txt
-@@ -402,10 +402,6 @@ include_directories(
- ${QTKEYCHAIN_INCLUDE_DIRS}
- )
-
--IF(QCA2_FOUND)
-- INCLUDE_DIRECTORIES( ${QCA2_INCLUDE_DIR} )
--ENDIF(QCA2_FOUND)
--
- IF(LIBATTICA_FOUND)
- SET( libGuiSources ${libGuiSources} AtticaManager.cpp )
- INCLUDE_DIRECTORIES( ${LIBATTICA_INCLUDE_DIR} )
-@@ -491,6 +487,7 @@ IF(APPLE)
- ENDIF()
-
- IF(QCA2_FOUND)
-+ INCLUDE_DIRECTORIES( ${QCA2_INCLUDE_DIR} )
- LIST(APPEND LINK_LIBRARIES ${QCA2_LIBRARIES} )
- ENDIF(QCA2_FOUND)
-
---
-1.8.3.2
-
diff --git a/media-sound/tomahawk/files/tomahawk-0.8.4-qt55.patch b/media-sound/tomahawk/files/tomahawk-0.8.4-qt55.patch
deleted file mode 100644
index 10b71c07c518..000000000000
--- a/media-sound/tomahawk/files/tomahawk-0.8.4-qt55.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 50e77ce0db45e9c876eba3d8cc6491f62a5de882 Mon Sep 17 00:00:00 2001
-From: Takahiro Hashimoto <kenya888@gmail.com>
-Date: Mon, 22 Jun 2015 14:33:23 +0900
-Subject: [PATCH] fix compilation error with Qt 5.5
-
----
- src/libtomahawk/network/acl/AclRegistry.cpp | 1 +
- src/libtomahawk/utils/TomahawkCache.h | 1 +
- 2 files changed, 2 insertions(+)
-
-diff --git a/src/libtomahawk/network/acl/AclRegistry.cpp b/src/libtomahawk/network/acl/AclRegistry.cpp
-index b177d19..3bc5056 100644
---- a/src/libtomahawk/network/acl/AclRegistry.cpp
-+++ b/src/libtomahawk/network/acl/AclRegistry.cpp
-@@ -21,6 +21,7 @@
-
- #include <QThread>
- #include <QVariant>
-+#include <QDataStream>
-
- #include "utils/Logger.h"
-
-diff --git a/src/libtomahawk/utils/TomahawkCache.h b/src/libtomahawk/utils/TomahawkCache.h
-index b7c3245..6a4aadd 100644
---- a/src/libtomahawk/utils/TomahawkCache.h
-+++ b/src/libtomahawk/utils/TomahawkCache.h
-@@ -27,6 +27,7 @@
- #include <QObject>
- #include <QTimer>
- #include <QDir>
-+#include <QDataStream>
-
- namespace TomahawkUtils
- {
diff --git a/media-sound/tomahawk/files/tomahawk-0.8.4-taglib-1.10.patch b/media-sound/tomahawk/files/tomahawk-0.8.4-taglib-1.10.patch
deleted file mode 100644
index ff8622536c23..000000000000
--- a/media-sound/tomahawk/files/tomahawk-0.8.4-taglib-1.10.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From ee4656383a92a78299aff6f8637f174fff328e98 Mon Sep 17 00:00:00 2001
-From: Pinak Ahuja <pinak.ahuja@gmail.com>
-Date: Wed, 2 Sep 2015 14:41:00 +0530
-Subject: [PATCH] Compare taglib version properly
-
----
- CMakeModules/FindTaglib.cmake | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/CMakeModules/FindTaglib.cmake b/CMakeModules/FindTaglib.cmake
-index e0efbef..f54ff78 100644
---- a/CMakeModules/FindTaglib.cmake
-+++ b/CMakeModules/FindTaglib.cmake
-@@ -34,10 +34,10 @@ ELSE()
-
- exec_program(${TAGLIBCONFIG_EXECUTABLE} ARGS --version RETURN_VALUE _return_VALUE OUTPUT_VARIABLE TAGLIB_VERSION)
-
-- if(TAGLIB_VERSION STRLESS "${TAGLIB_MIN_VERSION}")
-+ if(TAGLIB_VERSION VERSION_LESS "${TAGLIB_MIN_VERSION}")
- message(STATUS "TagLib version not found: version searched :${TAGLIB_MIN_VERSION}, found ${TAGLIB_VERSION}")
- set(TAGLIB_FOUND FALSE)
-- else(TAGLIB_VERSION STRLESS "${TAGLIB_MIN_VERSION}")
-+ else(TAGLIB_VERSION VERSION_LESS "${TAGLIB_MIN_VERSION}")
-
- exec_program(${TAGLIBCONFIG_EXECUTABLE} ARGS --libs RETURN_VALUE _return_VALUE OUTPUT_VARIABLE TAGLIB_LIBRARIES)
-
-@@ -48,7 +48,7 @@ ELSE()
- # message(STATUS "Found taglib: ${TAGLIB_LIBRARIES}")
- endif(TAGLIB_LIBRARIES AND TAGLIB_CFLAGS)
- string(REGEX REPLACE " *-I" ";" TAGLIB_INCLUDES "${TAGLIB_CFLAGS}")
-- endif(TAGLIB_VERSION STRLESS "${TAGLIB_MIN_VERSION}")
-+ endif(TAGLIB_VERSION VERSION_LESS "${TAGLIB_MIN_VERSION}")
- mark_as_advanced(TAGLIB_CFLAGS TAGLIB_LIBRARIES TAGLIB_INCLUDES)
-
- else(TAGLIBCONFIG_EXECUTABLE)