* [gentoo-commits] proj/kde:master commit in: media-libs/liblastfm/
@ 2013-01-20 16:06 Michael Palimaka
0 siblings, 0 replies; 18+ messages in thread
From: Michael Palimaka @ 2013-01-20 16:06 UTC (permalink / raw
To: gentoo-commits
commit: f31f379a1178ca91cea494420586f8e4b0f3b95d
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 20 16:02:50 2013 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Jan 20 16:02:50 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=f31f379a
[media-libs/liblastfm] Add initial subslot.
Package-Manager: portage-2.1.11.43
---
media-libs/liblastfm/liblastfm-9999.ebuild | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/liblastfm/liblastfm-9999.ebuild b/media-libs/liblastfm/liblastfm-9999.ebuild
index b231d8b..f32ade7 100644
--- a/media-libs/liblastfm/liblastfm-9999.ebuild
+++ b/media-libs/liblastfm/liblastfm-9999.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI=4
+EAPI=5
QT_MINIMAL="4.8.0"
inherit cmake-utils git-2
@@ -13,7 +13,7 @@ EGIT_REPO_URI="git://github.com/eartle/liblastfm.git"
LICENSE="GPL-3"
KEYWORDS=""
-SLOT="0"
+SLOT="0/0"
IUSE="fingerprint test"
COMMON_DEPEND="
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: media-libs/liblastfm/
@ 2013-10-13 17:03 Johannes Huber
0 siblings, 0 replies; 18+ messages in thread
From: Johannes Huber @ 2013-10-13 17:03 UTC (permalink / raw
To: gentoo-commits
commit: e7811a2773f5ed06c9249899a0ba421b3fc14e8c
Author: Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 13 19:00:37 2013 +0000
Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun Oct 13 19:00:37 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=e7811a27
[media-libs/liblastfm] Move to git-r3 eclass.
Package-Manager: portage-2.2.7
---
media-libs/liblastfm/liblastfm-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/liblastfm/liblastfm-9999.ebuild b/media-libs/liblastfm/liblastfm-9999.ebuild
index a0871a8..f47e889 100644
--- a/media-libs/liblastfm/liblastfm-9999.ebuild
+++ b/media-libs/liblastfm/liblastfm-9999.ebuild
@@ -5,11 +5,11 @@
EAPI=5
QT_MINIMAL="4.8.0"
-inherit cmake-utils git-2
+inherit cmake-utils git-r3
DESCRIPTION="Collection of libraries to integrate Last.fm services"
HOMEPAGE="http://github.com/eartle/liblastfm"
-EGIT_REPO_URI="git://github.com/eartle/liblastfm.git"
+EGIT_REPO_URI=( "git://github.com/eartle/${PN}" )
LICENSE="GPL-3"
KEYWORDS=""
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: media-libs/liblastfm/
@ 2014-03-11 11:27 Johannes Huber
0 siblings, 0 replies; 18+ messages in thread
From: Johannes Huber @ 2014-03-11 11:27 UTC (permalink / raw
To: gentoo-commits
commit: a12546a2940fa36d4ce9e606cdfb594213f62512
Author: Uwe L. Korn <uwelk <AT> xhochy <DOT> com>
AuthorDate: Wed Mar 5 15:19:40 2014 +0000
Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Tue Mar 11 11:21:00 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=a12546a2
[media-libs/liblastfm] Add Qt5 to liblastfm
Package-Manager: portage-2.2.7
---
media-libs/liblastfm/liblastfm-9999.ebuild | 29 +++++++++++++++++++++--------
1 file changed, 21 insertions(+), 8 deletions(-)
diff --git a/media-libs/liblastfm/liblastfm-9999.ebuild b/media-libs/liblastfm/liblastfm-9999.ebuild
index b05f78f..67c770d 100644
--- a/media-libs/liblastfm/liblastfm-9999.ebuild
+++ b/media-libs/liblastfm/liblastfm-9999.ebuild
@@ -4,29 +4,41 @@
EAPI=5
-QT_MINIMAL="4.8.0"
inherit cmake-utils git-r3
DESCRIPTION="Collection of libraries to integrate Last.fm services"
-HOMEPAGE="http://github.com/eartle/liblastfm"
-EGIT_REPO_URI=( "git://github.com/eartle/${PN}" )
+HOMEPAGE="https://github.com/lastfm/liblastfm"
+EGIT_REPO_URI=( "git://github.com/lastfm/${PN}" )
LICENSE="GPL-3"
KEYWORDS=""
SLOT="0/0"
-IUSE="fingerprint test"
+IUSE="fingerprint test +qt4 qt5"
+REQUIRED_USE="^^ ( qt4 qt5 )"
COMMON_DEPEND="
- >=dev-qt/qtcore-${QT_MINIMAL}:4
- >=dev-qt/qtdbus-${QT_MINIMAL}:4
+ qt4? (
+ dev-qt/qtcore:4
+ dev-qt/qtdbus:4
+ )
+ qt5? (
+ dev-qt/qtcore:5
+ dev-qt/qtdbus:5
+ dev-qt/qtnetwork:5
+ dev-qt/qtxml:5
+ )
fingerprint? (
media-libs/libsamplerate
sci-libs/fftw:3.0
- >=dev-qt/qtsql-${QT_MINIMAL}:4
+ qt4? ( dev-qt/qtsql:4 )
+ qt5? ( dev-qt/qtsql:5 )
)
"
DEPEND="${COMMON_DEPEND}
- test? ( >=dev-qt/qttest-${QT_MINIMAL}:4 )
+ test? (
+ qt4? ( dev-qt/qttest:4 )
+ qt5? ( dev-qt/qttest:5 )
+ )
"
RDEPEND="${COMMON_DEPEND}
!<media-libs/lastfmlib-0.4.0
@@ -39,6 +51,7 @@ src_configure() {
# demos not working
local mycmakeargs=(
-DBUILD_DEMOS=OFF
+ $(cmake-utils_use_build qt4 WITH_QT4)
$(cmake-utils_use_build fingerprint)
$(cmake-utils_use_build test TESTS)
)
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: media-libs/liblastfm/
@ 2014-10-12 16:47 Michael Palimaka
0 siblings, 0 replies; 18+ messages in thread
From: Michael Palimaka @ 2014-10-12 16:47 UTC (permalink / raw
To: gentoo-commits
commit: 0d3d080336d868dcd43f568cfe7a2979e75538cb
Author: Uwe L. Korn <uwelk <AT> xhochy <DOT> com>
AuthorDate: Sat Oct 11 13:53:51 2014 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Oct 12 16:47:02 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=0d3d0803
[media-libs/liblastfm] Add support for Qt4/5 co-installability
Package-Manager: portage-2.2.12
---
media-libs/liblastfm/liblastfm-9999.ebuild | 49 ++++++++++++++++++++++++------
1 file changed, 39 insertions(+), 10 deletions(-)
diff --git a/media-libs/liblastfm/liblastfm-9999.ebuild b/media-libs/liblastfm/liblastfm-9999.ebuild
index 67c770d..19447a5 100644
--- a/media-libs/liblastfm/liblastfm-9999.ebuild
+++ b/media-libs/liblastfm/liblastfm-9999.ebuild
@@ -4,7 +4,7 @@
EAPI=5
-inherit cmake-utils git-r3
+inherit cmake-utils multibuild git-r3
DESCRIPTION="Collection of libraries to integrate Last.fm services"
HOMEPAGE="https://github.com/lastfm/liblastfm"
@@ -14,7 +14,6 @@ LICENSE="GPL-3"
KEYWORDS=""
SLOT="0/0"
IUSE="fingerprint test +qt4 qt5"
-REQUIRED_USE="^^ ( qt4 qt5 )"
COMMON_DEPEND="
qt4? (
@@ -47,14 +46,44 @@ RDEPEND="${COMMON_DEPEND}
# 1 of 2 is failing, last checked 2012-06-22 / version 1.0.1
RESTRICT="test"
+pkg_setup() {
+ MULTIBUILD_VARIANTS=()
+ if use qt4; then
+ MULTIBUILD_VARIANTS+=(qt4)
+ fi
+ if use qt5; then
+ MULTIBUILD_VARIANTS+=(qt5)
+ fi
+}
+
src_configure() {
- # demos not working
- local mycmakeargs=(
- -DBUILD_DEMOS=OFF
- $(cmake-utils_use_build qt4 WITH_QT4)
- $(cmake-utils_use_build fingerprint)
- $(cmake-utils_use_build test TESTS)
- )
+ myconfigure() {
+ # demos not working
+ local mycmakeargs=(
+ -DBUILD_DEMOS=OFF
+ $(cmake-utils_use_build fingerprint)
+ $(cmake-utils_use_build test TESTS)
+ )
+ if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then
+ mycmakeargs+=(-DBUILD_WITH_QT4=ON)
+ fi
+ if [[ ${MULTIBUILD_VARIANT} = qt5 ]]; then
+ mycmakeargs+=(-DBUILD_WITH_OT4=OFF)
+ fi
+ cmake-utils_src_configure
+ }
+
+ multibuild_foreach_variant myconfigure
+}
+
+src_compile() {
+ multibuild_foreach_variant cmake-utils_src_compile
+}
+
+src_test() {
+ multibuild_foreach_variant cmake-utils_src_test
+}
- cmake-utils_src_configure
+src_install() {
+ multibuild_foreach_variant cmake-utils_src_install
}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: media-libs/liblastfm/
@ 2014-10-22 13:59 Michael Palimaka
0 siblings, 0 replies; 18+ messages in thread
From: Michael Palimaka @ 2014-10-22 13:59 UTC (permalink / raw
To: gentoo-commits
commit: f7c6300e471066141cb532524684088469243d10
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 22 13:58:52 2014 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Oct 22 13:58:52 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=f7c6300e
[media-libs/libliastfm] Ensure build against at least one Qt version wrt bug #526472.
Package-Manager: portage-2.2.12
---
media-libs/liblastfm/liblastfm-9999.ebuild | 2 ++
1 file changed, 2 insertions(+)
diff --git a/media-libs/liblastfm/liblastfm-9999.ebuild b/media-libs/liblastfm/liblastfm-9999.ebuild
index 19447a5..f4536ce 100644
--- a/media-libs/liblastfm/liblastfm-9999.ebuild
+++ b/media-libs/liblastfm/liblastfm-9999.ebuild
@@ -15,6 +15,8 @@ KEYWORDS=""
SLOT="0/0"
IUSE="fingerprint test +qt4 qt5"
+REQUIRED_USE="|| ( qt4 qt5 )"
+
COMMON_DEPEND="
qt4? (
dev-qt/qtcore:4
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: media-libs/liblastfm/
@ 2015-01-30 20:54 Johannes Huber
0 siblings, 0 replies; 18+ messages in thread
From: Johannes Huber @ 2015-01-30 20:54 UTC (permalink / raw
To: gentoo-commits
commit: 79dd45fd86a2b641123e6c618fae08074c9e505e
Author: Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 30 20:43:02 2015 +0000
Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Fri Jan 30 20:43:02 2015 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=79dd45fd
[media-libs/liblastfm] Shorten pkg setup
Package-Manager: portage-2.2.15
---
media-libs/liblastfm/liblastfm-9999.ebuild | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/media-libs/liblastfm/liblastfm-9999.ebuild b/media-libs/liblastfm/liblastfm-9999.ebuild
index 6f54031..1d53acb 100644
--- a/media-libs/liblastfm/liblastfm-9999.ebuild
+++ b/media-libs/liblastfm/liblastfm-9999.ebuild
@@ -49,13 +49,7 @@ RDEPEND="${COMMON_DEPEND}
RESTRICT="test"
pkg_setup() {
- MULTIBUILD_VARIANTS=()
- if use qt4; then
- MULTIBUILD_VARIANTS+=(qt4)
- fi
- if use qt5; then
- MULTIBUILD_VARIANTS+=(qt5)
- fi
+ MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
}
src_configure() {
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: media-libs/liblastfm/
@ 2016-02-23 14:15 Michael Palimaka
0 siblings, 0 replies; 18+ messages in thread
From: Michael Palimaka @ 2016-02-23 14:15 UTC (permalink / raw
To: gentoo-commits
commit: 8c87f4975b5a7336d49739011cd3ba3efae3384a
Author: Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Sat Feb 20 21:26:16 2016 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Tue Feb 23 14:15:18 2016 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=8c87f497
media-libs/liblastfm: EAPI=6
Package-Manager: portage-2.2.27
media-libs/liblastfm/liblastfm-9999.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/media-libs/liblastfm/liblastfm-9999.ebuild b/media-libs/liblastfm/liblastfm-9999.ebuild
index 607553a..b2079b4 100644
--- a/media-libs/liblastfm/liblastfm-9999.ebuild
+++ b/media-libs/liblastfm/liblastfm-9999.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI=5
+EAPI=6
inherit cmake-utils multibuild git-r3
@@ -57,8 +57,8 @@ src_configure() {
# demos not working
local mycmakeargs=(
-DBUILD_DEMOS=OFF
- $(cmake-utils_use_build fingerprint)
- $(cmake-utils_use_build test TESTS)
+ -DBUILD_FINGERPRINT=$(usex fingerprint)
+ -DBUILD_TESTS=$(usex test)
)
if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then
mycmakeargs+=(-DBUILD_WITH_QT4=ON)
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: media-libs/liblastfm/
@ 2016-05-03 11:17 Johannes Huber
0 siblings, 0 replies; 18+ messages in thread
From: Johannes Huber @ 2016-05-03 11:17 UTC (permalink / raw
To: gentoo-commits
commit: 5ab7b7238edd3098466a442a7d07530b22dc04b1
Author: Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Tue May 3 11:17:17 2016 +0000
Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Tue May 3 11:17:17 2016 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=5ab7b723
media-libs/liblastfm: Sort
Package-Manager: portage-2.2.28
media-libs/liblastfm/liblastfm-9999.ebuild | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/media-libs/liblastfm/liblastfm-9999.ebuild b/media-libs/liblastfm/liblastfm-9999.ebuild
index ac2e9c0..98c2705 100644
--- a/media-libs/liblastfm/liblastfm-9999.ebuild
+++ b/media-libs/liblastfm/liblastfm-9999.ebuild
@@ -13,11 +13,17 @@ EGIT_REPO_URI=( "git://github.com/lastfm/${PN}" )
LICENSE="GPL-3"
KEYWORDS=""
SLOT="0/0"
-IUSE="fingerprint test +qt4 qt5"
+IUSE="fingerprint +qt4 qt5 test"
REQUIRED_USE="|| ( qt4 qt5 )"
COMMON_DEPEND="
+ fingerprint? (
+ media-libs/libsamplerate
+ sci-libs/fftw:3.0
+ qt4? ( dev-qt/qtsql:4 )
+ qt5? ( dev-qt/qtsql:5 )
+ )
qt4? (
dev-qt/qtcore:4
dev-qt/qtdbus:4
@@ -28,12 +34,6 @@ COMMON_DEPEND="
dev-qt/qtnetwork:5
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? (
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: media-libs/liblastfm/
@ 2016-05-03 11:17 Johannes Huber
0 siblings, 0 replies; 18+ messages in thread
From: Johannes Huber @ 2016-05-03 11:17 UTC (permalink / raw
To: gentoo-commits
commit: c6d02945ca561d222e92eb84e5eb05362ed49c9c
Author: Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Tue May 3 11:16:11 2016 +0000
Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Tue May 3 11:16:11 2016 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=c6d02945
media-libs/liblastfm: Sync with tree
Package-Manager: portage-2.2.28
media-libs/liblastfm/liblastfm-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/liblastfm/liblastfm-9999.ebuild b/media-libs/liblastfm/liblastfm-9999.ebuild
index b2079b4..ac2e9c0 100644
--- a/media-libs/liblastfm/liblastfm-9999.ebuild
+++ b/media-libs/liblastfm/liblastfm-9999.ebuild
@@ -45,7 +45,7 @@ RDEPEND="${COMMON_DEPEND}
!<media-libs/lastfmlib-0.4.0
"
-# 1 of 2 is failing, last checked 2012-06-22 / version 1.0.1
+# 1 of 2 (UrlBuilderTest) is failing, last checked version 1.0.9
RESTRICT="test"
pkg_setup() {
@@ -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
}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: media-libs/liblastfm/
@ 2016-07-06 13:45 Michael Palimaka
0 siblings, 0 replies; 18+ messages in thread
From: Michael Palimaka @ 2016-07-06 13:45 UTC (permalink / raw
To: gentoo-commits
commit: a7b613e0ece5d81ae990aea118cb9cbd3181eea8
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 6 13:44:34 2016 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Jul 6 13:44:54 2016 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=a7b613e0
media-libs/liblastfm: add missing USE dependency
Gentoo-bug: 587974
Package-Manager: portage-2.3.0
media-libs/liblastfm/liblastfm-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/liblastfm/liblastfm-9999.ebuild b/media-libs/liblastfm/liblastfm-9999.ebuild
index 5b24f57..4a8eb6f 100644
--- a/media-libs/liblastfm/liblastfm-9999.ebuild
+++ b/media-libs/liblastfm/liblastfm-9999.ebuild
@@ -25,13 +25,13 @@ COMMON_DEPEND="
qt5? ( dev-qt/qtsql:5 )
)
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
)
"
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: media-libs/liblastfm/
@ 2017-08-30 21:42 Andreas Sturmlechner
0 siblings, 0 replies; 18+ messages in thread
From: Andreas Sturmlechner @ 2017-08-30 21:42 UTC (permalink / raw
To: gentoo-commits
commit: a37fb4e032fbc71679319ed077cd445f6633acdc
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 30 21:39:59 2017 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Aug 30 21:39:59 2017 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=a37fb4e0
media-libs/liblastfm: Switch to USE=qt5 default
Package-Manager: Portage-2.3.6, Repoman-2.3.1
media-libs/liblastfm/liblastfm-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/liblastfm/liblastfm-9999.ebuild b/media-libs/liblastfm/liblastfm-9999.ebuild
index 65a5e8060d..c53262a439 100644
--- a/media-libs/liblastfm/liblastfm-9999.ebuild
+++ b/media-libs/liblastfm/liblastfm-9999.ebuild
@@ -12,7 +12,7 @@ EGIT_REPO_URI=( "https://github.com/lastfm/${PN}" )
LICENSE="GPL-3"
KEYWORDS=""
SLOT="0/0"
-IUSE="fingerprint +qt4 qt5 test"
+IUSE="fingerprint qt4 +qt5 test"
REQUIRED_USE="|| ( qt4 qt5 )"
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: media-libs/liblastfm/
@ 2018-03-19 20:58 Johannes Huber
0 siblings, 0 replies; 18+ messages in thread
From: Johannes Huber @ 2018-03-19 20:58 UTC (permalink / raw
To: gentoo-commits
commit: 53aa22370d836b0c36c9a68f59ec8efb2ba9806a
Author: Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 19 20:58:40 2018 +0000
Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Mon Mar 19 20:58:40 2018 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=53aa2237
media-libs/liblastfm: Drop Qt4 support
Package-Manager: Portage-2.3.24, Repoman-2.3.6
media-libs/liblastfm/liblastfm-9999.ebuild | 68 +++++++-----------------------
1 file changed, 16 insertions(+), 52 deletions(-)
diff --git a/media-libs/liblastfm/liblastfm-9999.ebuild b/media-libs/liblastfm/liblastfm-9999.ebuild
index 69cc347346..3c315d12c2 100644
--- a/media-libs/liblastfm/liblastfm-9999.ebuild
+++ b/media-libs/liblastfm/liblastfm-9999.ebuild
@@ -3,7 +3,7 @@
EAPI=6
-inherit cmake-utils multibuild git-r3
+inherit cmake-utils git-r3
DESCRIPTION="Collection of libraries to integrate Last.fm services"
HOMEPAGE="https://github.com/lastfm/liblastfm"
@@ -12,33 +12,21 @@ EGIT_REPO_URI=( "https://github.com/lastfm/${PN}" )
LICENSE="GPL-3"
KEYWORDS=""
SLOT="0/0"
-IUSE="fingerprint qt4 +qt5 test"
-
-REQUIRED_USE="|| ( qt4 qt5 )"
+IUSE="fingerprint test"
COMMON_DEPEND="
+ 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
- qt4? ( dev-qt/qtsql:4 )
- qt5? ( dev-qt/qtsql:5 )
- )
- 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
)
"
DEPEND="${COMMON_DEPEND}
- test? (
- qt4? ( dev-qt/qttest:4 )
- qt5? ( dev-qt/qttest:5 )
- )
+ test? ( dev-qt/qttest:5 )
"
RDEPEND="${COMMON_DEPEND}
!<media-libs/lastfmlib-0.4.0
@@ -47,38 +35,14 @@ RDEPEND="${COMMON_DEPEND}
# 1 of 2 (UrlBuilderTest) is failing, last checked version 1.0.9
RESTRICT="test"
-pkg_setup() {
- MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
-}
-
src_configure() {
- myconfigure() {
- # demos not working
- local mycmakeargs=(
- -DBUILD_DEMOS=OFF
- -DBUILD_FINGERPRINT=$(usex fingerprint)
- -DBUILD_TESTS=$(usex test)
- )
- if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then
- mycmakeargs+=(-DBUILD_WITH_QT4=ON)
- fi
- if [[ ${MULTIBUILD_VARIANT} = qt5 ]]; then
- mycmakeargs+=(-DBUILD_WITH_QT4=OFF)
- fi
- cmake-utils_src_configure
- }
-
- multibuild_foreach_variant myconfigure
-}
-
-src_compile() {
- multibuild_foreach_variant cmake-utils_src_compile
-}
-
-src_test() {
- multibuild_foreach_variant cmake-utils_src_test
-}
+ # demos not working
+ local mycmakeargs=(
+ -DBUILD_DEMOS=OFF
+ -DBUILD_WITH_QT4=OFF
+ -DBUILD_FINGERPRINT=$(usex fingerprint)
+ -DBUILD_TESTS=$(usex test)
+ )
-src_install() {
- multibuild_foreach_variant cmake-utils_src_install
+ cmake-utils_src_configure
}
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: media-libs/liblastfm/
@ 2018-03-22 18:45 Andreas Sturmlechner
0 siblings, 0 replies; 18+ messages in thread
From: Andreas Sturmlechner @ 2018-03-22 18:45 UTC (permalink / raw
To: gentoo-commits
commit: 621d5a8564d1f2701201a1c1168c96f0ceba1772
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 22 17:27:15 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Mar 22 17:27:15 2018 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=621d5a85
media-libs/liblastfm: Drop ancient blocker
Package-Manager: Portage-2.3.24, Repoman-2.3.6
media-libs/liblastfm/liblastfm-9999.ebuild | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/media-libs/liblastfm/liblastfm-9999.ebuild b/media-libs/liblastfm/liblastfm-9999.ebuild
index 3c315d12c2..0650817fd9 100644
--- a/media-libs/liblastfm/liblastfm-9999.ebuild
+++ b/media-libs/liblastfm/liblastfm-9999.ebuild
@@ -14,7 +14,7 @@ KEYWORDS=""
SLOT="0/0"
IUSE="fingerprint test"
-COMMON_DEPEND="
+RDEPEND="
dev-qt/qtcore:5
dev-qt/qtdbus:5
dev-qt/qtnetwork:5[ssl]
@@ -25,12 +25,9 @@ COMMON_DEPEND="
sci-libs/fftw:3.0
)
"
-DEPEND="${COMMON_DEPEND}
+DEPEND="${RDEPEND}
test? ( dev-qt/qttest:5 )
"
-RDEPEND="${COMMON_DEPEND}
- !<media-libs/lastfmlib-0.4.0
-"
# 1 of 2 (UrlBuilderTest) is failing, last checked version 1.0.9
RESTRICT="test"
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: media-libs/liblastfm/
@ 2018-10-13 12:11 Andreas Sturmlechner
0 siblings, 0 replies; 18+ messages in thread
From: Andreas Sturmlechner @ 2018-10-13 12:11 UTC (permalink / raw
To: gentoo-commits
commit: 6057eb38bd51f69990ddbc9037aca2853bbcc9df
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 13 01:43:43 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Oct 13 12:00:00 2018 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=6057eb38
media-libs/liblastfm: EAPI-7 bump
Package-Manager: Portage-2.3.49, Repoman-2.3.10
media-libs/liblastfm/liblastfm-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/liblastfm/liblastfm-9999.ebuild b/media-libs/liblastfm/liblastfm-9999.ebuild
index 0650817fd9..771aec1176 100644
--- a/media-libs/liblastfm/liblastfm-9999.ebuild
+++ b/media-libs/liblastfm/liblastfm-9999.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
inherit cmake-utils git-r3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: media-libs/liblastfm/
@ 2018-12-12 14:05 Andreas Sturmlechner
0 siblings, 0 replies; 18+ messages in thread
From: Andreas Sturmlechner @ 2018-12-12 14:05 UTC (permalink / raw
To: gentoo-commits
commit: ae90b01666b785afbbc802e952b0b033f580bd8e
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 12 12:12:24 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Dec 12 12:12:24 2018 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=ae90b016
media-libs/liblastfm: Use BDEPEND
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
media-libs/liblastfm/liblastfm-9999.ebuild | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/media-libs/liblastfm/liblastfm-9999.ebuild b/media-libs/liblastfm/liblastfm-9999.ebuild
index 771aec1176..9530baa669 100644
--- a/media-libs/liblastfm/liblastfm-9999.ebuild
+++ b/media-libs/liblastfm/liblastfm-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -25,7 +25,8 @@ RDEPEND="
sci-libs/fftw:3.0
)
"
-DEPEND="${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
test? ( dev-qt/qttest:5 )
"
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: media-libs/liblastfm/
@ 2019-02-17 11:11 Andreas Sturmlechner
0 siblings, 0 replies; 18+ messages in thread
From: Andreas Sturmlechner @ 2019-02-17 11:11 UTC (permalink / raw
To: gentoo-commits
commit: a47aa3512aaf4568898f9e9c0206c07eabbece85
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 17 10:31:01 2019 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Feb 17 10:31:01 2019 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=a47aa351
media-libs/liblastfm: Fix USE test DEPEND
Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
media-libs/liblastfm/liblastfm-9999.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/media-libs/liblastfm/liblastfm-9999.ebuild b/media-libs/liblastfm/liblastfm-9999.ebuild
index c24ffc2a6b..a99c695366 100644
--- a/media-libs/liblastfm/liblastfm-9999.ebuild
+++ b/media-libs/liblastfm/liblastfm-9999.ebuild
@@ -25,8 +25,7 @@ RDEPEND="
sci-libs/fftw:3.0
)
"
-DEPEND="${RDEPEND}"
-BDEPEND="
+DEPEND="${RDEPEND}
test? ( dev-qt/qttest:5 )
"
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: media-libs/liblastfm/
@ 2022-09-14 14:49 Andreas Sturmlechner
0 siblings, 0 replies; 18+ messages in thread
From: Andreas Sturmlechner @ 2022-09-14 14:49 UTC (permalink / raw
To: gentoo-commits
commit: 12d3277a5a5454f2aa5a81225c10707135fd2f55
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 14 14:47:29 2022 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed Sep 14 14:49:00 2022 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=12d3277a
media-libs/liblastfm: add github upstream metadata
Sync with Gentoo ebuild repository.
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
media-libs/liblastfm/metadata.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/media-libs/liblastfm/metadata.xml b/media-libs/liblastfm/metadata.xml
index bd83260239..af37e57ca2 100644
--- a/media-libs/liblastfm/metadata.xml
+++ b/media-libs/liblastfm/metadata.xml
@@ -5,6 +5,9 @@
<email>kde@gentoo.org</email>
<name>Gentoo KDE Project</name>
</maintainer>
+ <upstream>
+ <remote-id type="github">lastfm/liblastfm</remote-id>
+ </upstream>
<use>
<flag name="fingerprint">Build the lastfm-fingerprint library</flag>
</use>
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [gentoo-commits] proj/kde:master commit in: media-libs/liblastfm/
@ 2024-03-03 11:34 Andreas Sturmlechner
0 siblings, 0 replies; 18+ messages in thread
From: Andreas Sturmlechner @ 2024-03-03 11:34 UTC (permalink / raw
To: gentoo-commits
commit: e9ef3e33220e789c9b559d16bd6b7714622a06a4
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 3 11:29:14 2024 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Mar 3 11:29:14 2024 +0000
URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=e9ef3e33
media-libs/liblastfm: Minor style fix
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
media-libs/liblastfm/liblastfm-9999.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/liblastfm/liblastfm-9999.ebuild b/media-libs/liblastfm/liblastfm-9999.ebuild
index 696c5cfae2..1e5b07edc4 100644
--- a/media-libs/liblastfm/liblastfm-9999.ebuild
+++ b/media-libs/liblastfm/liblastfm-9999.ebuild
@@ -10,8 +10,8 @@ HOMEPAGE="https://github.com/lastfm/liblastfm"
EGIT_REPO_URI=( "https://github.com/lastfm/${PN}" )
LICENSE="GPL-3"
-KEYWORDS=""
SLOT="0/0"
+KEYWORDS=""
IUSE="fingerprint test"
RDEPEND="
^ permalink raw reply related [flat|nested] 18+ messages in thread
end of thread, other threads:[~2024-03-03 11:34 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-13 12:11 [gentoo-commits] proj/kde:master commit in: media-libs/liblastfm/ Andreas Sturmlechner
-- strict thread matches above, loose matches on Subject: below --
2024-03-03 11:34 Andreas Sturmlechner
2022-09-14 14:49 Andreas Sturmlechner
2019-02-17 11:11 Andreas Sturmlechner
2018-12-12 14:05 Andreas Sturmlechner
2018-03-22 18:45 Andreas Sturmlechner
2018-03-19 20:58 Johannes Huber
2017-08-30 21:42 Andreas Sturmlechner
2016-07-06 13:45 Michael Palimaka
2016-05-03 11:17 Johannes Huber
2016-05-03 11:17 Johannes Huber
2016-02-23 14:15 Michael Palimaka
2015-01-30 20:54 Johannes Huber
2014-10-22 13:59 Michael Palimaka
2014-10-12 16:47 Michael Palimaka
2014-03-11 11:27 Johannes Huber
2013-10-13 17:03 Johannes Huber
2013-01-20 16:06 Michael Palimaka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox