public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-sound/mp3c/
@ 2018-01-05 22:02 Ulrich Müller
  0 siblings, 0 replies; 7+ messages in thread
From: Ulrich Müller @ 2018-01-05 22:02 UTC (permalink / raw
  To: gentoo-commits

commit:     62b9d1896c9fda90324c82c68226d1d936e94f92
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  5 20:57:44 2018 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Fri Jan  5 22:00:42 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62b9d189

media-sound/mp3c: Remove linguas_* from IUSE.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-sound/mp3c/mp3c-0.31-r1.ebuild | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/media-sound/mp3c/mp3c-0.31-r1.ebuild b/media-sound/mp3c/mp3c-0.31-r1.ebuild
index 67ebc8281ac..2d69febe02f 100644
--- a/media-sound/mp3c/mp3c-0.31-r1.ebuild
+++ b/media-sound/mp3c/mp3c-0.31-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 inherit eutils
@@ -18,12 +18,6 @@ SLOT="0"
 LICENSE="GPL-2"
 KEYWORDS="amd64 ppc sparc x86"
 
-LANGS="de es it pl pt"
-
-for X in ${LANGS}; do
-	IUSE="${IUSE} linguas_${X}"
-done
-
 src_unpack() {
 	unpack ${A}
 	cd "${S}"


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/mp3c/
@ 2019-10-16 11:40 David Seifert
  0 siblings, 0 replies; 7+ messages in thread
From: David Seifert @ 2019-10-16 11:40 UTC (permalink / raw
  To: gentoo-commits

commit:     2c1fe16a377bacfc77fedb90147a27cd2ab8060a
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 16 11:39:51 2019 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Wed Oct 16 11:39:51 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c1fe16a

media-sound/mp3c: Port to EAPI 7

Bug: https://bugs.gentoo.org/697274
Closes: https://bugs.gentoo.org/689980
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 media-sound/mp3c/mp3c-0.31-r1.ebuild | 45 ++++++++++++++++++------------------
 1 file changed, 23 insertions(+), 22 deletions(-)

diff --git a/media-sound/mp3c/mp3c-0.31-r1.ebuild b/media-sound/mp3c/mp3c-0.31-r1.ebuild
index 55681684164..c81de5093ef 100644
--- a/media-sound/mp3c/mp3c-0.31-r1.ebuild
+++ b/media-sound/mp3c/mp3c-0.31-r1.ebuild
@@ -1,37 +1,38 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=0
+EAPI=7
 
-inherit eutils
-
-IUSE="mp3 vorbis"
+inherit flag-o-matic toolchain-funcs
 
 DESCRIPTION="console based mp3 ripper, with cddb support"
 HOMEPAGE="http://wspse.de/WSPse/Linux-MP3c.php3"
 SRC_URI="ftp://ftp.wspse.de/pub/linux/wspse/${P}.tar.bz2"
 
-RDEPEND="mp3? ( media-sound/lame
-	>=media-sound/mp3info-0.8.4-r1 )
-	virtual/cdrtools
-	vorbis? ( media-sound/vorbis-tools )"
-
-SLOT="0"
 LICENSE="GPL-2"
+SLOT="0"
 KEYWORDS="amd64 ppc sparc x86"
+IUSE="mp3 vorbis"
 
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
-	epatch "${FILESDIR}/${PN}-buffer.patch"
-}
+DEPEND="sys-libs/ncurses:0="
+RDEPEND="
+	${DEPEND}
+	virtual/cdrtools
+	mp3? (
+		media-sound/lame
+		media-sound/mp3info
+	)
+	vorbis? ( media-sound/vorbis-tools )"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=( "${FILESDIR}"/${PN}-buffer.patch )
 
-src_compile() {
-	econf $(use_enable vorbis oggdefaults) || die "econf failed !"
-	emake || die "emake failed!"
+src_configure() {
+	append-libs $($(tc-getPKG_CONFIG) --libs ncurses)
+	econf $(use_enable vorbis oggdefaults)
 }
 
-src_install () {
-	make DESTDIR="${D}" install || die
-	dodoc AUTHORS *README BUGS CDDB_HOWTO ChangeLog FAQ NEWS OTHERS TODO
+src_install() {
+	default
+	dodoc BATCH.README CDDB_HOWTO OTHERS
 }


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/mp3c/
@ 2020-12-18  9:00 Michał Górny
  0 siblings, 0 replies; 7+ messages in thread
From: Michał Górny @ 2020-12-18  9:00 UTC (permalink / raw
  To: gentoo-commits

commit:     1a2c5ffb9dd209fab7c7cdcda8af36176c594a79
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 18 08:57:31 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Dec 18 09:00:28 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a2c5ffb

media-sound/mp3c: Inline virtual/cdrtools

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 media-sound/mp3c/mp3c-0.31-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/mp3c/mp3c-0.31-r1.ebuild b/media-sound/mp3c/mp3c-0.31-r1.ebuild
index c81de5093ef..8ed58790772 100644
--- a/media-sound/mp3c/mp3c-0.31-r1.ebuild
+++ b/media-sound/mp3c/mp3c-0.31-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -17,7 +17,7 @@ IUSE="mp3 vorbis"
 DEPEND="sys-libs/ncurses:0="
 RDEPEND="
 	${DEPEND}
-	virtual/cdrtools
+	app-cdr/cdrtools
 	mp3? (
 		media-sound/lame
 		media-sound/mp3info


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/mp3c/
@ 2025-03-08 11:20 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2025-03-08 11:20 UTC (permalink / raw
  To: gentoo-commits

commit:     7a71bcf234e181753b742d92f503a7332841ac86
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  8 11:20:10 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  8 11:20:10 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a71bcf2

media-sound/mp3c: Stabilize 0.31-r2 amd64, #950879

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-sound/mp3c/mp3c-0.31-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/mp3c/mp3c-0.31-r2.ebuild b/media-sound/mp3c/mp3c-0.31-r2.ebuild
index 8de1f7276435..025c36d9958f 100644
--- a/media-sound/mp3c/mp3c-0.31-r2.ebuild
+++ b/media-sound/mp3c/mp3c-0.31-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.wspse.de/pub/linux/wspse/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc ~x86"
 IUSE="mp3 vorbis"
 
 DEPEND="sys-libs/ncurses:0="


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/mp3c/
@ 2025-03-08 13:15 Arthur Zamarin
  0 siblings, 0 replies; 7+ messages in thread
From: Arthur Zamarin @ 2025-03-08 13:15 UTC (permalink / raw
  To: gentoo-commits

commit:     7af3cf00784cc537861751b3e074fed821af492f
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  8 13:15:54 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  8 13:15:54 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7af3cf00

media-sound/mp3c: Stabilize 0.31-r2 ppc, #950879

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 media-sound/mp3c/mp3c-0.31-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/mp3c/mp3c-0.31-r2.ebuild b/media-sound/mp3c/mp3c-0.31-r2.ebuild
index 025c36d9958f..330478b3e1e0 100644
--- a/media-sound/mp3c/mp3c-0.31-r2.ebuild
+++ b/media-sound/mp3c/mp3c-0.31-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.wspse.de/pub/linux/wspse/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ppc ~sparc ~x86"
 IUSE="mp3 vorbis"
 
 DEPEND="sys-libs/ncurses:0="


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/mp3c/
@ 2025-03-08 13:37 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2025-03-08 13:37 UTC (permalink / raw
  To: gentoo-commits

commit:     415969bff04df3ca650b3c2a1b685911e98573d3
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  8 13:37:04 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  8 13:37:04 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=415969bf

media-sound/mp3c: Stabilize 0.31-r2 sparc, #950879

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-sound/mp3c/mp3c-0.31-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/mp3c/mp3c-0.31-r2.ebuild b/media-sound/mp3c/mp3c-0.31-r2.ebuild
index 330478b3e1e0..9b073b9f29e1 100644
--- a/media-sound/mp3c/mp3c-0.31-r2.ebuild
+++ b/media-sound/mp3c/mp3c-0.31-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.wspse.de/pub/linux/wspse/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc ~sparc ~x86"
+KEYWORDS="amd64 ppc sparc ~x86"
 IUSE="mp3 vorbis"
 
 DEPEND="sys-libs/ncurses:0="


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-sound/mp3c/
@ 2025-03-08 14:15 Arthur Zamarin
  0 siblings, 0 replies; 7+ messages in thread
From: Arthur Zamarin @ 2025-03-08 14:15 UTC (permalink / raw
  To: gentoo-commits

commit:     ff8abd9acc5509249528c51c1705cdf17d858e55
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  8 14:15:43 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  8 14:15:43 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff8abd9a

media-sound/mp3c: Stabilize 0.31-r2 x86, #950879

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 media-sound/mp3c/mp3c-0.31-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/mp3c/mp3c-0.31-r2.ebuild b/media-sound/mp3c/mp3c-0.31-r2.ebuild
index 9b073b9f29e1..3549e7289c97 100644
--- a/media-sound/mp3c/mp3c-0.31-r2.ebuild
+++ b/media-sound/mp3c/mp3c-0.31-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.wspse.de/pub/linux/wspse/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc sparc ~x86"
+KEYWORDS="amd64 ppc sparc x86"
 IUSE="mp3 vorbis"
 
 DEPEND="sys-libs/ncurses:0="


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2025-03-08 14:16 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-08 14:15 [gentoo-commits] repo/gentoo:master commit in: media-sound/mp3c/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2025-03-08 13:37 Sam James
2025-03-08 13:15 Arthur Zamarin
2025-03-08 11:20 Sam James
2020-12-18  9:00 Michał Górny
2019-10-16 11:40 David Seifert
2018-01-05 22:02 Ulrich Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox