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-sound/sonata/
Date: Wed, 19 Feb 2020 20:40:27
Message-Id: 1582144808.9cf2eab1ccc2b4a989212a0e8198f3747e0187bc.asturm@gentoo
1 commit: 9cf2eab1ccc2b4a989212a0e8198f3747e0187bc
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 19 20:38:54 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 19 20:40:08 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cf2eab1
7
8 media-sound/sonata: 1.7_beta1_p20200212 version bump
9
10 Too many patches on top of 2016 release of 1.7_beta1.
11
12 Bug: https://bugs.gentoo.org/708170
13 Package-Manager: Portage-2.3.89, Repoman-2.3.20
14 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
15
16 media-sound/sonata/Manifest | 1 +
17 .../sonata/sonata-1.7_beta1_p20200212.ebuild | 39 ++++++++++++++++++++++
18 2 files changed, 40 insertions(+)
19
20 diff --git a/media-sound/sonata/Manifest b/media-sound/sonata/Manifest
21 index 10001967f46..7b3aee904a7 100644
22 --- a/media-sound/sonata/Manifest
23 +++ b/media-sound/sonata/Manifest
24 @@ -1 +1,2 @@
25 DIST sonata-1.6.2.1.tar.bz2 314333 BLAKE2B a2d7f6f8b5fe4b774136c70e7a354a8b8d948f44e876e3d59b0a216cb482de6c9b5a38b1332347136466965bd0551a03ba53f9e554c969ce901e880fa691496e SHA512 8022b69380714e9c3c685c61d0f1e62be087fc2cbd77a55f32008edea53411f8493d416bd0a446ccb52b4b5603ba9f4a00b655af485d739932dc06af69345c27
26 +DIST sonata-1.7_beta1_p20200212.tar.gz 2259353 BLAKE2B 78befe6896d75033649e4f7333bc1487cc7462a66564860d93b4770cb7e86a6cc4656377b6e13defb07591b0a81cbd22653f01c5e9f20d75fcbf28a84551f7fb SHA512 bdff3ee3ec4d94a18604409efbca398f94633a510780f33d449921b69787521ad5d68285aa0fe7252191c1227435c42cf60bca0fe7764e1a8b3d887ff4be4ae6
27
28 diff --git a/media-sound/sonata/sonata-1.7_beta1_p20200212.ebuild b/media-sound/sonata/sonata-1.7_beta1_p20200212.ebuild
29 new file mode 100644
30 index 00000000000..3f5b0239414
31 --- /dev/null
32 +++ b/media-sound/sonata/sonata-1.7_beta1_p20200212.ebuild
33 @@ -0,0 +1,39 @@
34 +# Copyright 1999-2020 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +COMMIT=0c807e593f7571a654ad055cb126652d7f3a698d
40 +PYTHON_COMPAT=( python3_{6,7} )
41 +DISTUTILS_SINGLE_IMPL="true"
42 +DISTUTILS_USE_SETUPTOOLS="rdepend"
43 +inherit desktop distutils-r1
44 +
45 +DESCRIPTION="Elegant GTK+ music client for the Music Player Daemon (MPD)"
46 +HOMEPAGE="https://www.nongnu.org/sonata/"
47 +SRC_URI="https://github.com/multani/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
48 +
49 +LICENSE="GPL-3"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~ppc ~x86"
52 +IUSE="dbus taglib"
53 +
54 +BDEPEND="
55 + virtual/pkgconfig
56 +"
57 +RDEPEND="
58 + $(python_gen_cond_dep '
59 + dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]
60 + dev-python/python-mpd[${PYTHON_MULTI_USEDEP}]
61 + dbus? ( dev-python/dbus-python[${PYTHON_MULTI_USEDEP}] )
62 + taglib? ( dev-python/tagpy[${PYTHON_MULTI_USEDEP}] )
63 + ')
64 +"
65 +
66 +S="${WORKDIR}/${PN}-${COMMIT}"
67 +
68 +src_install() {
69 + distutils-r1_src_install
70 + doicon -s 128 sonata/pixmaps/sonata.png
71 + rm -r "${D}"/usr/share/sonata || die
72 +}