Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/cmusfm/
Date: Mon, 22 Aug 2016 02:46:11
Message-Id: 1471833913.1b7e927fd05e7ecaf567d02ef3eee51056cafc88.radhermit@gentoo
1 commit: 1b7e927fd05e7ecaf567d02ef3eee51056cafc88
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 22 02:43:08 2016 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 22 02:45:13 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b7e927f
7
8 media-sound/cmusfm: version bump to 0.3.1
9
10 media-sound/cmusfm/Manifest | 1 +
11 media-sound/cmusfm/cmusfm-0.3.1.ebuild | 42 ++++++++++++++++++++++++++++++++++
12 2 files changed, 43 insertions(+)
13
14 diff --git a/media-sound/cmusfm/Manifest b/media-sound/cmusfm/Manifest
15 index 55c00b7..b770624 100644
16 --- a/media-sound/cmusfm/Manifest
17 +++ b/media-sound/cmusfm/Manifest
18 @@ -1 +1,2 @@
19 DIST cmusfm-0.2.5.tar.gz 28651 SHA256 f6f0a2e60a3c00480903035f71339aa4ea8a70d2f64b3ff9a6ea2f75b61543af SHA512 0db8d865342438531bfb800d835800240e47732444795159f72ed3c91a4c3f0747ba2da1dcc8e71ef340ba5a3febdb39d8dd5868b134afcbcf7b3614a7790eae WHIRLPOOL 3fe8dc2bc233f031b83fe43186a70877acafc16057dc93f2c1155031c5f65553eb525a4bd9d83afb4d8f5224b785c43c95a75d1d8147b0c92ba19d049bb47b3e
20 +DIST cmusfm-0.3.1.tar.gz 34521 SHA256 359a46e60c59940d53b2c25093298d518f520be6aa2f4ee2363174ead6542e09 SHA512 2d4d551d2a82fc2d70c7f75705f8cec236a0cf7b8e5268c91cc32b4ede4ecd51c4577d673b8c36f041e514af59142f2c9c001cd422c0790f0e0b3596b4394064 WHIRLPOOL bb9039159b80eb221a38595734f7c2cf518f88f98ca19f94c636fb0630ffb5117ed99dacd6373aff04875224a98829b6d8c8043eede489f4b2ceb435f1d70e59
21
22 diff --git a/media-sound/cmusfm/cmusfm-0.3.1.ebuild b/media-sound/cmusfm/cmusfm-0.3.1.ebuild
23 new file mode 100644
24 index 0000000..a334437
25 --- /dev/null
26 +++ b/media-sound/cmusfm/cmusfm-0.3.1.ebuild
27 @@ -0,0 +1,42 @@
28 +# Copyright 1999-2016 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +# $Id$
31 +
32 +EAPI=6
33 +inherit autotools readme.gentoo-r1
34 +
35 +DESCRIPTION="Last.fm scrobbler for cmus music player"
36 +HOMEPAGE="https://github.com/Arkq/cmusfm"
37 +SRC_URI="https://github.com/Arkq/cmusfm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
38 +
39 +LICENSE="GPL-3"
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~x86"
42 +IUSE="libnotify"
43 +
44 +CDEPEND="net-misc/curl
45 + dev-libs/openssl:0=
46 + libnotify? ( >=x11-libs/libnotify-0.7 )"
47 +DEPEND="${CDEPEND}
48 + virtual/pkgconfig"
49 +RDEPEND="${CDEPEND}
50 + media-sound/cmus"
51 +
52 +src_prepare() {
53 + default
54 + eautoreconf
55 + DOC_CONTENTS="Please refer to the README.md file before running cmusfm the first time."
56 +}
57 +
58 +src_configure() {
59 + econf $(use_enable libnotify)
60 +}
61 +
62 +src_install() {
63 + default
64 + readme.gentoo_create_doc
65 +}
66 +
67 +pkg_postinst() {
68 + readme.gentoo_pkg_postinst
69 +}