* [gentoo-commits] repo/gentoo:master commit in: media-libs/libxtract/
@ 2022-01-12 15:07 Jakov Smolić
0 siblings, 0 replies; 4+ messages in thread
From: Jakov Smolić @ 2022-01-12 15:07 UTC (permalink / raw
To: gentoo-commits
commit: 5eb6d59158fc7624e2f3575c111b893d4f8d1c48
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 12 12:37:56 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed Jan 12 15:07:17 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5eb6d591
media-libs/libxtract: Port to EAPI 8
Closes: https://bugs.gentoo.org/828718
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
media-libs/libxtract/libxtract-0.6.6.ebuild | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
diff --git a/media-libs/libxtract/libxtract-0.6.6.ebuild b/media-libs/libxtract/libxtract-0.6.6.ebuild
index b3d815fbc397..2776aeba9849 100644
--- a/media-libs/libxtract/libxtract-0.6.6.ebuild
+++ b/media-libs/libxtract/libxtract-0.6.6.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=8
DESCRIPTION="A simple, portable, lightweight library of audio feature extraction functions"
HOMEPAGE="https://github.com/jamiebullock/LibXtract"
@@ -10,23 +10,24 @@ SRC_URI="https://github.com/downloads/jamiebullock/LibXtract/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ppc64 x86"
-IUSE="doc fftw static-libs"
+IUSE="doc fftw"
RDEPEND="fftw? ( sci-libs/fftw:3.0 )"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )"
+DEPEND="${RDEPEND}"
+BDEPEND="doc? ( app-doc/doxygen )"
src_configure() {
econf \
$(use_enable fftw fft) \
- $(use_enable static-libs static)
# Prevent doc from being generated automagically
- use doc || touch doc/doxygen-build.stamp
+ if ! use doc; then
+ touch doc/doxygen-build.stamp || die
+ fi
}
src_install() {
emake DESTDIR="${D}" install
- find "${ED}" -name "*.la" -delete
+ find "${ED}" -name "*.la" -delete || die
dodoc README.md TODO AUTHORS
- use doc && dohtml doc/html/*
+ use doc && dodoc -r doc/html/.
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libxtract/
@ 2022-01-12 16:59 Jakov Smolić
0 siblings, 0 replies; 4+ messages in thread
From: Jakov Smolić @ 2022-01-12 16:59 UTC (permalink / raw
To: gentoo-commits
commit: d77b5b7ccbea965905d07f8f0b1113bc2295bc98
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 12 16:56:03 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed Jan 12 16:57:33 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d77b5b7c
media-libs/libxtract: Drop trailing slash
Closes: https://bugs.gentoo.org/831074
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
media-libs/libxtract/libxtract-0.6.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libxtract/libxtract-0.6.6.ebuild b/media-libs/libxtract/libxtract-0.6.6.ebuild
index 2776aeba9849..a8c98cc33324 100644
--- a/media-libs/libxtract/libxtract-0.6.6.ebuild
+++ b/media-libs/libxtract/libxtract-0.6.6.ebuild
@@ -18,7 +18,7 @@ BDEPEND="doc? ( app-doc/doxygen )"
src_configure() {
econf \
- $(use_enable fftw fft) \
+ $(use_enable fftw fft)
# Prevent doc from being generated automagically
if ! use doc; then
touch doc/doxygen-build.stamp || die
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libxtract/
@ 2022-01-13 10:04 Jakov Smolić
0 siblings, 0 replies; 4+ messages in thread
From: Jakov Smolić @ 2022-01-13 10:04 UTC (permalink / raw
To: gentoo-commits
commit: f1dcb4ad964c4d7b4aaea4025e9ffd3e19ac2643
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 13 09:10:11 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu Jan 13 10:04:11 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1dcb4ad
media-libs/libxtract: Require doxygen[dot]
Closes: https://bugs.gentoo.org/831089
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
media-libs/libxtract/libxtract-0.6.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/libxtract/libxtract-0.6.6.ebuild b/media-libs/libxtract/libxtract-0.6.6.ebuild
index a8c98cc33324..ff32f55c5132 100644
--- a/media-libs/libxtract/libxtract-0.6.6.ebuild
+++ b/media-libs/libxtract/libxtract-0.6.6.ebuild
@@ -14,7 +14,7 @@ IUSE="doc fftw"
RDEPEND="fftw? ( sci-libs/fftw:3.0 )"
DEPEND="${RDEPEND}"
-BDEPEND="doc? ( app-doc/doxygen )"
+BDEPEND="doc? ( app-doc/doxygen[dot] )"
src_configure() {
econf \
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/libxtract/
@ 2023-05-01 12:37 Sam James
0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2023-05-01 12:37 UTC (permalink / raw
To: gentoo-commits
commit: cbd2c38d9899c5c47f1385196a3597725c23bdf1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May 1 12:08:53 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May 1 12:35:51 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbd2c38d
media-libs/libxtract: update SRC_URI to drop github.com/downloads
github.com/downloads is gone. Unfortunately, there's no tags on the upstream repo
now.
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/libxtract/libxtract-0.6.6.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-libs/libxtract/libxtract-0.6.6.ebuild b/media-libs/libxtract/libxtract-0.6.6.ebuild
index ff32f55c5132..96b09eebbcd1 100644
--- a/media-libs/libxtract/libxtract-0.6.6.ebuild
+++ b/media-libs/libxtract/libxtract-0.6.6.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A simple, portable, lightweight library of audio feature extraction functions"
HOMEPAGE="https://github.com/jamiebullock/LibXtract"
-SRC_URI="https://github.com/downloads/jamiebullock/LibXtract/${P}.tar.gz"
+SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-05-01 12:37 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-12 16:59 [gentoo-commits] repo/gentoo:master commit in: media-libs/libxtract/ Jakov Smolić
-- strict thread matches above, loose matches on Subject: below --
2023-05-01 12:37 Sam James
2022-01-13 10:04 Jakov Smolić
2022-01-12 15:07 Jakov Smolić
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox