Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-mpc-plugin/
Date: Tue, 13 Aug 2019 12:11:02
Message-Id: 1565698243.3451633b2829e2cf49da9460ec5f2c7e7e2cb847.mgorny@gentoo
1 commit: 3451633b2829e2cf49da9460ec5f2c7e7e2cb847
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 13 11:20:35 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 13 12:10:43 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3451633b
7
8 xfce-extra/xfce4-mpc-plugin: Bump to 0.5.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 xfce-extra/xfce4-mpc-plugin/Manifest | 1 +
13 .../xfce4-mpc-plugin/xfce4-mpc-plugin-0.5.2.ebuild | 31 ++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/xfce-extra/xfce4-mpc-plugin/Manifest b/xfce-extra/xfce4-mpc-plugin/Manifest
17 index d150105694c..052ff8d9ced 100644
18 --- a/xfce-extra/xfce4-mpc-plugin/Manifest
19 +++ b/xfce-extra/xfce4-mpc-plugin/Manifest
20 @@ -1 +1,2 @@
21 DIST xfce4-mpc-plugin-0.5.1.tar.bz2 290830 BLAKE2B 464bf4e3ca12049d241ddbf5cd2e30e4e41bda2934e809f8c75f2ceaa659647918d90a6265a49d01f84e2d0d3a6cca880ee8c90dcbf377a163e14fcfe25e5ae0 SHA512 7647ecdc7058e67be26c615853059cba25944fc6e31b06bca1e48f5378d3afddc2c4b82c5c581fe8ec716e0723a4d65c7ec4ee592540936ccca331049b3e024c
22 +DIST xfce4-mpc-plugin-0.5.2.tar.bz2 293655 BLAKE2B 0b82ee0c8d19342365d6e7a7fc28fcc4ccf880c735df70e793123e63ff86df7e6c3d6d80a8b1c81dd4f7fb264a291897a1900c76aef35c4855c333c85ddfc467 SHA512 c0e6580d5c9c8677a1ad4e8ec4233de1aafc8a2e6744d5d82d3f58f5689e53096a40ff0d1355475a0fdb3e6bc54b44aabb9ca91e5e9caf5cf3ef6fdd4778c22e
23
24 diff --git a/xfce-extra/xfce4-mpc-plugin/xfce4-mpc-plugin-0.5.2.ebuild b/xfce-extra/xfce4-mpc-plugin/xfce4-mpc-plugin-0.5.2.ebuild
25 new file mode 100644
26 index 00000000000..835a3b98b5e
27 --- /dev/null
28 +++ b/xfce-extra/xfce4-mpc-plugin/xfce4-mpc-plugin-0.5.2.ebuild
29 @@ -0,0 +1,31 @@
30 +# Copyright 1999-2019 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit xdg-utils
36 +
37 +DESCRIPTION="Music Player Daemon (mpd) panel plugin"
38 +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-mpc-plugin"
39 +SRC_URI="https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
40 +
41 +LICENSE="ISC"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
44 +IUSE="+libmpd"
45 +
46 +RDEPEND=">=xfce-base/libxfce4ui-4.12:=[gtk3(+)]
47 + >=xfce-base/xfce4-panel-4.13.5:=
48 + libmpd? ( media-libs/libmpd:= )"
49 +DEPEND="${RDEPEND}
50 + dev-util/intltool
51 + virtual/pkgconfig"
52 +
53 +src_configure() {
54 + econf $(use_enable libmpd)
55 +}
56 +
57 +src_install() {
58 + default
59 + find "${D}" -name '*.la' -delete || die
60 +}