public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/dr_mp3/
@ 2023-12-07  2:49 Lucio Sauer
  0 siblings, 0 replies; 7+ messages in thread
From: Lucio Sauer @ 2023-12-07  2:49 UTC (permalink / raw
  To: gentoo-commits

commit:     b88d3ed0965aeae7ff98e453e6216e92eaea2f3c
Author:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Thu Dec  7 02:37:26 2023 +0000
Commit:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Thu Dec  7 02:37:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b88d3ed0

media-libs/dr_mp3: add 0.6.38

Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>

 media-libs/dr_mp3/Manifest             |  1 +
 media-libs/dr_mp3/dr_mp3-0.6.38.ebuild | 59 ++++++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)

diff --git a/media-libs/dr_mp3/Manifest b/media-libs/dr_mp3/Manifest
index 9576ba913d..ad293d8130 100644
--- a/media-libs/dr_mp3/Manifest
+++ b/media-libs/dr_mp3/Manifest
@@ -1,2 +1,3 @@
 DIST dr_mp3-0.6.37.gh.tar.gz 518399 BLAKE2B f2e78096f23332d4ef3ec0336230a9dcf4800356418607dcda5b8025e284feac6532c589ed5a916525396159dac5a79c343f90deec6337376bc9fdfbd93d0675 SHA512 01328904666c11416c361315d693411ea8f53b883f5acb8e6233b121abaab08cc3e4ba2c5d2a3b2a39fbcd0f868647f7f892d8ef6cd7be8ef683bb0497dd7114
 DIST dr_mp3-0.6.37.h 181793 BLAKE2B 982668ac1e9d4dbfd9acea11c8967fd6600cee801457655ccbda1ca8a02393797e777b61f7d1d4d7aae6bf1c19263208c442df7be431f56b9fc509f57fae4845 SHA512 77df59c31aa45ccf62e880b6f4a9daad809f2eae728e1f8754e27639e20b47712a896ec345823b87b95d434eb3670adad1bb22252a85f377f26ffea842d16468
+DIST dr_mp3-0.6.38.gh.tar.gz 518478 BLAKE2B 4ef68a7ba24b84d5a3c87271d399b7abe9d367137d34b68f0533414f968315bafa59fc8ae6e9d40b6d82542060420e821c47ee3337fbd1589fceb0d0aded129f SHA512 2aa595a926bf72c56c3012fa7ea13ac7141952d1dc454f7135674286ba0df900554121624e7885fb242104c4bf0598826ed36952f591055033d419199a6b66fc

diff --git a/media-libs/dr_mp3/dr_mp3-0.6.38.ebuild b/media-libs/dr_mp3/dr_mp3-0.6.38.ebuild
new file mode 100644
index 0000000000..2c7f798e00
--- /dev/null
+++ b/media-libs/dr_mp3/dr_mp3-0.6.38.ebuild
@@ -0,0 +1,59 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="Single-header MP3 audio decoder library"
+HOMEPAGE="https://github.com/mackron/dr_libs/"
+COMMIT="01d23df76776faccee3bc456f685900dcc273b4c"
+SRC_URI="https://github.com/mackron/dr_libs/archive/${COMMIT}.tar.gz -> ${P}.gh.tar.gz"
+LICENSE="|| ( MIT-0 public-domain )"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+S="${WORKDIR}/dr_libs-${COMMIT}"
+
+# Unfortunately, the only other test is interactive.
+TESTCASES=(
+	dr_mp3_test_0.c
+)
+
+src_prepare() {
+	sed -n "36,83p" dr_mp3.h > README.md || die
+	sed -n "4496,4776p" dr_mp3.h > CHANGELOG || die
+	default
+}
+
+src_compile() {
+	if use test; then
+		local MY_{CC,BUILD}
+		MY_CC=$(tc-getCC)
+
+		pushd tests > /dev/null || die
+		for tcase in ${TESTCASES[@]}; do
+			einfo "Compiling test case ${tcase}."
+			MY_BUILD="${MY_CC} mp3/${tcase} -o bin/${tcase} ${CFLAGS} ${CPPFLAGS}"
+			${MY_BUILD} || die "Build failed: ${MY_BUILD}"
+		done
+		popd || die
+	fi
+}
+
+src_test() {
+	pushd tests > /dev/null || die
+	for tcase in ${TESTCASES[@]}; do
+		einfo "Running test case ${tcase}."
+		./bin/${tcase} || die "Test case ${tcase} failed."
+	done
+	popd || die
+}
+
+src_install() {
+	einstalldocs
+	doheader dr_mp3.h
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/dr_mp3/
@ 2024-02-25  9:35 Lucio Sauer
  0 siblings, 0 replies; 7+ messages in thread
From: Lucio Sauer @ 2024-02-25  9:35 UTC (permalink / raw
  To: gentoo-commits

commit:     d08f6e3b5829120638159c966be2b3fa39420241
Author:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Sun Feb 25 09:33:33 2024 +0000
Commit:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Sun Feb 25 09:33:33 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d08f6e3b

media-libs/dr_mp3: use the edo eclass

Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>

 media-libs/dr_mp3/dr_mp3-0.6.38.ebuild | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/media-libs/dr_mp3/dr_mp3-0.6.38.ebuild b/media-libs/dr_mp3/dr_mp3-0.6.38.ebuild
index 2c7f798e00..224d735f02 100644
--- a/media-libs/dr_mp3/dr_mp3-0.6.38.ebuild
+++ b/media-libs/dr_mp3/dr_mp3-0.6.38.ebuild
@@ -1,9 +1,9 @@
-# Copyright 2023 Gentoo Authors
+# Copyright 2023-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-inherit toolchain-funcs
+inherit edo toolchain-funcs
 
 DESCRIPTION="Single-header MP3 audio decoder library"
 HOMEPAGE="https://github.com/mackron/dr_libs/"
@@ -36,9 +36,8 @@ src_compile() {
 
 		pushd tests > /dev/null || die
 		for tcase in ${TESTCASES[@]}; do
-			einfo "Compiling test case ${tcase}."
 			MY_BUILD="${MY_CC} mp3/${tcase} -o bin/${tcase} ${CFLAGS} ${CPPFLAGS}"
-			${MY_BUILD} || die "Build failed: ${MY_BUILD}"
+			edo ${MY_BUILD}
 		done
 		popd || die
 	fi
@@ -47,8 +46,7 @@ src_compile() {
 src_test() {
 	pushd tests > /dev/null || die
 	for tcase in ${TESTCASES[@]}; do
-		einfo "Running test case ${tcase}."
-		./bin/${tcase} || die "Test case ${tcase} failed."
+		edo bin/${tcase}
 	done
 	popd || die
 }


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

* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/dr_mp3/
@ 2024-03-01 23:20 Lucio Sauer
  0 siblings, 0 replies; 7+ messages in thread
From: Lucio Sauer @ 2024-03-01 23:20 UTC (permalink / raw
  To: gentoo-commits

commit:     177bdd61aa9e0b6e909ff0af230a8875579dbd50
Author:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Fri Mar  1 23:09:27 2024 +0000
Commit:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Fri Mar  1 23:09:27 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=177bdd61

media-libs/dr_mp3: drop 0.6.38

Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>

 media-libs/dr_mp3/Manifest             |  1 -
 media-libs/dr_mp3/dr_mp3-0.6.38.ebuild | 57 ----------------------------------
 2 files changed, 58 deletions(-)

diff --git a/media-libs/dr_mp3/Manifest b/media-libs/dr_mp3/Manifest
index cfd7d3353c..57e90a0368 100644
--- a/media-libs/dr_mp3/Manifest
+++ b/media-libs/dr_mp3/Manifest
@@ -1,2 +1 @@
-DIST dr_mp3-0.6.38.gh.tar.gz 518478 BLAKE2B 4ef68a7ba24b84d5a3c87271d399b7abe9d367137d34b68f0533414f968315bafa59fc8ae6e9d40b6d82542060420e821c47ee3337fbd1589fceb0d0aded129f SHA512 2aa595a926bf72c56c3012fa7ea13ac7141952d1dc454f7135674286ba0df900554121624e7885fb242104c4bf0598826ed36952f591055033d419199a6b66fc
 DIST dr_mp3-0.6.39.gh.tar.gz 518478 BLAKE2B 4ef68a7ba24b84d5a3c87271d399b7abe9d367137d34b68f0533414f968315bafa59fc8ae6e9d40b6d82542060420e821c47ee3337fbd1589fceb0d0aded129f SHA512 2aa595a926bf72c56c3012fa7ea13ac7141952d1dc454f7135674286ba0df900554121624e7885fb242104c4bf0598826ed36952f591055033d419199a6b66fc

diff --git a/media-libs/dr_mp3/dr_mp3-0.6.38.ebuild b/media-libs/dr_mp3/dr_mp3-0.6.38.ebuild
deleted file mode 100644
index 224d735f02..0000000000
--- a/media-libs/dr_mp3/dr_mp3-0.6.38.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit edo toolchain-funcs
-
-DESCRIPTION="Single-header MP3 audio decoder library"
-HOMEPAGE="https://github.com/mackron/dr_libs/"
-COMMIT="01d23df76776faccee3bc456f685900dcc273b4c"
-SRC_URI="https://github.com/mackron/dr_libs/archive/${COMMIT}.tar.gz -> ${P}.gh.tar.gz"
-LICENSE="|| ( MIT-0 public-domain )"
-SLOT="0"
-KEYWORDS="~amd64"
-
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-S="${WORKDIR}/dr_libs-${COMMIT}"
-
-# Unfortunately, the only other test is interactive.
-TESTCASES=(
-	dr_mp3_test_0.c
-)
-
-src_prepare() {
-	sed -n "36,83p" dr_mp3.h > README.md || die
-	sed -n "4496,4776p" dr_mp3.h > CHANGELOG || die
-	default
-}
-
-src_compile() {
-	if use test; then
-		local MY_{CC,BUILD}
-		MY_CC=$(tc-getCC)
-
-		pushd tests > /dev/null || die
-		for tcase in ${TESTCASES[@]}; do
-			MY_BUILD="${MY_CC} mp3/${tcase} -o bin/${tcase} ${CFLAGS} ${CPPFLAGS}"
-			edo ${MY_BUILD}
-		done
-		popd || die
-	fi
-}
-
-src_test() {
-	pushd tests > /dev/null || die
-	for tcase in ${TESTCASES[@]}; do
-		edo bin/${tcase}
-	done
-	popd || die
-}
-
-src_install() {
-	einstalldocs
-	doheader dr_mp3.h
-}


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

* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/dr_mp3/
@ 2024-03-01 23:20 Lucio Sauer
  0 siblings, 0 replies; 7+ messages in thread
From: Lucio Sauer @ 2024-03-01 23:20 UTC (permalink / raw
  To: gentoo-commits

commit:     fdbf051f39d274643870fe293ef80801a2a8c2e7
Author:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Fri Mar  1 23:09:06 2024 +0000
Commit:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Fri Mar  1 23:09:06 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fdbf051f

media-libs/dr_mp3: add 0.6.39

Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>

 media-libs/dr_mp3/Manifest             |  1 +
 media-libs/dr_mp3/dr_mp3-0.6.39.ebuild | 57 ++++++++++++++++++++++++++++++++++
 2 files changed, 58 insertions(+)

diff --git a/media-libs/dr_mp3/Manifest b/media-libs/dr_mp3/Manifest
index 3052d6bd7b..cfd7d3353c 100644
--- a/media-libs/dr_mp3/Manifest
+++ b/media-libs/dr_mp3/Manifest
@@ -1 +1,2 @@
 DIST dr_mp3-0.6.38.gh.tar.gz 518478 BLAKE2B 4ef68a7ba24b84d5a3c87271d399b7abe9d367137d34b68f0533414f968315bafa59fc8ae6e9d40b6d82542060420e821c47ee3337fbd1589fceb0d0aded129f SHA512 2aa595a926bf72c56c3012fa7ea13ac7141952d1dc454f7135674286ba0df900554121624e7885fb242104c4bf0598826ed36952f591055033d419199a6b66fc
+DIST dr_mp3-0.6.39.gh.tar.gz 518478 BLAKE2B 4ef68a7ba24b84d5a3c87271d399b7abe9d367137d34b68f0533414f968315bafa59fc8ae6e9d40b6d82542060420e821c47ee3337fbd1589fceb0d0aded129f SHA512 2aa595a926bf72c56c3012fa7ea13ac7141952d1dc454f7135674286ba0df900554121624e7885fb242104c4bf0598826ed36952f591055033d419199a6b66fc

diff --git a/media-libs/dr_mp3/dr_mp3-0.6.39.ebuild b/media-libs/dr_mp3/dr_mp3-0.6.39.ebuild
new file mode 100644
index 0000000000..224d735f02
--- /dev/null
+++ b/media-libs/dr_mp3/dr_mp3-0.6.39.ebuild
@@ -0,0 +1,57 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit edo toolchain-funcs
+
+DESCRIPTION="Single-header MP3 audio decoder library"
+HOMEPAGE="https://github.com/mackron/dr_libs/"
+COMMIT="01d23df76776faccee3bc456f685900dcc273b4c"
+SRC_URI="https://github.com/mackron/dr_libs/archive/${COMMIT}.tar.gz -> ${P}.gh.tar.gz"
+LICENSE="|| ( MIT-0 public-domain )"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+S="${WORKDIR}/dr_libs-${COMMIT}"
+
+# Unfortunately, the only other test is interactive.
+TESTCASES=(
+	dr_mp3_test_0.c
+)
+
+src_prepare() {
+	sed -n "36,83p" dr_mp3.h > README.md || die
+	sed -n "4496,4776p" dr_mp3.h > CHANGELOG || die
+	default
+}
+
+src_compile() {
+	if use test; then
+		local MY_{CC,BUILD}
+		MY_CC=$(tc-getCC)
+
+		pushd tests > /dev/null || die
+		for tcase in ${TESTCASES[@]}; do
+			MY_BUILD="${MY_CC} mp3/${tcase} -o bin/${tcase} ${CFLAGS} ${CPPFLAGS}"
+			edo ${MY_BUILD}
+		done
+		popd || die
+	fi
+}
+
+src_test() {
+	pushd tests > /dev/null || die
+	for tcase in ${TESTCASES[@]}; do
+		edo bin/${tcase}
+	done
+	popd || die
+}
+
+src_install() {
+	einstalldocs
+	doheader dr_mp3.h
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/dr_mp3/
@ 2024-03-02  8:02 Lucio Sauer
  0 siblings, 0 replies; 7+ messages in thread
From: Lucio Sauer @ 2024-03-02  8:02 UTC (permalink / raw
  To: gentoo-commits

commit:     8599e9b6d792226a47a93d3ccd9d6f211d8f85f6
Author:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Sat Mar  2 07:55:26 2024 +0000
Commit:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Sat Mar  2 07:55:26 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8599e9b6

media-libs/dr_mp3: fetch the 0.6.39 commit instead of the 0.6.38 one...

Apply fix to generate documentation proposed in
https://github.com/gentoo/guru/commit/b88d3ed0965aeae7ff98e453e6216e92eaea2f3c#r134692400

Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>

 media-libs/dr_mp3/Manifest                |  2 +-
 media-libs/dr_mp3/dr_mp3-0.6.39-r1.ebuild | 60 +++++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+), 1 deletion(-)

diff --git a/media-libs/dr_mp3/Manifest b/media-libs/dr_mp3/Manifest
index 57e90a0368..49d19c3190 100644
--- a/media-libs/dr_mp3/Manifest
+++ b/media-libs/dr_mp3/Manifest
@@ -1 +1 @@
-DIST dr_mp3-0.6.39.gh.tar.gz 518478 BLAKE2B 4ef68a7ba24b84d5a3c87271d399b7abe9d367137d34b68f0533414f968315bafa59fc8ae6e9d40b6d82542060420e821c47ee3337fbd1589fceb0d0aded129f SHA512 2aa595a926bf72c56c3012fa7ea13ac7141952d1dc454f7135674286ba0df900554121624e7885fb242104c4bf0598826ed36952f591055033d419199a6b66fc
+DIST dr_mp3-0.6.39.gh.tar.gz 518741 BLAKE2B 4ce05d125597605a0274216e95c5b76754a04ebb363234f262f65fb4f0352cd58008ef9ac816ba13fc6386d4673c677d387e18fa5925d55c63308a63ec0260c1 SHA512 3bbdba77abc321eddd5e43d2bae778b220565331ff3d8cee9c4b82baf1aacaa6a6d6ac440c562c4f32feac884963364409016db3d04833f86ae5ee4b324e3c2f

diff --git a/media-libs/dr_mp3/dr_mp3-0.6.39-r1.ebuild b/media-libs/dr_mp3/dr_mp3-0.6.39-r1.ebuild
new file mode 100644
index 0000000000..7d5c5d0bf3
--- /dev/null
+++ b/media-libs/dr_mp3/dr_mp3-0.6.39-r1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit edo toolchain-funcs
+
+DESCRIPTION="Single-header MP3 audio decoder library"
+HOMEPAGE="https://github.com/mackron/dr_libs/"
+COMMIT="da35f9d6c7374a95353fd1df1d394d44ab66cf01"
+SRC_URI="https://github.com/mackron/dr_libs/archive/${COMMIT}.tar.gz -> ${P}.gh.tar.gz"
+LICENSE="|| ( MIT-0 public-domain )"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+S="${WORKDIR}/dr_libs-${COMMIT}"
+
+# Unfortunately, the only other test is interactive.
+TESTCASES=(
+	dr_mp3_test_0.c
+)
+
+src_prepare() {
+	sed 's/Introducation/Introduction/' -i dr_mp3.h || die
+	awk '/Introduction/,/\*\//' dr_wav.h | sed '$d' > README.md
+	assert
+	awk '/REVISION HISTORY/,/\*\//' dr_wav.h | sed '$d' > CHANGELOG
+	assert
+	default
+}
+
+src_compile() {
+	if use test; then
+		local MY_{CC,BUILD}
+		MY_CC=$(tc-getCC)
+
+		pushd tests > /dev/null || die
+		for tcase in ${TESTCASES[@]}; do
+			MY_BUILD="${MY_CC} mp3/${tcase} -o bin/${tcase} ${CFLAGS} ${CPPFLAGS}"
+			edo ${MY_BUILD}
+		done
+		popd || die
+	fi
+}
+
+src_test() {
+	pushd tests > /dev/null || die
+	for tcase in ${TESTCASES[@]}; do
+		edo bin/${tcase}
+	done
+	popd || die
+}
+
+src_install() {
+	einstalldocs
+	doheader dr_mp3.h
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/dr_mp3/
@ 2024-03-02  8:02 Lucio Sauer
  0 siblings, 0 replies; 7+ messages in thread
From: Lucio Sauer @ 2024-03-02  8:02 UTC (permalink / raw
  To: gentoo-commits

commit:     7631e5809c9f96b4ada57395b2776565bca022bc
Author:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Sat Mar  2 08:00:48 2024 +0000
Commit:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Sat Mar  2 08:00:48 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7631e580

media-libs/dr_mp3: drop 0.6.39

Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>

 media-libs/dr_mp3/dr_mp3-0.6.39.ebuild | 57 ----------------------------------
 1 file changed, 57 deletions(-)

diff --git a/media-libs/dr_mp3/dr_mp3-0.6.39.ebuild b/media-libs/dr_mp3/dr_mp3-0.6.39.ebuild
deleted file mode 100644
index 224d735f02..0000000000
--- a/media-libs/dr_mp3/dr_mp3-0.6.39.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit edo toolchain-funcs
-
-DESCRIPTION="Single-header MP3 audio decoder library"
-HOMEPAGE="https://github.com/mackron/dr_libs/"
-COMMIT="01d23df76776faccee3bc456f685900dcc273b4c"
-SRC_URI="https://github.com/mackron/dr_libs/archive/${COMMIT}.tar.gz -> ${P}.gh.tar.gz"
-LICENSE="|| ( MIT-0 public-domain )"
-SLOT="0"
-KEYWORDS="~amd64"
-
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-S="${WORKDIR}/dr_libs-${COMMIT}"
-
-# Unfortunately, the only other test is interactive.
-TESTCASES=(
-	dr_mp3_test_0.c
-)
-
-src_prepare() {
-	sed -n "36,83p" dr_mp3.h > README.md || die
-	sed -n "4496,4776p" dr_mp3.h > CHANGELOG || die
-	default
-}
-
-src_compile() {
-	if use test; then
-		local MY_{CC,BUILD}
-		MY_CC=$(tc-getCC)
-
-		pushd tests > /dev/null || die
-		for tcase in ${TESTCASES[@]}; do
-			MY_BUILD="${MY_CC} mp3/${tcase} -o bin/${tcase} ${CFLAGS} ${CPPFLAGS}"
-			edo ${MY_BUILD}
-		done
-		popd || die
-	fi
-}
-
-src_test() {
-	pushd tests > /dev/null || die
-	for tcase in ${TESTCASES[@]}; do
-		edo bin/${tcase}
-	done
-	popd || die
-}
-
-src_install() {
-	einstalldocs
-	doheader dr_mp3.h
-}


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

* [gentoo-commits] repo/proj/guru:dev commit in: media-libs/dr_mp3/
@ 2024-03-02  8:18 Lucio Sauer
  0 siblings, 0 replies; 7+ messages in thread
From: Lucio Sauer @ 2024-03-02  8:18 UTC (permalink / raw
  To: gentoo-commits

commit:     b3a1adcc20070445cb23adc254136387c3dd274d
Author:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
AuthorDate: Sat Mar  2 08:15:57 2024 +0000
Commit:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Sat Mar  2 08:17:26 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b3a1adcc

media-libs/dr_mp3: generate documentation from correct file

Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>

 media-libs/dr_mp3/dr_mp3-0.6.39-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/dr_mp3/dr_mp3-0.6.39-r1.ebuild b/media-libs/dr_mp3/dr_mp3-0.6.39-r1.ebuild
index 7d5c5d0bf3..a5fb0851c4 100644
--- a/media-libs/dr_mp3/dr_mp3-0.6.39-r1.ebuild
+++ b/media-libs/dr_mp3/dr_mp3-0.6.39-r1.ebuild
@@ -25,9 +25,9 @@ TESTCASES=(
 
 src_prepare() {
 	sed 's/Introducation/Introduction/' -i dr_mp3.h || die
-	awk '/Introduction/,/\*\//' dr_wav.h | sed '$d' > README.md
+	awk '/Introduction/,/\*\//' dr_mp3.h | sed '$d' > README.md
 	assert
-	awk '/REVISION HISTORY/,/\*\//' dr_wav.h | sed '$d' > CHANGELOG
+	awk '/REVISION HISTORY/,/\*\//' dr_mp3.h | sed '$d' > CHANGELOG
 	assert
 	default
 }


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

end of thread, other threads:[~2024-03-02  8:18 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-07  2:49 [gentoo-commits] repo/proj/guru:dev commit in: media-libs/dr_mp3/ Lucio Sauer
  -- strict thread matches above, loose matches on Subject: below --
2024-02-25  9:35 Lucio Sauer
2024-03-01 23:20 Lucio Sauer
2024-03-01 23:20 Lucio Sauer
2024-03-02  8:02 Lucio Sauer
2024-03-02  8:02 Lucio Sauer
2024-03-02  8:18 Lucio Sauer

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