* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsaplayer/
@ 2015-12-29 23:07 Michał Górny
0 siblings, 0 replies; 16+ messages in thread
From: Michał Górny @ 2015-12-29 23:07 UTC (permalink / raw
To: gentoo-commits
commit: 6ef474f148414c4ee4ece613ce68f51813ce873f
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 29 22:46:47 2015 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Dec 29 23:06:50 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ef474f1
media-sound/alsaplayer: Remove retired redhatter@ from maint, #570178
media-sound/alsaplayer/metadata.xml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/media-sound/alsaplayer/metadata.xml b/media-sound/alsaplayer/metadata.xml
index 8882930..58f0ddd 100644
--- a/media-sound/alsaplayer/metadata.xml
+++ b/media-sound/alsaplayer/metadata.xml
@@ -5,8 +5,4 @@
<use>
<flag name="id3tag">Enables ID3 tagging with id3tag library</flag>
</use>
- <maintainer>
- <email>redhatter@gentoo.org</email>
- <name>Stuart Longland</name>
- </maintainer>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsaplayer/
@ 2017-12-02 16:38 David Seifert
0 siblings, 0 replies; 16+ messages in thread
From: David Seifert @ 2017-12-02 16:38 UTC (permalink / raw
To: gentoo-commits
commit: 57665bbe77045bb0f0b3683b7a4d9f6619eee28a
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 2 16:37:39 2017 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Dec 2 16:38:27 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57665bbe
media-sound/alsaplayer: Port to EAPI 6
Package-Manager: Portage-2.3.16, Repoman-2.3.6
media-sound/alsaplayer/Manifest | 2 +-
media-sound/alsaplayer/alsaplayer-0.99.81.ebuild | 28 ++++++++++++++----------
2 files changed, 17 insertions(+), 13 deletions(-)
diff --git a/media-sound/alsaplayer/Manifest b/media-sound/alsaplayer/Manifest
index 75f41172834..b57e60ab662 100644
--- a/media-sound/alsaplayer/Manifest
+++ b/media-sound/alsaplayer/Manifest
@@ -1 +1 @@
-DIST alsaplayer-0.99.81.tar.bz2 806906 SHA256 187897e5ad5a94ea819e42092cc35d53463e5fa43a3a5a78cb76ffd0d5ddee11 SHA512 6723b36837d01f14645bb1d43ec7c54c85e8afed9b020f56dc81b4de64b74e4da2504507fe83954c7b26817e90510c585d09e759fc11e731d4d27e86f3932650 WHIRLPOOL 2f4849f5643768db14a7542c65504e937023585aaa7025a1d66e7f87568dfb25a981b304684a0fa242c0a4d9200c4111368669b8c6cd897cfdcfd1a43cee66f5
+DIST alsaplayer-0.99.81.tar.bz2 806906 BLAKE2B 6b37aaa65f6426a43483c3fa7e077ca89ce553655587e0f44ac61ade5d4f5467a304e18ef0142336b0cc94311498ccaa16d9ed2d6eb8109474626c6d1a4ca97d SHA512 6723b36837d01f14645bb1d43ec7c54c85e8afed9b020f56dc81b4de64b74e4da2504507fe83954c7b26817e90510c585d09e759fc11e731d4d27e86f3932650
diff --git a/media-sound/alsaplayer/alsaplayer-0.99.81.ebuild b/media-sound/alsaplayer/alsaplayer-0.99.81.ebuild
index e5ada6c7bf4..bc24c59aa7a 100644
--- a/media-sound/alsaplayer/alsaplayer-0.99.81.ebuild
+++ b/media-sound/alsaplayer/alsaplayer-0.99.81.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=4
-inherit autotools eutils
+EAPI=6
+
+inherit autotools desktop
DESCRIPTION="A heavily multi-threaded pluggable audio player"
HOMEPAGE="http://www.alsaplayer.org/"
@@ -13,8 +14,9 @@ SLOT="0"
KEYWORDS="amd64 ~mips ~ppc ~sparc x86"
IUSE="+alsa audiofile doc flac gtk id3tag jack mad mikmod nas nls ogg opengl oss vorbis xosd"
-RDEPEND="media-libs/libsndfile
- sys-libs/zlib
+RDEPEND="
+ media-libs/libsndfile:=
+ sys-libs/zlib:=
alsa? ( media-libs/alsa-lib )
audiofile? ( media-libs/audiofile )
flac? ( media-libs/flac )
@@ -36,6 +38,8 @@ DEPEND="${RDEPEND}
REQUIRED_USE="|| ( alsa jack nas oss )"
src_prepare() {
+ default
+
sed -i \
-e 's:AM_CFLAGS = $(AM_CXXFLAGS)::' \
output/jack/Makefile.am || die
@@ -48,11 +52,11 @@ src_prepare() {
}
src_configure() {
- use doc || export ac_cv_prog_HAVE_DOXYGEN=false
- use xosd || export ac_cv_lib_xosd_xosd_create=no
+ export ac_cv_prog_HAVE_DOXYGEN=$(usex doc true false)
+ export ac_cv_lib_xosd_xosd_create=$(usex xosd)
econf \
- --docdir=/usr/share/doc/${PF} \
+ --disable-esd \
$(use_enable nls) \
$(use_enable opengl) \
$(use_enable mikmod) \
@@ -64,16 +68,16 @@ src_configure() {
$(use_enable gtk systray) \
$(use_enable jack) \
$(use_enable alsa) \
- --disable-esd \
$(use_enable oss) \
$(use_enable gtk gtk2) \
$(use_enable nas)
}
src_install() {
- emake DESTDIR="${D}" install
- dodoc AUTHORS ChangeLog README TODO docs/*.txt
+ default
+ dodoc docs/*.txt
+
newicon interface/gtk2/pixmaps/logo.xpm ${PN}.xpm
- find "${ED}" -name '*.la' -exec rm -f {} +
+ find "${D}" -name '*.la' -delete || die
}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsaplayer/
@ 2018-01-01 18:59 Miroslav Šulc
0 siblings, 0 replies; 16+ messages in thread
From: Miroslav Šulc @ 2018-01-01 18:59 UTC (permalink / raw
To: gentoo-commits
commit: 748599346a9bc94369d5051846081988c1081fc4
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 1 18:58:13 2018 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Mon Jan 1 18:58:59 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74859934
media-sound/alsaplayer: switched from media-sound/jack-audio-connection-kit to virtual/jack
Package-Manager: Portage-2.3.19, Repoman-2.3.6
.../alsaplayer/alsaplayer-0.99.81-r1.ebuild | 83 ++++++++++++++++++++++
1 file changed, 83 insertions(+)
diff --git a/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild b/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild
new file mode 100644
index 00000000000..f1d448e8b1d
--- /dev/null
+++ b/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools desktop
+
+DESCRIPTION="A heavily multi-threaded pluggable audio player"
+HOMEPAGE="http://www.alsaplayer.org/"
+SRC_URI="http://www.alsaplayer.org/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86"
+IUSE="+alsa audiofile doc flac gtk id3tag jack mad mikmod nas nls ogg opengl oss vorbis xosd"
+
+RDEPEND="
+ media-libs/libsndfile:=
+ sys-libs/zlib:=
+ alsa? ( media-libs/alsa-lib )
+ audiofile? ( media-libs/audiofile )
+ flac? ( media-libs/flac )
+ gtk? ( >=x11-libs/gtk+-2.10:2 )
+ id3tag? ( media-libs/libid3tag )
+ jack? ( virtual/jack )
+ mad? ( media-libs/libmad )
+ mikmod? ( media-libs/libmikmod:0 )
+ nas? ( media-libs/nas )
+ ogg? ( media-libs/libogg )
+ opengl? ( virtual/opengl )
+ vorbis? ( media-libs/libvorbis )
+ xosd? ( x11-libs/xosd )"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ doc? ( app-doc/doxygen )
+ nls? ( sys-devel/gettext )
+ oss? ( virtual/os-headers )"
+REQUIRED_USE="|| ( alsa jack nas oss )"
+
+src_prepare() {
+ default
+
+ sed -i \
+ -e 's:AM_CFLAGS = $(AM_CXXFLAGS)::' \
+ output/jack/Makefile.am || die
+
+ sed -i \
+ -e 's:-O2 -funroll-loops -finline-functions -ffast-math::' \
+ configure.ac || die
+
+ eautoreconf
+}
+
+src_configure() {
+ export ac_cv_prog_HAVE_DOXYGEN=$(usex doc true false)
+ export ac_cv_lib_xosd_xosd_create=$(usex xosd)
+
+ econf \
+ --disable-esd \
+ $(use_enable nls) \
+ $(use_enable opengl) \
+ $(use_enable mikmod) \
+ $(use_enable vorbis oggvorbis) \
+ $(use_enable audiofile) \
+ $(use_enable flac) \
+ $(use_enable mad) \
+ $(use_enable id3tag) \
+ $(use_enable gtk systray) \
+ $(use_enable jack) \
+ $(use_enable alsa) \
+ $(use_enable oss) \
+ $(use_enable gtk gtk2) \
+ $(use_enable nas)
+}
+
+src_install() {
+ default
+ dodoc docs/*.txt
+
+ newicon interface/gtk2/pixmaps/logo.xpm ${PN}.xpm
+
+ find "${D}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsaplayer/
@ 2019-04-08 16:32 Aaron Bauman
0 siblings, 0 replies; 16+ messages in thread
From: Aaron Bauman @ 2019-04-08 16:32 UTC (permalink / raw
To: gentoo-commits
commit: 0dfda79cfaea2149eb93ecc3eaad949e46b56590
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 8 16:32:33 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Apr 8 16:32:33 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dfda79c
media-sound/alsaplayer: amd64 stable wrt bug #681372
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild b/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild
index f1d448e8b1d..bfbd3f05808 100644
--- a/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild
+++ b/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="http://www.alsaplayer.org/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~mips ~ppc ~sparc ~x86"
IUSE="+alsa audiofile doc flac gtk id3tag jack mad mikmod nas nls ogg opengl oss vorbis xosd"
RDEPEND="
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsaplayer/
@ 2019-04-28 22:06 Thomas Deutschmann
0 siblings, 0 replies; 16+ messages in thread
From: Thomas Deutschmann @ 2019-04-28 22:06 UTC (permalink / raw
To: gentoo-commits
commit: bf454328daea533829091bd59081ea81f1184ebe
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 28 21:53:26 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Apr 28 22:04:57 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf454328
media-sound/alsaplayer: x86 stable (bug #681372)
Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild b/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild
index bfbd3f05808..54627dd5384 100644
--- a/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild
+++ b/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.alsaplayer.org/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~mips ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~mips ~ppc ~sparc x86"
IUSE="+alsa audiofile doc flac gtk id3tag jack mad mikmod nas nls ogg opengl oss vorbis xosd"
RDEPEND="
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsaplayer/
@ 2019-04-28 22:41 Pacho Ramos
0 siblings, 0 replies; 16+ messages in thread
From: Pacho Ramos @ 2019-04-28 22:41 UTC (permalink / raw
To: gentoo-commits
commit: ac80f5606d0000556caa4b7361a904ba79ab5092
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 28 22:35:04 2019 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Apr 28 22:35:04 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac80f560
media-sound/alsaplayer: Drop old
Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
media-sound/alsaplayer/alsaplayer-0.99.81.ebuild | 83 ------------------------
1 file changed, 83 deletions(-)
diff --git a/media-sound/alsaplayer/alsaplayer-0.99.81.ebuild b/media-sound/alsaplayer/alsaplayer-0.99.81.ebuild
deleted file mode 100644
index bc24c59aa7a..00000000000
--- a/media-sound/alsaplayer/alsaplayer-0.99.81.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools desktop
-
-DESCRIPTION="A heavily multi-threaded pluggable audio player"
-HOMEPAGE="http://www.alsaplayer.org/"
-SRC_URI="http://www.alsaplayer.org/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~mips ~ppc ~sparc x86"
-IUSE="+alsa audiofile doc flac gtk id3tag jack mad mikmod nas nls ogg opengl oss vorbis xosd"
-
-RDEPEND="
- media-libs/libsndfile:=
- sys-libs/zlib:=
- alsa? ( media-libs/alsa-lib )
- audiofile? ( media-libs/audiofile )
- flac? ( media-libs/flac )
- gtk? ( >=x11-libs/gtk+-2.10:2 )
- id3tag? ( media-libs/libid3tag )
- jack? ( >=media-sound/jack-audio-connection-kit-0.80 )
- mad? ( media-libs/libmad )
- mikmod? ( media-libs/libmikmod:0 )
- nas? ( media-libs/nas )
- ogg? ( media-libs/libogg )
- opengl? ( virtual/opengl )
- vorbis? ( media-libs/libvorbis )
- xosd? ( x11-libs/xosd )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? ( app-doc/doxygen )
- nls? ( sys-devel/gettext )
- oss? ( virtual/os-headers )"
-REQUIRED_USE="|| ( alsa jack nas oss )"
-
-src_prepare() {
- default
-
- sed -i \
- -e 's:AM_CFLAGS = $(AM_CXXFLAGS)::' \
- output/jack/Makefile.am || die
-
- sed -i \
- -e 's:-O2 -funroll-loops -finline-functions -ffast-math::' \
- configure.ac || die
-
- eautoreconf
-}
-
-src_configure() {
- export ac_cv_prog_HAVE_DOXYGEN=$(usex doc true false)
- export ac_cv_lib_xosd_xosd_create=$(usex xosd)
-
- econf \
- --disable-esd \
- $(use_enable nls) \
- $(use_enable opengl) \
- $(use_enable mikmod) \
- $(use_enable vorbis oggvorbis) \
- $(use_enable audiofile) \
- $(use_enable flac) \
- $(use_enable mad) \
- $(use_enable id3tag) \
- $(use_enable gtk systray) \
- $(use_enable jack) \
- $(use_enable alsa) \
- $(use_enable oss) \
- $(use_enable gtk gtk2) \
- $(use_enable nas)
-}
-
-src_install() {
- default
- dodoc docs/*.txt
-
- newicon interface/gtk2/pixmaps/logo.xpm ${PN}.xpm
-
- find "${D}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsaplayer/
@ 2020-09-05 17:30 Miroslav Šulc
0 siblings, 0 replies; 16+ messages in thread
From: Miroslav Šulc @ 2020-09-05 17:30 UTC (permalink / raw
To: gentoo-commits
commit: 441c708c0f0b819283362e003a07463cd4a9f019
Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Sat Sep 5 12:44:12 2020 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Sat Sep 5 17:30:44 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=441c708c
media-sound/alsaplayer: update desktop mimeinfo cache
Closes: https://bugs.gentoo.org/740316
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Closes: https://github.com/gentoo/gentoo/pull/17424
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild b/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild
index 54627dd5384..27659636bbb 100644
--- a/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild
+++ b/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-inherit autotools desktop
+inherit autotools desktop xdg
DESCRIPTION="A heavily multi-threaded pluggable audio player"
HOMEPAGE="http://www.alsaplayer.org/"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsaplayer/
@ 2021-03-09 17:42 Sam James
0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2021-03-09 17:42 UTC (permalink / raw
To: gentoo-commits
commit: 4bfa2b10bb6bcf4c42cf978dd535c9539a99ad17
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 9 17:41:46 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 9 17:42:29 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bfa2b10
media-sound/alsaplayer: fix libdir
Thanks-to: Samuel Bauer <samuel.bauer <AT> yahoo.fr>
Closes: https://bugs.gentoo.org/733896
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild b/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild
index 27659636bbb..374beb56d61 100644
--- a/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild
+++ b/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -48,6 +48,10 @@ src_prepare() {
-e 's:-O2 -funroll-loops -finline-functions -ffast-math::' \
configure.ac || die
+ sed -i \
+ -e "s:/usr/lib:/usr/$(get_libdir):" \
+ configure.ac config.rpath || die
+
eautoreconf
}
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsaplayer/
@ 2021-08-16 21:28 Sam James
0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2021-08-16 21:28 UTC (permalink / raw
To: gentoo-commits
commit: aff48fd2da6ec640ed9ed90323efeae18725cc41
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 16 21:13:52 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 16 21:22:32 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aff48fd2
media-sound/alsaplayer: add missing slot operator dep (libid3tag)
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../{alsaplayer-0.99.81-r1.ebuild => alsaplayer-0.99.81-r2.ebuild} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild b/media-sound/alsaplayer/alsaplayer-0.99.81-r2.ebuild
similarity index 96%
rename from media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild
rename to media-sound/alsaplayer/alsaplayer-0.99.81-r2.ebuild
index 374beb56d61..b25a7976198 100644
--- a/media-sound/alsaplayer/alsaplayer-0.99.81-r1.ebuild
+++ b/media-sound/alsaplayer/alsaplayer-0.99.81-r2.ebuild
@@ -18,10 +18,10 @@ RDEPEND="
media-libs/libsndfile:=
sys-libs/zlib:=
alsa? ( media-libs/alsa-lib )
- audiofile? ( media-libs/audiofile )
+ audiofile? ( media-libs/audiofile:= )
flac? ( media-libs/flac )
gtk? ( >=x11-libs/gtk+-2.10:2 )
- id3tag? ( media-libs/libid3tag )
+ id3tag? ( media-libs/libid3tag:= )
jack? ( virtual/jack )
mad? ( media-libs/libmad )
mikmod? ( media-libs/libmikmod:0 )
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsaplayer/
@ 2021-09-04 10:17 Yixun Lan
0 siblings, 0 replies; 16+ messages in thread
From: Yixun Lan @ 2021-09-04 10:17 UTC (permalink / raw
To: gentoo-commits
commit: 855994be9aa6b169fc8381475c33195070e42e6b
Author: Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 3 01:49:43 2021 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Sat Sep 4 09:55:21 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=855994be
media-sound/alsaplayer: keyword ~riscv
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
media-sound/alsaplayer/alsaplayer-0.99.81-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/alsaplayer/alsaplayer-0.99.81-r2.ebuild b/media-sound/alsaplayer/alsaplayer-0.99.81-r2.ebuild
index b25a7976198..098fdbbe333 100644
--- a/media-sound/alsaplayer/alsaplayer-0.99.81-r2.ebuild
+++ b/media-sound/alsaplayer/alsaplayer-0.99.81-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.alsaplayer.org/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~mips ~ppc ~sparc x86"
+KEYWORDS="amd64 ~mips ~ppc ~riscv ~sparc x86"
IUSE="+alsa audiofile doc flac gtk id3tag jack mad mikmod nas nls ogg opengl oss vorbis xosd"
RDEPEND="
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsaplayer/
@ 2022-09-10 8:41 Sam James
0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2022-09-10 8:41 UTC (permalink / raw
To: gentoo-commits
commit: e9c6f3a1547f90d8aa3cf86439b5531a993eb8cc
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 10 08:32:08 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Sep 10 08:40:29 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9c6f3a1
media-sound/alsaplayer: add media-libs/flac subslot dep
media-libs/flac-1.4.0 breaks ABI.
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../{alsaplayer-0.99.81-r3.ebuild => alsaplayer-0.99.81-r4.ebuild} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/alsaplayer/alsaplayer-0.99.81-r3.ebuild b/media-sound/alsaplayer/alsaplayer-0.99.81-r4.ebuild
similarity index 98%
rename from media-sound/alsaplayer/alsaplayer-0.99.81-r3.ebuild
rename to media-sound/alsaplayer/alsaplayer-0.99.81-r4.ebuild
index 32fb30aa29da..bf99473154ba 100644
--- a/media-sound/alsaplayer/alsaplayer-0.99.81-r3.ebuild
+++ b/media-sound/alsaplayer/alsaplayer-0.99.81-r4.ebuild
@@ -20,7 +20,7 @@ RDEPEND="
sys-libs/zlib:=
alsa? ( media-libs/alsa-lib )
audiofile? ( media-libs/audiofile:= )
- flac? ( media-libs/flac )
+ flac? ( media-libs/flac:= )
gtk? ( >=x11-libs/gtk+-2.10:2 )
id3tag? ( media-libs/libid3tag:= )
jack? ( virtual/jack )
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsaplayer/
@ 2024-03-03 7:50 Sam James
0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2024-03-03 7:50 UTC (permalink / raw
To: gentoo-commits
commit: 223f60c59244d47e2e1af1aab79823cd921bca35
Author: Eli Schwartz <eschwartz93 <AT> gmail <DOT> com>
AuthorDate: Sun Mar 3 07:15:39 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 3 07:50:10 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=223f60c5
media-sound/alsaplayer: update HOMEPAGE, SRC_URI
The old website is gone as of 2016:
https://github.com/alsaplayer/alsaplayer/issues/17
The alternative is just "use the sourceforge named urls".
Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-sound/alsaplayer/alsaplayer-0.99.81-r4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-sound/alsaplayer/alsaplayer-0.99.81-r4.ebuild b/media-sound/alsaplayer/alsaplayer-0.99.81-r4.ebuild
index d34455ccdda3..d1f409e37aa0 100644
--- a/media-sound/alsaplayer/alsaplayer-0.99.81-r4.ebuild
+++ b/media-sound/alsaplayer/alsaplayer-0.99.81-r4.ebuild
@@ -6,8 +6,8 @@ EAPI=8
inherit autotools desktop xdg
DESCRIPTION="A heavily multi-threaded pluggable audio player"
-HOMEPAGE="http://www.alsaplayer.org/"
-SRC_URI="http://www.alsaplayer.org/${P}.tar.bz2"
+HOMEPAGE="https://alsaplayer.sourceforge.net/"
+SRC_URI="https://alsaplayer.sourceforge.net/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsaplayer/
@ 2024-03-03 7:50 Sam James
0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2024-03-03 7:50 UTC (permalink / raw
To: gentoo-commits
commit: 9db54abec8094630f951f188533867471dd90af8
Author: Eli Schwartz <eschwartz93 <AT> gmail <DOT> com>
AuthorDate: Sun Mar 3 07:18:14 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 3 07:50:11 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9db54abe
media-sound/alsaplayer: add github, sourceforge upstream metadata
Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-sound/alsaplayer/metadata.xml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/media-sound/alsaplayer/metadata.xml b/media-sound/alsaplayer/metadata.xml
index e06034023819..5a3019b520b3 100644
--- a/media-sound/alsaplayer/metadata.xml
+++ b/media-sound/alsaplayer/metadata.xml
@@ -8,4 +8,8 @@
<use>
<flag name="id3tag">Enables ID3 tagging with id3tag library</flag>
</use>
+ <upstream>
+ <remote-id type="sourceforge">alsaplayer</remote-id>
+ <remote-id type="github">alsaplayer/alsaplayer</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsaplayer/
@ 2024-03-03 7:50 Sam James
0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2024-03-03 7:50 UTC (permalink / raw
To: gentoo-commits
commit: d4e40c626bf4f6e1a52259443bafd767072c62b1
Author: Eli Schwartz <eschwartz93 <AT> gmail <DOT> com>
AuthorDate: Sun Mar 3 07:22:33 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 3 07:50:11 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4e40c62
media-sound/alsaplayer: mark as LTO-unsafe
Closes: https://bugs.gentoo.org/860423
Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-sound/alsaplayer/alsaplayer-0.99.81-r4.ebuild | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/media-sound/alsaplayer/alsaplayer-0.99.81-r4.ebuild b/media-sound/alsaplayer/alsaplayer-0.99.81-r4.ebuild
index d1f409e37aa0..90a7f0517f13 100644
--- a/media-sound/alsaplayer/alsaplayer-0.99.81-r4.ebuild
+++ b/media-sound/alsaplayer/alsaplayer-0.99.81-r4.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-inherit autotools desktop xdg
+inherit autotools desktop flag-o-matic xdg
DESCRIPTION="A heavily multi-threaded pluggable audio player"
HOMEPAGE="https://alsaplayer.sourceforge.net/"
@@ -47,6 +47,11 @@ src_prepare() {
}
src_configure() {
+ # -Werror=odr
+ # https://bugs.gentoo.org/860423
+ # https://github.com/alsaplayer/alsaplayer/issues/28
+ filter-lto
+
export ac_cv_prog_HAVE_DOXYGEN=$(usex doc true false)
export ac_cv_lib_xosd_xosd_create=$(usex xosd)
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsaplayer/
@ 2024-10-07 8:47 Miroslav Šulc
0 siblings, 0 replies; 16+ messages in thread
From: Miroslav Šulc @ 2024-10-07 8:47 UTC (permalink / raw
To: gentoo-commits
commit: af9127b1e5723370df8d7750de2ae1e16f257b11
Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 7 08:46:44 2024 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Mon Oct 7 08:46:44 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af9127b1
media-sound/alsaplayer: added missing build dep in 0.99.82
Closes: https://bugs.gentoo.org/939174
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
media-sound/alsaplayer/alsaplayer-0.99.82.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/media-sound/alsaplayer/alsaplayer-0.99.82.ebuild b/media-sound/alsaplayer/alsaplayer-0.99.82.ebuild
index ec4c2f7e0031..d08c3269c281 100644
--- a/media-sound/alsaplayer/alsaplayer-0.99.82.ebuild
+++ b/media-sound/alsaplayer/alsaplayer-0.99.82.ebuild
@@ -33,6 +33,7 @@ RDEPEND="
DEPEND="${RDEPEND}
oss? ( virtual/os-headers )"
BDEPEND="
+ dev-util/intltool
sys-devel/gettext
virtual/pkgconfig
doc? ( app-text/doxygen )"
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/alsaplayer/
@ 2024-10-25 11:42 Arthur Zamarin
0 siblings, 0 replies; 16+ messages in thread
From: Arthur Zamarin @ 2024-10-25 11:42 UTC (permalink / raw
To: gentoo-commits
commit: 41fc57d8939f6ee5a8a2862e0b8f675b69deec1c
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 25 11:42:20 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 25 11:42:20 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41fc57d8
media-sound/alsaplayer: Stabilize 0.99.82 x86, #941106
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
media-sound/alsaplayer/alsaplayer-0.99.82.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-sound/alsaplayer/alsaplayer-0.99.82.ebuild b/media-sound/alsaplayer/alsaplayer-0.99.82.ebuild
index d08c3269c281..abb31f7c1d89 100644
--- a/media-sound/alsaplayer/alsaplayer-0.99.82.ebuild
+++ b/media-sound/alsaplayer/alsaplayer-0.99.82.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/alsaplayer/alsaplayer/archive/refs/tags/${PV}.tar.gz
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~mips ~ppc ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~mips ~ppc ~riscv ~sparc x86"
IUSE="+alsa doc flac gtk id3tag jack mad mikmod nas nls ogg opengl oss vorbis xosd"
REQUIRED_USE="|| ( alsa jack nas oss )"
^ permalink raw reply related [flat|nested] 16+ messages in thread
end of thread, other threads:[~2024-10-25 11:42 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-09 17:42 [gentoo-commits] repo/gentoo:master commit in: media-sound/alsaplayer/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2024-10-25 11:42 Arthur Zamarin
2024-10-07 8:47 Miroslav Šulc
2024-03-03 7:50 Sam James
2024-03-03 7:50 Sam James
2024-03-03 7:50 Sam James
2022-09-10 8:41 Sam James
2021-09-04 10:17 Yixun Lan
2021-08-16 21:28 Sam James
2020-09-05 17:30 Miroslav Šulc
2019-04-28 22:41 Pacho Ramos
2019-04-28 22:06 Thomas Deutschmann
2019-04-08 16:32 Aaron Bauman
2018-01-01 18:59 Miroslav Šulc
2017-12-02 16:38 David Seifert
2015-12-29 23:07 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox