[gentoo-commits] repo/gentoo:master commit in: media-libs/liblastfm/

2022-12-25 Thread Andreas Sturmlechner
commit: 93e194d90ffb4ccd2c1ece771c4f37200f7fdb1d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Dec 25 23:11:05 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Dec 25 23:21:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93e194d9

media-libs/liblastfm: update EAPI 7 -> 8

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-libs/liblastfm/liblastfm-1.1.0_pre20190625.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/liblastfm/liblastfm-1.1.0_pre20190625.ebuild 
b/media-libs/liblastfm/liblastfm-1.1.0_pre20190625.ebuild
index e8a9dfa10853..dcb1064d50ca 100644
--- a/media-libs/liblastfm/liblastfm-1.1.0_pre20190625.ebuild
+++ b/media-libs/liblastfm/liblastfm-1.1.0_pre20190625.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 COMMIT=f867df52757c569d97d9755c911ac9dec146f365
 inherit cmake flag-o-matic



[gentoo-commits] repo/gentoo:master commit in: media-libs/liblastfm/

2021-05-20 Thread Andreas Sturmlechner
commit: 5d7d4793015745ee7ae403c7dc7466fa748f131e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu May 20 22:29:49 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu May 20 22:29:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d7d4793

media-libs/liblastfm: Force c++14 to fix build with GCC-11

Closes: https://bugs.gentoo.org/787128
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-libs/liblastfm/liblastfm-1.1.0_pre20190625.ebuild | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/media-libs/liblastfm/liblastfm-1.1.0_pre20190625.ebuild 
b/media-libs/liblastfm/liblastfm-1.1.0_pre20190625.ebuild
index e7a0b783f0a..e8a9dfa1085 100644
--- a/media-libs/liblastfm/liblastfm-1.1.0_pre20190625.ebuild
+++ b/media-libs/liblastfm/liblastfm-1.1.0_pre20190625.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 COMMIT=f867df52757c569d97d9755c911ac9dec146f365
-inherit cmake
+inherit cmake flag-o-matic
 
 DESCRIPTION="Collection of libraries to integrate Last.fm services"
 HOMEPAGE="https://github.com/lastfm/liblastfm;
@@ -36,6 +36,11 @@ DEPEND="${RDEPEND}
 
 PATCHES=( "${FILESDIR}/${P}-missing-dep.patch" )
 
+src_prepare() {
+   append-cxxflags -std=c++14 # bug 787128
+   cmake_src_prepare
+}
+
 src_configure() {
# demos not working
local mycmakeargs=(



[gentoo-commits] repo/gentoo:master commit in: media-libs/liblastfm/, media-libs/liblastfm/files/

2020-12-12 Thread Andreas Sturmlechner
commit: 70bcb3e284e393f0102c6ac0754389550d41877e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Dec 12 16:33:24 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Dec 12 17:58:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70bcb3e2

media-libs/liblastfm: Add missing test dependency even if restricted

Closes: https://bugs.gentoo.org/758896
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../liblastfm-1.1.0_pre20190625-missing-dep.patch  | 28 ++
 .../liblastfm/liblastfm-1.1.0_pre20190625.ebuild   |  2 ++
 2 files changed, 30 insertions(+)

diff --git 
a/media-libs/liblastfm/files/liblastfm-1.1.0_pre20190625-missing-dep.patch 
b/media-libs/liblastfm/files/liblastfm-1.1.0_pre20190625-missing-dep.patch
new file mode 100644
index 000..e36a01c1583
--- /dev/null
+++ b/media-libs/liblastfm/files/liblastfm-1.1.0_pre20190625-missing-dep.patch
@@ -0,0 +1,28 @@
+From 9264fbecf8c7e910fa038ab372376ecc9b8c403c Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Sat, 12 Dec 2020 17:09:58 +0100
+Subject: [PATCH] Add missing -DBUILD_TESTS dependency Qt5Test
+
+Signed-off-by: Andreas Sturmlechner 
+---
+ CMakeLists.txt | 4 
+ 1 file changed, 4 insertions(+)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index d4fd670..bb5a895 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -37,6 +37,10 @@ if(NOT BUILD_WITH_QT4)
+ find_package(Qt5Sql REQUIRED CONFIG)
+ endif()
+ 
++if(BUILD_TESTS)
++find_package(Qt5Test CONFIG REQUIRED)
++endif()
++
+ set(LASTFM_LIB_VERSION_SUFFIX 5)
+ if(UNIX AND NOT APPLE)
+ find_package(Qt5DBus REQUIRED CONFIG)
+-- 
+2.29.2
+

diff --git a/media-libs/liblastfm/liblastfm-1.1.0_pre20190625.ebuild 
b/media-libs/liblastfm/liblastfm-1.1.0_pre20190625.ebuild
index 66923fd858e..e7a0b783f0a 100644
--- a/media-libs/liblastfm/liblastfm-1.1.0_pre20190625.ebuild
+++ b/media-libs/liblastfm/liblastfm-1.1.0_pre20190625.ebuild
@@ -34,6 +34,8 @@ DEPEND="${RDEPEND}
test? ( dev-qt/qttest:5 )
 "
 
+PATCHES=( "${FILESDIR}/${P}-missing-dep.patch" )
+
 src_configure() {
# demos not working
local mycmakeargs=(



[gentoo-commits] repo/gentoo:master commit in: media-libs/liblastfm/files/, media-libs/liblastfm/

2020-12-07 Thread Andreas Sturmlechner
commit: 336ba1d03e6c1f7b326fde1637573d965dcbca22
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec  7 23:24:44 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec  7 23:25:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=336ba1d0

media-libs/liblastfm: Drop 1.1.0_pre20150206

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-libs/liblastfm/Manifest  |   1 -
 .../liblastfm-1.1.0_pre20150206-qt-5.11b3.patch| 302 -
 .../liblastfm/liblastfm-1.1.0_pre20150206.ebuild   |  51 
 3 files changed, 354 deletions(-)

diff --git a/media-libs/liblastfm/Manifest b/media-libs/liblastfm/Manifest
index dfec470a786..7e3fcd07db2 100644
--- a/media-libs/liblastfm/Manifest
+++ b/media-libs/liblastfm/Manifest
@@ -1,2 +1 @@
-DIST liblastfm-1.1.0_pre20150206.tar.gz 119380 BLAKE2B 
ec532b7577e60c02f9e8202b06e4e496b052801d60a27795d58204c6fbec62eea24512979ea9e42f643e7cfc01794982e07b808f6411b884893e13c29d9e17b0
 SHA512 
984d4b6b36a12e019e486425d243fc5be24fc3968b30f7ec746204c976b9c526477d56793205c9a6eed79bff1b33a2b1c7063d1d08fd376c4b89346337d8b166
 DIST liblastfm-1.1.0_pre20190625.tar.gz 119348 BLAKE2B 
d4755d6dfe6dc8bb4c21e1f4ed94fd96165313111a553271e518ad57f08aab45980239a51416d6e99d87a86f7859c7ea04ba81fb06f6dfa61b2aa7f554935589
 SHA512 
ee36cc31e1f7b345e2de29ff4151acb7bbe30960bbf2528bf8eb5214a47272955efe3bd1c6e20af8dd22a4fbc510de34befdcd6c728683ae300bd45e578e5ebb

diff --git 
a/media-libs/liblastfm/files/liblastfm-1.1.0_pre20150206-qt-5.11b3.patch 
b/media-libs/liblastfm/files/liblastfm-1.1.0_pre20150206-qt-5.11b3.patch
deleted file mode 100644
index fc0e9b8938d..000
--- a/media-libs/liblastfm/files/liblastfm-1.1.0_pre20150206-qt-5.11b3.patch
+++ /dev/null
@@ -1,302 +0,0 @@
-From 62a08d490a1e75e3ef5d08f3fb37e65c1563e706 Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Sun, 1 Apr 2018 11:51:42 +0200
-Subject: [PATCH 1/4] Make Qt5 build default and simplify logic, add missing
- deps
-

- CMakeLists.txt | 16 
- 1 file changed, 8 insertions(+), 8 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index be88967..e628611 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -27,19 +27,19 @@ set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" 
"${PROJECT_SOURCE_DIR}/cmake/Module
- # setup qt stuff
- set(CMAKE_AUTOMOC ON)
- 
--option(BUILD_WITH_QT4 "Build liblastfm with Qt4 no matter if Qt5 was found" 
OFF)
-+option(BUILD_WITH_QT4 "Build liblastfm with Qt4" OFF)
- 
--if( NOT BUILD_WITH_QT4 )
--# try Qt5 first, and prefer that if found
--find_package(Qt5Core QUIET)
--endif()
-+if(NOT BUILD_WITH_QT4)
-+find_package(Qt5 REQUIRED COMPONENTS Core Network Xml CONFIG)
-+
-+if(BUILD_FINGERPRINT)
-+find_package(Qt5Sql REQUIRED CONFIG)
-+endif()
- 
--if(Qt5Core_DIR)
- set(LASTFM_LIB_VERSION_SUFFIX 5)
--message(STATUS "Found Qt5! Please keep in mind, this is highly 
experimental and not our main development target..")
- include_directories(${Qt5Core_INCLUDE_DIRS})
- if(UNIX AND NOT APPLE)
--find_package(Qt5DBus REQUIRED)
-+find_package(Qt5DBus REQUIRED CONFIG)
- endif()
- 
- # macro(qt_wrap_ui)
--- 
-2.17.0
-
-
-From ff32d56e5e1bd8b1f86a8e9840c778249ff19118 Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Sun, 1 Apr 2018 11:56:48 +0200
-Subject: [PATCH 2/4] Make use of FeatureSummary
-

- CMakeLists.txt | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index e628611..dcdfd91 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -20,6 +20,7 @@ option(BUILD_TESTS "Build liblastfm tests" ON)
- 
- # installation dirs
- include(GNUInstallDirs)
-+include(FeatureSummary)
- 
- #cmake module path
- set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" 
"${PROJECT_SOURCE_DIR}/cmake/Modules")
-@@ -97,3 +98,5 @@ if(BUILD_TESTS)
- enable_testing()
- add_subdirectory(tests)
- endif()
-+
-+feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
--- 
-2.17.0
-
-
-From 5762278b29c1ab6559dcca7a1e8fbad1d75134da Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Sun, 1 Apr 2018 12:06:48 +0200
-Subject: [PATCH 3/4] Cleanup include dirs
-

- CMakeLists.txt | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index dcdfd91..52589b5 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -38,10 +38,10 @@ if(NOT BUILD_WITH_QT4)
- endif()
- 
- set(LASTFM_LIB_VERSION_SUFFIX 5)
--include_directories(${Qt5Core_INCLUDE_DIRS})
- if(UNIX AND NOT APPLE)
- find_package(Qt5DBus REQUIRED CONFIG)
- endif()
-+include_directories(Qt5::Core Qt5::Network Qt5::Xml)
- 
- # macro(qt_wrap_ui)
- # qt5_wrap_ui(${ARGN})
--- 
-2.17.0
-
-
-From aeb0cbc56376021444a56a984613faacefedfea9 Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: 

[gentoo-commits] repo/gentoo:master commit in: media-libs/liblastfm/

2020-12-07 Thread Andreas Sturmlechner
commit: 0d6d9e58edf4d2310914e03de3791dde3ff7778b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Dec  7 23:24:14 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Dec  7 23:25:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d6d9e58

media-libs/liblastfm: 1.1.0_pre20190625 snapshot bump

Basically just incorporating the patches we already apply to prev snapshot.

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-libs/liblastfm/Manifest  |  1 +
 .../liblastfm/liblastfm-1.1.0_pre20190625.ebuild   | 46 ++
 2 files changed, 47 insertions(+)

diff --git a/media-libs/liblastfm/Manifest b/media-libs/liblastfm/Manifest
index 9467a56ff82..dfec470a786 100644
--- a/media-libs/liblastfm/Manifest
+++ b/media-libs/liblastfm/Manifest
@@ -1 +1,2 @@
 DIST liblastfm-1.1.0_pre20150206.tar.gz 119380 BLAKE2B 
ec532b7577e60c02f9e8202b06e4e496b052801d60a27795d58204c6fbec62eea24512979ea9e42f643e7cfc01794982e07b808f6411b884893e13c29d9e17b0
 SHA512 
984d4b6b36a12e019e486425d243fc5be24fc3968b30f7ec746204c976b9c526477d56793205c9a6eed79bff1b33a2b1c7063d1d08fd376c4b89346337d8b166
+DIST liblastfm-1.1.0_pre20190625.tar.gz 119348 BLAKE2B 
d4755d6dfe6dc8bb4c21e1f4ed94fd96165313111a553271e518ad57f08aab45980239a51416d6e99d87a86f7859c7ea04ba81fb06f6dfa61b2aa7f554935589
 SHA512 
ee36cc31e1f7b345e2de29ff4151acb7bbe30960bbf2528bf8eb5214a47272955efe3bd1c6e20af8dd22a4fbc510de34befdcd6c728683ae300bd45e578e5ebb

diff --git a/media-libs/liblastfm/liblastfm-1.1.0_pre20190625.ebuild 
b/media-libs/liblastfm/liblastfm-1.1.0_pre20190625.ebuild
new file mode 100644
index 000..66923fd858e
--- /dev/null
+++ b/media-libs/liblastfm/liblastfm-1.1.0_pre20190625.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+COMMIT=f867df52757c569d97d9755c911ac9dec146f365
+inherit cmake
+
+DESCRIPTION="Collection of libraries to integrate Last.fm services"
+HOMEPAGE="https://github.com/lastfm/liblastfm;
+SRC_URI="https://github.com/lastfm/liblastfm/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}/${PN}-${COMMIT}"
+
+LICENSE="GPL-3"
+KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
+SLOT="0/0"
+IUSE="fingerprint test"
+
+# 1 of 2 (UrlBuilderTest) is failing, last checked version 1.0.9
+RESTRICT="test"
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtxml:5
+   fingerprint? (
+   dev-qt/qtsql:5
+   media-libs/libsamplerate
+   sci-libs/fftw:3.0
+   )
+"
+DEPEND="${RDEPEND}
+   test? ( dev-qt/qttest:5 )
+"
+
+src_configure() {
+   # demos not working
+   local mycmakeargs=(
+   -DBUILD_DEMOS=OFF
+   -DBUILD_WITH_QT4=OFF
+   -DBUILD_FINGERPRINT=$(usex fingerprint)
+   -DBUILD_TESTS=$(usex test)
+   )
+   cmake_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/liblastfm/

2018-12-12 Thread Andreas Sturmlechner
commit: f53e88b8bdd3d00c922faf4851a929f2ee5d09a9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Sep 13 01:43:43 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Dec 12 14:05:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f53e88b8

media-libs/liblastfm: EAPI-7 bump

Drop vcs-snapshot as it is not EAPI-7 ready.

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild 
b/media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild
index a9a4e77d96a..33eb7fb67ef 100644
--- a/media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild
+++ b/media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 COMMIT=44331654256df83bc1d3cbb271a8ce3d4c464686
-inherit cmake-utils vcs-snapshot
+inherit cmake-utils
 
 DESCRIPTION="Collection of libraries to integrate Last.fm services"
 HOMEPAGE="https://github.com/lastfm/liblastfm;
@@ -26,13 +26,16 @@ RDEPEND="
sci-libs/fftw:3.0
)
 "
-DEPEND="${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
test? ( dev-qt/qttest:5 )
 "
 
 # 1 of 2 (UrlBuilderTest) is failing, last checked version 1.0.9
 RESTRICT="test"
 
+S="${WORKDIR}/${PN}-${COMMIT}"
+
 PATCHES=( "${FILESDIR}/${P}-qt-5.11b3.patch" )
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: media-libs/liblastfm/

2018-04-25 Thread Andreas Sturmlechner
commit: 3e66542c75348a90afda76bf967e7a24af4ffa69
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Apr 25 19:41:05 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Apr 26 03:29:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e66542c

media-libs/liblastfm: Drop old

Package-Manager: Portage-2.3.31, Repoman-2.3.9

 media-libs/liblastfm/Manifest  |  1 -
 media-libs/liblastfm/liblastfm-1.0.9-r1.ebuild | 84 --
 2 files changed, 85 deletions(-)

diff --git a/media-libs/liblastfm/Manifest b/media-libs/liblastfm/Manifest
index 60f6dddc9af..9467a56ff82 100644
--- a/media-libs/liblastfm/Manifest
+++ b/media-libs/liblastfm/Manifest
@@ -1,2 +1 @@
-DIST liblastfm-1.0.9.tar.gz 119320 BLAKE2B 
4c661b703af1e94b42d2bddffd994e0d33360979e47e0079f3824a9febcdba22c3ccedd8599da5c1d4b701a329cb4779bd680181837152cb1d23a231ec6eee73
 SHA512 
9d2bcf71b26d8a95920a07649c97b3faa071c49a8269268bb08fab01537392774873233d03cada09d3ce3fe2c45b0affdb74cd27c41f69342b973896effe1018
 DIST liblastfm-1.1.0_pre20150206.tar.gz 119380 BLAKE2B 
ec532b7577e60c02f9e8202b06e4e496b052801d60a27795d58204c6fbec62eea24512979ea9e42f643e7cfc01794982e07b808f6411b884893e13c29d9e17b0
 SHA512 
984d4b6b36a12e019e486425d243fc5be24fc3968b30f7ec746204c976b9c526477d56793205c9a6eed79bff1b33a2b1c7063d1d08fd376c4b89346337d8b166

diff --git a/media-libs/liblastfm/liblastfm-1.0.9-r1.ebuild 
b/media-libs/liblastfm/liblastfm-1.0.9-r1.ebuild
deleted file mode 100644
index b4aedd84417..000
--- a/media-libs/liblastfm/liblastfm-1.0.9-r1.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils multibuild
-
-DESCRIPTION="Collection of libraries to integrate Last.fm services"
-HOMEPAGE="https://github.com/lastfm/liblastfm;
-SRC_URI="https://github.com/lastfm/liblastfm/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-KEYWORDS="amd64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
-SLOT="0/0"
-IUSE="fingerprint test +qt4 qt5"
-
-REQUIRED_USE="|| ( qt4 qt5 )"
-
-COMMON_DEPEND="
-   qt4? (
-   dev-qt/qtcore:4[ssl]
-   dev-qt/qtdbus:4
-   )
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtnetwork:5[ssl]
-   dev-qt/qtxml:5
-   )
-   fingerprint? (
-   media-libs/libsamplerate
-   sci-libs/fftw:3.0
-   qt4? ( dev-qt/qtsql:4 )
-   qt5? ( dev-qt/qtsql:5 )
-   )
-"
-DEPEND="${COMMON_DEPEND}
-   test? (
-   qt4? ( dev-qt/qttest:4 )
-   qt5? ( dev-qt/qttest:5 )
-   )
-"
-RDEPEND="${COMMON_DEPEND}
-   !

[gentoo-commits] repo/gentoo:master commit in: media-libs/liblastfm/

2018-04-25 Thread Thomas Deutschmann
commit: b7088923f5ecee12b57f9827b7268e0217b32241
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Apr 25 19:25:35 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Apr 25 19:25:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7088923

media-libs/liblastfm: x86 stable (bug #650692)

Package-Manager: Portage-2.3.31, Repoman-2.3.9

 media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild 
b/media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild
index fe5665379cc..a9a4e77d96a 100644
--- a/media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild
+++ b/media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://github.com/lastfm/liblastfm;
 SRC_URI="https://github.com/lastfm/liblastfm/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="GPL-3"
-KEYWORDS="amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
 SLOT="0/0"
 IUSE="fingerprint test"
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/liblastfm/

2018-04-25 Thread Aaron Bauman
commit: 06bd2d0d043871f3ebd778d60ff033c1ca4c363d
Author: Aaron Bauman  gentoo  org>
AuthorDate: Wed Apr 25 11:44:35 2018 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Wed Apr 25 11:47:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06bd2d0d

media-libs/liblastfm: amd64 stable wrt bug #650692

Bug: https://bugs.gentoo.org/650692
Package-Manager: Portage-2.3.31, Repoman-2.3.9

 media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild 
b/media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild
index b2010962143..fe5665379cc 100644
--- a/media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild
+++ b/media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://github.com/lastfm/liblastfm;
 SRC_URI="https://github.com/lastfm/liblastfm/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="GPL-3"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 SLOT="0/0"
 IUSE="fingerprint test"
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/liblastfm/, media-libs/liblastfm/files/

2018-04-17 Thread Andreas Sturmlechner
commit: 80dfffe14e4abcf01a126c1405770e022e04b039
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Apr 17 09:20:10 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Apr 17 12:02:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80dfffe1

media-libs/liblastfm: Fix cmake/Qt-5.11_beta3 patch

Closes: https://bugs.gentoo.org/653316
Package-Manager: Portage-2.3.29, Repoman-2.3.9

 .../files/liblastfm-1.1.0_pre20150206-cmake.patch  |  97 --
 .../liblastfm-1.1.0_pre20150206-qt-5.11b3.patch| 114 -
 .../liblastfm/liblastfm-1.1.0_pre20150206.ebuild   |   5 +-
 3 files changed, 111 insertions(+), 105 deletions(-)

diff --git a/media-libs/liblastfm/files/liblastfm-1.1.0_pre20150206-cmake.patch 
b/media-libs/liblastfm/files/liblastfm-1.1.0_pre20150206-cmake.patch
deleted file mode 100644
index a42baf0ca30..000
--- a/media-libs/liblastfm/files/liblastfm-1.1.0_pre20150206-cmake.patch
+++ /dev/null
@@ -1,97 +0,0 @@
-From 8703c12d7a177627fab4a2f67018d01cc7bf0808 Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Sun, 1 Apr 2018 11:51:42 +0200
-Subject: [PATCH 1/3] Make Qt5 build default and simplify logic, add missing
- deps
-

- CMakeLists.txt | 10 +++---
- 1 file changed, 3 insertions(+), 7 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index be88967..a8c81dd 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -27,16 +27,12 @@ set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" 
"${PROJECT_SOURCE_DIR}/cmake/Module
- # setup qt stuff
- set(CMAKE_AUTOMOC ON)
- 
--option(BUILD_WITH_QT4 "Build liblastfm with Qt4 no matter if Qt5 was found" 
OFF)
-+option(BUILD_WITH_QT4 "Build liblastfm with Qt4" OFF)
- 
--if( NOT BUILD_WITH_QT4 )
--# try Qt5 first, and prefer that if found
--find_package(Qt5Core QUIET)
--endif()
-+if(NOT BUILD_WITH_QT4)
-+find_package(Qt5 CONFIG REQUIRED Core Network Sql Xml)
- 
--if(Qt5Core_DIR)
- set(LASTFM_LIB_VERSION_SUFFIX 5)
--message(STATUS "Found Qt5! Please keep in mind, this is highly 
experimental and not our main development target..")
- include_directories(${Qt5Core_INCLUDE_DIRS})
- if(UNIX AND NOT APPLE)
- find_package(Qt5DBus REQUIRED)
--- 
-2.16.3
-
-
-From 22f6900552839bc90c0fc68b62707d42544eaccf Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Sun, 1 Apr 2018 11:56:48 +0200
-Subject: [PATCH 2/3] Make use of FeatureSummary
-

- CMakeLists.txt | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index a8c81dd..d5fd5b1 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -20,6 +20,7 @@ option(BUILD_TESTS "Build liblastfm tests" ON)
- 
- # installation dirs
- include(GNUInstallDirs)
-+include(FeatureSummary)
- 
- #cmake module path
- set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" 
"${PROJECT_SOURCE_DIR}/cmake/Modules")
-@@ -93,3 +94,5 @@ if(BUILD_TESTS)
- enable_testing()
- add_subdirectory(tests)
- endif()
-+
-+feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
--- 
-2.16.3
-
-
-From bf3ee28f1aa5de7a3f3f5a3077adc97804e27b0e Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Sun, 1 Apr 2018 12:06:48 +0200
-Subject: [PATCH 3/3] Cleanup include dirs
-

- CMakeLists.txt | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index d5fd5b1..ef7fdd5 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -34,10 +34,10 @@ if(NOT BUILD_WITH_QT4)
- find_package(Qt5 CONFIG REQUIRED Core Network Sql Xml)
- 
- set(LASTFM_LIB_VERSION_SUFFIX 5)
--include_directories(${Qt5Core_INCLUDE_DIRS})
- if(UNIX AND NOT APPLE)
- find_package(Qt5DBus REQUIRED)
- endif()
-+include_directories(Qt5::Core Qt5::Network Qt5::Xml)
- 
- # macro(qt_wrap_ui)
- # qt5_wrap_ui(${ARGN})
--- 
-2.16.3
-

diff --git 
a/media-libs/liblastfm/files/liblastfm-1.1.0_pre20150206-qt-5.11b3.patch 
b/media-libs/liblastfm/files/liblastfm-1.1.0_pre20150206-qt-5.11b3.patch
index dfbd694ed3d..fc0e9b8938d 100644
--- a/media-libs/liblastfm/files/liblastfm-1.1.0_pre20150206-qt-5.11b3.patch
+++ b/media-libs/liblastfm/files/liblastfm-1.1.0_pre20150206-qt-5.11b3.patch
@@ -1,7 +1,113 @@
-From 5d6ef4c27804a43b26dffcb46d6b27523a1ca340 Mon Sep 17 00:00:00 2001
+From 62a08d490a1e75e3ef5d08f3fb37e65c1563e706 Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Sun, 1 Apr 2018 11:51:42 +0200
+Subject: [PATCH 1/4] Make Qt5 build default and simplify logic, add missing
+ deps
+
+---
+ CMakeLists.txt | 16 
+ 1 file changed, 8 insertions(+), 8 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index be88967..e628611 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -27,19 +27,19 @@ set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" 

[gentoo-commits] repo/gentoo:master commit in: media-libs/liblastfm/files/, media-libs/liblastfm/

2018-04-15 Thread Andreas Sturmlechner
commit: 0bce8f1535155dca761076e62d97917a483d9554
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Apr 15 20:09:32 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Apr 15 20:52:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bce8f15

media-libs/liblastfm: Fix build with Qt 5.11_beta3

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 .../files/liblastfm-1.1.0_pre20150206-cmake.patch  |  97 ++
 .../liblastfm-1.1.0_pre20150206-qt-5.11b3.patch| 196 +
 .../liblastfm/liblastfm-1.1.0_pre20150206.ebuild   |   5 +
 3 files changed, 298 insertions(+)

diff --git a/media-libs/liblastfm/files/liblastfm-1.1.0_pre20150206-cmake.patch 
b/media-libs/liblastfm/files/liblastfm-1.1.0_pre20150206-cmake.patch
new file mode 100644
index 000..a42baf0ca30
--- /dev/null
+++ b/media-libs/liblastfm/files/liblastfm-1.1.0_pre20150206-cmake.patch
@@ -0,0 +1,97 @@
+From 8703c12d7a177627fab4a2f67018d01cc7bf0808 Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Sun, 1 Apr 2018 11:51:42 +0200
+Subject: [PATCH 1/3] Make Qt5 build default and simplify logic, add missing
+ deps
+
+---
+ CMakeLists.txt | 10 +++---
+ 1 file changed, 3 insertions(+), 7 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index be88967..a8c81dd 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -27,16 +27,12 @@ set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" 
"${PROJECT_SOURCE_DIR}/cmake/Module
+ # setup qt stuff
+ set(CMAKE_AUTOMOC ON)
+ 
+-option(BUILD_WITH_QT4 "Build liblastfm with Qt4 no matter if Qt5 was found" 
OFF)
++option(BUILD_WITH_QT4 "Build liblastfm with Qt4" OFF)
+ 
+-if( NOT BUILD_WITH_QT4 )
+-# try Qt5 first, and prefer that if found
+-find_package(Qt5Core QUIET)
+-endif()
++if(NOT BUILD_WITH_QT4)
++find_package(Qt5 CONFIG REQUIRED Core Network Sql Xml)
+ 
+-if(Qt5Core_DIR)
+ set(LASTFM_LIB_VERSION_SUFFIX 5)
+-message(STATUS "Found Qt5! Please keep in mind, this is highly 
experimental and not our main development target..")
+ include_directories(${Qt5Core_INCLUDE_DIRS})
+ if(UNIX AND NOT APPLE)
+ find_package(Qt5DBus REQUIRED)
+-- 
+2.16.3
+
+
+From 22f6900552839bc90c0fc68b62707d42544eaccf Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Sun, 1 Apr 2018 11:56:48 +0200
+Subject: [PATCH 2/3] Make use of FeatureSummary
+
+---
+ CMakeLists.txt | 3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index a8c81dd..d5fd5b1 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -20,6 +20,7 @@ option(BUILD_TESTS "Build liblastfm tests" ON)
+ 
+ # installation dirs
+ include(GNUInstallDirs)
++include(FeatureSummary)
+ 
+ #cmake module path
+ set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" 
"${PROJECT_SOURCE_DIR}/cmake/Modules")
+@@ -93,3 +94,5 @@ if(BUILD_TESTS)
+ enable_testing()
+ add_subdirectory(tests)
+ endif()
++
++feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
+-- 
+2.16.3
+
+
+From bf3ee28f1aa5de7a3f3f5a3077adc97804e27b0e Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Sun, 1 Apr 2018 12:06:48 +0200
+Subject: [PATCH 3/3] Cleanup include dirs
+
+---
+ CMakeLists.txt | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index d5fd5b1..ef7fdd5 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -34,10 +34,10 @@ if(NOT BUILD_WITH_QT4)
+ find_package(Qt5 CONFIG REQUIRED Core Network Sql Xml)
+ 
+ set(LASTFM_LIB_VERSION_SUFFIX 5)
+-include_directories(${Qt5Core_INCLUDE_DIRS})
+ if(UNIX AND NOT APPLE)
+ find_package(Qt5DBus REQUIRED)
+ endif()
++include_directories(Qt5::Core Qt5::Network Qt5::Xml)
+ 
+ # macro(qt_wrap_ui)
+ # qt5_wrap_ui(${ARGN})
+-- 
+2.16.3
+

diff --git 
a/media-libs/liblastfm/files/liblastfm-1.1.0_pre20150206-qt-5.11b3.patch 
b/media-libs/liblastfm/files/liblastfm-1.1.0_pre20150206-qt-5.11b3.patch
new file mode 100644
index 000..dfbd694ed3d
--- /dev/null
+++ b/media-libs/liblastfm/files/liblastfm-1.1.0_pre20150206-qt-5.11b3.patch
@@ -0,0 +1,196 @@
+From 5d6ef4c27804a43b26dffcb46d6b27523a1ca340 Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Sun, 15 Apr 2018 21:31:14 +0200
+Subject: [PATCH] Fix build with Qt 5.11_beta3 (drop qt5_use_modules)
+
+---
+ CMakeLists.txt |  3 --
+ src/CMakeLists.txt | 63 +++---
+ src/fingerprint/CMakeLists.txt | 20 ++-
+ tests/lastfm_add_test.cmake| 16 +
+ 4 files changed, 55 insertions(+), 47 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index be88967..57da635 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -56,9 +56,6 @@ if(Qt5Core_DIR)
+ # endmacro()
+ else()
+ find_package(Qt4 COMPONENTS QtCore QtNetwork 

[gentoo-commits] repo/gentoo:master commit in: media-libs/liblastfm/

2018-03-22 Thread Andreas Sturmlechner
commit: 86a95d88b08ae6a425ad44193483fad7e233198b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Mar 22 17:33:00 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Mar 22 18:02:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86a95d88

media-libs/liblastfm: Add 1.1.0_pre20150206 version bump

Moved header dir to liblastfm5.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 media-libs/liblastfm/Manifest  |  1 +
 .../liblastfm/liblastfm-1.1.0_pre20150206.ebuild   | 46 ++
 2 files changed, 47 insertions(+)

diff --git a/media-libs/liblastfm/Manifest b/media-libs/liblastfm/Manifest
index 2dfb36c6b2f..60f6dddc9af 100644
--- a/media-libs/liblastfm/Manifest
+++ b/media-libs/liblastfm/Manifest
@@ -1 +1,2 @@
 DIST liblastfm-1.0.9.tar.gz 119320 BLAKE2B 
4c661b703af1e94b42d2bddffd994e0d33360979e47e0079f3824a9febcdba22c3ccedd8599da5c1d4b701a329cb4779bd680181837152cb1d23a231ec6eee73
 SHA512 
9d2bcf71b26d8a95920a07649c97b3faa071c49a8269268bb08fab01537392774873233d03cada09d3ce3fe2c45b0affdb74cd27c41f69342b973896effe1018
+DIST liblastfm-1.1.0_pre20150206.tar.gz 119380 BLAKE2B 
ec532b7577e60c02f9e8202b06e4e496b052801d60a27795d58204c6fbec62eea24512979ea9e42f643e7cfc01794982e07b808f6411b884893e13c29d9e17b0
 SHA512 
984d4b6b36a12e019e486425d243fc5be24fc3968b30f7ec746204c976b9c526477d56793205c9a6eed79bff1b33a2b1c7063d1d08fd376c4b89346337d8b166

diff --git a/media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild 
b/media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild
new file mode 100644
index 000..07c936ffe14
--- /dev/null
+++ b/media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+COMMIT=44331654256df83bc1d3cbb271a8ce3d4c464686
+inherit cmake-utils vcs-snapshot
+
+DESCRIPTION="Collection of libraries to integrate Last.fm services"
+HOMEPAGE="https://github.com/lastfm/liblastfm;
+SRC_URI="https://github.com/lastfm/liblastfm/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+SLOT="0/0"
+IUSE="fingerprint test"
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtxml:5
+   fingerprint? (
+   dev-qt/qtsql:5
+   media-libs/libsamplerate
+   sci-libs/fftw:3.0
+   )
+"
+DEPEND="${RDEPEND}
+   test? ( dev-qt/qttest:5 )
+"
+
+# 1 of 2 (UrlBuilderTest) is failing, last checked version 1.0.9
+RESTRICT="test"
+
+src_configure() {
+   # demos not working
+   local mycmakeargs=(
+   -DBUILD_DEMOS=OFF
+   -DBUILD_WITH_QT4=OFF
+   -DBUILD_FINGERPRINT=$(usex fingerprint)
+   -DBUILD_TESTS=$(usex test)
+   )
+
+   cmake-utils_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/liblastfm/

2016-07-06 Thread Michael Palimaka
commit: e2a3ca0f179249c3155a487d6e3e7fd53311e5dc
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jul  6 13:43:50 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jul  6 13:43:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2a3ca0f

media-libs/liblastfm: add missing USE dependency

Gentoo-bug: 587974

Package-Manager: portage-2.3.0

 .../liblastfm/{liblastfm-1.0.9.ebuild => liblastfm-1.0.9-r1.ebuild}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/liblastfm/liblastfm-1.0.9.ebuild 
b/media-libs/liblastfm/liblastfm-1.0.9-r1.ebuild
similarity index 97%
rename from media-libs/liblastfm/liblastfm-1.0.9.ebuild
rename to media-libs/liblastfm/liblastfm-1.0.9-r1.ebuild
index 5a775f5..76c6b4e 100644
--- a/media-libs/liblastfm/liblastfm-1.0.9.ebuild
+++ b/media-libs/liblastfm/liblastfm-1.0.9-r1.ebuild
@@ -19,13 +19,13 @@ REQUIRED_USE="|| ( qt4 qt5 )"
 
 COMMON_DEPEND="
qt4? (
-   dev-qt/qtcore:4
+   dev-qt/qtcore:4[ssl]
dev-qt/qtdbus:4
)
qt5? (
dev-qt/qtcore:5
dev-qt/qtdbus:5
-   dev-qt/qtnetwork:5
+   dev-qt/qtnetwork:5[ssl]
dev-qt/qtxml:5
)
fingerprint? (



[gentoo-commits] repo/gentoo:master commit in: media-libs/liblastfm/

2016-05-03 Thread Johannes Huber
commit: 72e7e7b271db71193d950692540c54c175e762dc
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Tue May  3 06:15:33 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Tue May  3 11:13:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72e7e7b2

media-libs/liblastfm: Fix typo

Package-Manager: portage-2.2.27

Signed-off-by: Johannes Huber  gentoo.org>

 media-libs/liblastfm/liblastfm-1.0.9.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/liblastfm/liblastfm-1.0.9.ebuild 
b/media-libs/liblastfm/liblastfm-1.0.9.ebuild
index ee7c9cd..5a775f5 100644
--- a/media-libs/liblastfm/liblastfm-1.0.9.ebuild
+++ b/media-libs/liblastfm/liblastfm-1.0.9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -64,7 +64,7 @@ src_configure() {
mycmakeargs+=(-DBUILD_WITH_QT4=ON)
fi
if [[ ${MULTIBUILD_VARIANT} = qt5 ]]; then
-   mycmakeargs+=(-DBUILD_WITH_OT4=OFF)
+   mycmakeargs+=(-DBUILD_WITH_QT4=OFF)
fi
cmake-utils_src_configure
}



[gentoo-commits] repo/gentoo:master commit in: media-libs/liblastfm/

2016-01-17 Thread Michael Palimaka
commit: 98bacfdc2d81d854cb5936a51a3bf1ac5b9bc36f
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jan 17 20:00:03 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jan 17 20:01:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98bacfdc

media-libs/liblastfm: remove old

Package-Manager: portage-2.2.26

 media-libs/liblastfm/Manifest   |  1 -
 media-libs/liblastfm/liblastfm-1.0.8.ebuild | 50 -
 2 files changed, 51 deletions(-)

diff --git a/media-libs/liblastfm/Manifest b/media-libs/liblastfm/Manifest
index 5e99ee0..3b7ff18 100644
--- a/media-libs/liblastfm/Manifest
+++ b/media-libs/liblastfm/Manifest
@@ -1,2 +1 @@
-DIST liblastfm-1.0.8.tar.gz 119186 SHA256 
e36f4f83428ede7021187fe6042db5a1919a579b071a75420364ef7115434607 SHA512 
afeea48e4b859a0ce126889258b1f8b9a33224595c8b1d3f791559f854c0f895a0eb6dc5e6295bd5f0fe44d2a706b4b2602d5810d446d588db721f9c2b22af29
 WHIRLPOOL 
b4ec8ed1d3f392a38d82c6a10d100032a62d35e316ad6a5f00b3f7b2e61d81030104ce4eafe8010329b91a81daeca68b89c78996d3ee8d3e586e9df3be74d2b4
 DIST liblastfm-1.0.9.tar.gz 119320 SHA256 
5276b5fe00932479ce6fe370ba3213f3ab842d70a7d55e4bead6e26738425f7b SHA512 
9d2bcf71b26d8a95920a07649c97b3faa071c49a8269268bb08fab01537392774873233d03cada09d3ce3fe2c45b0affdb74cd27c41f69342b973896effe1018
 WHIRLPOOL 
491b50ec174d0a344221f12da9c783cfe56fffa99bfe3b84d835a70a510a3157dfecc62f2fff086cd570fb7281ecefe2b05c6982336f27ca6c1db6ccc4bd55dc

diff --git a/media-libs/liblastfm/liblastfm-1.0.8.ebuild 
b/media-libs/liblastfm/liblastfm-1.0.8.ebuild
deleted file mode 100644
index 066de33..000
--- a/media-libs/liblastfm/liblastfm-1.0.8.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-QT_MINIMAL="4.8.0"
-inherit cmake-utils
-
-DESCRIPTION="A Qt C++ library for the Last.fm webservices"
-HOMEPAGE="https://github.com/lastfm/liblastfm;
-SRC_URI="https://github.com/lastfm/liblastfm/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="fingerprint test"
-
-COMMON_DEPEND="
-   >=dev-qt/qtcore-${QT_MINIMAL}:4
-   >=dev-qt/qtdbus-${QT_MINIMAL}:4
-   fingerprint? (
-   media-libs/libsamplerate
-   sci-libs/fftw:3.0
-   >=dev-qt/qtsql-${QT_MINIMAL}:4
-   )
-"
-DEPEND="${COMMON_DEPEND}
-   test? ( >=dev-qt/qttest-${QT_MINIMAL}:4 )
-"
-RDEPEND="${COMMON_DEPEND}
-   !

[gentoo-commits] repo/gentoo:master commit in: media-libs/liblastfm/

2016-01-17 Thread Michael Palimaka
commit: 9da478739bdb4e88afa429dfd3547b66c23d935c
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jan 17 20:01:07 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jan 17 20:01:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9da47873

media-libs/liblastfm: whitespace

Package-Manager: portage-2.2.26

 media-libs/liblastfm/metadata.xml | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/media-libs/liblastfm/metadata.xml 
b/media-libs/liblastfm/metadata.xml
index b0a5550..c33c1c7 100644
--- a/media-libs/liblastfm/metadata.xml
+++ b/media-libs/liblastfm/metadata.xml
@@ -1,11 +1,11 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  kde
-  
-Build the lastfm-fingerprint library
-  
-  
-lastfm/liblastfm
-  
+   kde
+   
+   Build the lastfm-fingerprint 
library
+   
+   
+   lastfm/liblastfm
+   
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/liblastfm/

2016-01-17 Thread Agostino Sarubbo
commit: d5ae3850f24b577ef40bc4362fb49ce5c7dd6e04
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Jan 17 17:01:01 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Jan 17 17:01:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5ae3850

media-libs/liblastfm: ppc stable wrt bug #570348

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-libs/liblastfm/liblastfm-1.0.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/liblastfm/liblastfm-1.0.9.ebuild 
b/media-libs/liblastfm/liblastfm-1.0.9.ebuild
index e1539ca..ee7c9cd 100644
--- a/media-libs/liblastfm/liblastfm-1.0.9.ebuild
+++ b/media-libs/liblastfm/liblastfm-1.0.9.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://github.com/lastfm/liblastfm;
 SRC_URI="https://github.com/lastfm/liblastfm/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="GPL-3"
-KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
 SLOT="0/0"
 IUSE="fingerprint test +qt4 qt5"
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/liblastfm/

2016-01-06 Thread Agostino Sarubbo
commit: 3c6a8fb7b13065f742cdaa82c04e53efdde29a46
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jan  6 13:33:38 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jan  6 13:33:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c6a8fb7

media-libs/liblastfm: x86 stable wrt bug #570348

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-libs/liblastfm/liblastfm-1.0.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/liblastfm/liblastfm-1.0.9.ebuild 
b/media-libs/liblastfm/liblastfm-1.0.9.ebuild
index 6c52b9e..e1539ca 100644
--- a/media-libs/liblastfm/liblastfm-1.0.9.ebuild
+++ b/media-libs/liblastfm/liblastfm-1.0.9.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://github.com/lastfm/liblastfm;
 SRC_URI="https://github.com/lastfm/liblastfm/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="GPL-3"
-KEYWORDS="amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
 SLOT="0/0"
 IUSE="fingerprint test +qt4 qt5"
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/liblastfm/

2016-01-02 Thread Agostino Sarubbo
commit: 2a94a9143794f082b92f121a950ff4330914c36f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Jan  2 16:27:07 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Jan  2 16:27:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a94a914

media-libs/liblastfm: amd64 stable wrt bug #570348

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-libs/liblastfm/liblastfm-1.0.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/liblastfm/liblastfm-1.0.9.ebuild 
b/media-libs/liblastfm/liblastfm-1.0.9.ebuild
index d01b0fd..6c52b9e 100644
--- a/media-libs/liblastfm/liblastfm-1.0.9.ebuild
+++ b/media-libs/liblastfm/liblastfm-1.0.9.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://github.com/lastfm/liblastfm;
 SRC_URI="https://github.com/lastfm/liblastfm/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="GPL-3"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 SLOT="0/0"
 IUSE="fingerprint test +qt4 qt5"