* [gentoo-commits] repo/gentoo:master commit in: media-plugins/gmpc-lyrics/
@ 2017-11-26 23:06 David Seifert
0 siblings, 0 replies; 4+ messages in thread
From: David Seifert @ 2017-11-26 23:06 UTC (permalink / raw
To: gentoo-commits
commit: 59b9533e03dede04b2a5a2c28989b90baf9ded4c
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 26 12:05:27 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Nov 26 23:04:58 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59b9533e
media-plugins/gmpc-lyrics: [QA] Consistent whitespace in metadata.xml
media-plugins/gmpc-lyrics/metadata.xml | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/media-plugins/gmpc-lyrics/metadata.xml b/media-plugins/gmpc-lyrics/metadata.xml
index 60ae1fbf3f0..bb2d5997f23 100644
--- a/media-plugins/gmpc-lyrics/metadata.xml
+++ b/media-plugins/gmpc-lyrics/metadata.xml
@@ -6,11 +6,11 @@
<name>Gentoo Sound project</name>
</maintainer>
<longdescription>
-This plugin fetches lyrics from the internet. It uses the following websites as sources:
- * LyricWiki
- * LeosLyrics
- * Lyrics Tracker
-</longdescription>
+ This plugin fetches lyrics from the internet. It uses the following websites as sources:
+ * LyricWiki
+ * LeosLyrics
+ * Lyrics Tracker
+ </longdescription>
<upstream>
<remote-id type="sourceforge">musicpd</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/gmpc-lyrics/
@ 2019-12-22 11:52 David Seifert
0 siblings, 0 replies; 4+ messages in thread
From: David Seifert @ 2019-12-22 11:52 UTC (permalink / raw
To: gentoo-commits
commit: 822d870fdf7578a0da7e9dcecf875488e04fc3db
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 22 11:52:07 2019 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Dec 22 11:52:07 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=822d870f
media-plugins/gmpc-lyrics: Port to EAPI 7
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>
media-plugins/gmpc-lyrics/gmpc-lyrics-11.8.16.ebuild | 20 +++++++++++++-------
1 file changed, 13 insertions(+), 7 deletions(-)
diff --git a/media-plugins/gmpc-lyrics/gmpc-lyrics-11.8.16.ebuild b/media-plugins/gmpc-lyrics/gmpc-lyrics-11.8.16.ebuild
index a579690cdb1..54536f76f22 100644
--- a/media-plugins/gmpc-lyrics/gmpc-lyrics-11.8.16.ebuild
+++ b/media-plugins/gmpc-lyrics/gmpc-lyrics-11.8.16.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=4
+EAPI=7
DESCRIPTION="This plugin fetches lyrics"
HOMEPAGE="http://gmpc.wikia.com/wiki/GMPC_PLUGIN_LYRICS"
@@ -12,12 +12,16 @@ SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="nls"
-RDEPEND=">=media-sound/gmpc-${PV}
+RDEPEND="
+ >=media-sound/gmpc-${PV}
dev-libs/libxml2:2"
-DEPEND="${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
virtual/pkgconfig
- nls? ( dev-util/intltool
- sys-devel/gettext )"
+ nls? (
+ dev-util/intltool
+ sys-devel/gettext
+ )"
src_configure() {
econf $(use_enable nls)
@@ -25,5 +29,7 @@ src_configure() {
src_install() {
default
- find "${ED}" -name "*.la" -exec rm {} + || die
+
+ # plugins only
+ find "${D}" -name '*.la' -delete || die
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/gmpc-lyrics/
@ 2020-06-15 16:38 Aaron Bauman
0 siblings, 0 replies; 4+ messages in thread
From: Aaron Bauman @ 2020-06-15 16:38 UTC (permalink / raw
To: gentoo-commits
commit: c43fc9c3a134a2eb5a34d886fc28ba7307a4ef9c
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Mon Jun 15 13:33:39 2020 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Jun 15 16:37:52 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c43fc9c3
media-plugins/gmpc-lyrics: use HTTPS, fix download link
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
media-plugins/gmpc-lyrics/gmpc-lyrics-11.8.16.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/media-plugins/gmpc-lyrics/gmpc-lyrics-11.8.16.ebuild b/media-plugins/gmpc-lyrics/gmpc-lyrics-11.8.16.ebuild
index 54536f76f22..70647714a64 100644
--- a/media-plugins/gmpc-lyrics/gmpc-lyrics-11.8.16.ebuild
+++ b/media-plugins/gmpc-lyrics/gmpc-lyrics-11.8.16.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="This plugin fetches lyrics"
-HOMEPAGE="http://gmpc.wikia.com/wiki/GMPC_PLUGIN_LYRICS"
-SRC_URI="mirror://sourceforge/musicpd/${P}.tar.gz"
+HOMEPAGE="https://gmpc.fandom.com/wiki/GMPC_PLUGIN_LYRICS"
+SRC_URI="https://download.sarine.nl/Programs/gmpc/11.8.16/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/gmpc-lyrics/
@ 2022-05-13 22:50 Conrad Kostecki
0 siblings, 0 replies; 4+ messages in thread
From: Conrad Kostecki @ 2022-05-13 22:50 UTC (permalink / raw
To: gentoo-commits
commit: 1b40a063df879d6ca8e9bdb1e6df5656c179749c
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Fri May 13 21:52:00 2022 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Fri May 13 22:49:41 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b40a063
media-plugins/gmpc-lyrics: fix qa StaticSrcUri
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
media-plugins/gmpc-lyrics/gmpc-lyrics-11.8.16.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-plugins/gmpc-lyrics/gmpc-lyrics-11.8.16.ebuild b/media-plugins/gmpc-lyrics/gmpc-lyrics-11.8.16.ebuild
index 70647714a642..cb1e609984b6 100644
--- a/media-plugins/gmpc-lyrics/gmpc-lyrics-11.8.16.ebuild
+++ b/media-plugins/gmpc-lyrics/gmpc-lyrics-11.8.16.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="This plugin fetches lyrics"
HOMEPAGE="https://gmpc.fandom.com/wiki/GMPC_PLUGIN_LYRICS"
-SRC_URI="https://download.sarine.nl/Programs/gmpc/11.8.16/${P}.tar.gz"
+SRC_URI="https://download.sarine.nl/Programs/gmpc/${PV}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-05-13 22:50 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-13 22:50 [gentoo-commits] repo/gentoo:master commit in: media-plugins/gmpc-lyrics/ Conrad Kostecki
-- strict thread matches above, loose matches on Subject: below --
2020-06-15 16:38 Aaron Bauman
2019-12-22 11:52 David Seifert
2017-11-26 23:06 David Seifert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox