Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/cmusfm/
Date: Sat, 05 May 2018 20:51:53
Message-Id: 1525553498.30e2fd920b9bb5cdc056a31b07174c17d9f1c9cb.bman@gentoo
1 commit: 30e2fd920b9bb5cdc056a31b07174c17d9f1c9cb
2 Author: Petr Vaněk <pv <AT> excello <DOT> cz>
3 AuthorDate: Tue Mar 13 08:51:50 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat May 5 20:51:38 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30e2fd92
7
8 media-sound/cmusfm: Bump to 0.3.3
9
10 Closes: https://bugs.gentoo.org/609140
11 Closes: https://github.com/gentoo/gentoo/pull/7441
12
13 media-sound/cmusfm/Manifest | 1 +
14 media-sound/cmusfm/cmusfm-0.3.3.ebuild | 41 ++++++++++++++++++++++++++++++++++
15 2 files changed, 42 insertions(+)
16
17 diff --git a/media-sound/cmusfm/Manifest b/media-sound/cmusfm/Manifest
18 index 0c0b1ca263a..9573b1f519b 100644
19 --- a/media-sound/cmusfm/Manifest
20 +++ b/media-sound/cmusfm/Manifest
21 @@ -1,2 +1,3 @@
22 DIST cmusfm-0.2.5.tar.gz 28651 BLAKE2B c69dcaa5900ed4cf3d1a0274ac3dc6e6322b73222a472c26434fa4912c2f351fa67b0f3ac1d91df9f707d5c38d6ffa7c4401ed3500ed929adcbb63b9e513f765 SHA512 0db8d865342438531bfb800d835800240e47732444795159f72ed3c91a4c3f0747ba2da1dcc8e71ef340ba5a3febdb39d8dd5868b134afcbcf7b3614a7790eae
23 DIST cmusfm-0.3.1.tar.gz 34521 BLAKE2B d5f7ce5cb37a03114e910f0ad7fd39bb3e940ce9d0ad416e464dc6cfc5438bbe901845b610bd8d0e508bde236ef6ed9cb894afb5a4cae710b1347d3173ffa60b SHA512 2d4d551d2a82fc2d70c7f75705f8cec236a0cf7b8e5268c91cc32b4ede4ecd51c4577d673b8c36f041e514af59142f2c9c001cd422c0790f0e0b3596b4394064
24 +DIST cmusfm-0.3.3.tar.gz 37553 BLAKE2B f266d83edbed960d8c466cba80ce57d645c5c9cdfceac27c29d0ef424c8135f22377dc0490462d3107dfcfd32ac9d15fa6142269b453c8a80818da9bd10a28fd SHA512 6537905bdf09d04f09783237997536a1ee231ee4e589826d87f435c0dd7542dbd7d97167990bf949d2a9eb73c4a9a4da1bab17888de0aecedb2a63deaa873f39
25
26 diff --git a/media-sound/cmusfm/cmusfm-0.3.3.ebuild b/media-sound/cmusfm/cmusfm-0.3.3.ebuild
27 new file mode 100644
28 index 00000000000..3a2f2d2e87b
29 --- /dev/null
30 +++ b/media-sound/cmusfm/cmusfm-0.3.3.ebuild
31 @@ -0,0 +1,41 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +inherit autotools readme.gentoo-r1
37 +
38 +DESCRIPTION="Last.fm scrobbler for cmus music player"
39 +HOMEPAGE="https://github.com/Arkq/cmusfm"
40 +SRC_URI="https://github.com/Arkq/cmusfm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="GPL-3"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE="libnotify"
46 +
47 +CDEPEND="net-misc/curl
48 + dev-libs/openssl:0=
49 + libnotify? ( >=x11-libs/libnotify-0.7 )"
50 +DEPEND="${CDEPEND}
51 + virtual/pkgconfig"
52 +RDEPEND="${CDEPEND}
53 + media-sound/cmus"
54 +
55 +src_prepare() {
56 + default
57 + eautoreconf
58 + DOC_CONTENTS="Please refer to the README.md file before running cmusfm the first time."
59 +}
60 +
61 +src_configure() {
62 + econf $(use_enable libnotify)
63 +}
64 +
65 +src_install() {
66 + default
67 + readme.gentoo_create_doc
68 +}
69 +
70 +pkg_postinst() {
71 + readme.gentoo_pkg_postinst
72 +}