Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/liblastfm/
Date: Thu, 22 Mar 2018 18:02:46
Message-Id: 1521741744.86a95d88b08ae6a425ad44193483fad7e233198b.asturm@gentoo
1 commit: 86a95d88b08ae6a425ad44193483fad7e233198b
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 22 17:33:00 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 22 18:02:24 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86a95d88
7
8 media-libs/liblastfm: Add 1.1.0_pre20150206 version bump
9
10 Moved header dir to liblastfm5.
11
12 Package-Manager: Portage-2.3.24, Repoman-2.3.6
13
14 media-libs/liblastfm/Manifest | 1 +
15 .../liblastfm/liblastfm-1.1.0_pre20150206.ebuild | 46 ++++++++++++++++++++++
16 2 files changed, 47 insertions(+)
17
18 diff --git a/media-libs/liblastfm/Manifest b/media-libs/liblastfm/Manifest
19 index 2dfb36c6b2f..60f6dddc9af 100644
20 --- a/media-libs/liblastfm/Manifest
21 +++ b/media-libs/liblastfm/Manifest
22 @@ -1 +1,2 @@
23 DIST liblastfm-1.0.9.tar.gz 119320 BLAKE2B 4c661b703af1e94b42d2bddffd994e0d33360979e47e0079f3824a9febcdba22c3ccedd8599da5c1d4b701a329cb4779bd680181837152cb1d23a231ec6eee73 SHA512 9d2bcf71b26d8a95920a07649c97b3faa071c49a8269268bb08fab01537392774873233d03cada09d3ce3fe2c45b0affdb74cd27c41f69342b973896effe1018
24 +DIST liblastfm-1.1.0_pre20150206.tar.gz 119380 BLAKE2B ec532b7577e60c02f9e8202b06e4e496b052801d60a27795d58204c6fbec62eea24512979ea9e42f643e7cfc01794982e07b808f6411b884893e13c29d9e17b0 SHA512 984d4b6b36a12e019e486425d243fc5be24fc3968b30f7ec746204c976b9c526477d56793205c9a6eed79bff1b33a2b1c7063d1d08fd376c4b89346337d8b166
25
26 diff --git a/media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild b/media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild
27 new file mode 100644
28 index 00000000000..07c936ffe14
29 --- /dev/null
30 +++ b/media-libs/liblastfm/liblastfm-1.1.0_pre20150206.ebuild
31 @@ -0,0 +1,46 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +COMMIT=44331654256df83bc1d3cbb271a8ce3d4c464686
38 +inherit cmake-utils vcs-snapshot
39 +
40 +DESCRIPTION="Collection of libraries to integrate Last.fm services"
41 +HOMEPAGE="https://github.com/lastfm/liblastfm"
42 +SRC_URI="https://github.com/lastfm/liblastfm/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="GPL-3"
45 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
46 +SLOT="0/0"
47 +IUSE="fingerprint test"
48 +
49 +RDEPEND="
50 + dev-qt/qtcore:5
51 + dev-qt/qtdbus:5
52 + dev-qt/qtnetwork:5[ssl]
53 + dev-qt/qtxml:5
54 + fingerprint? (
55 + dev-qt/qtsql:5
56 + media-libs/libsamplerate
57 + sci-libs/fftw:3.0
58 + )
59 +"
60 +DEPEND="${RDEPEND}
61 + test? ( dev-qt/qttest:5 )
62 +"
63 +
64 +# 1 of 2 (UrlBuilderTest) is failing, last checked version 1.0.9
65 +RESTRICT="test"
66 +
67 +src_configure() {
68 + # demos not working
69 + local mycmakeargs=(
70 + -DBUILD_DEMOS=OFF
71 + -DBUILD_WITH_QT4=OFF
72 + -DBUILD_FINGERPRINT=$(usex fingerprint)
73 + -DBUILD_TESTS=$(usex test)
74 + )
75 +
76 + cmake-utils_src_configure
77 +}