public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-libs/roc-toolkit/
@ 2023-11-05 14:47 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2023-11-05 14:47 UTC (permalink / raw
  To: gentoo-commits

commit:     4483ff92f3472c95786123bcf1cfe73fc593ed6f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  5 14:44:55 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Nov  5 14:47:19 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4483ff92

media-libs/roc-toolkit: add 0.2.6

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

 media-libs/roc-toolkit/Manifest                 |  1 +
 media-libs/roc-toolkit/roc-toolkit-0.2.6.ebuild | 82 +++++++++++++++++++++++++
 2 files changed, 83 insertions(+)

diff --git a/media-libs/roc-toolkit/Manifest b/media-libs/roc-toolkit/Manifest
index d79596d5c51a..4522470d3e04 100644
--- a/media-libs/roc-toolkit/Manifest
+++ b/media-libs/roc-toolkit/Manifest
@@ -1 +1,2 @@
 DIST roc-toolkit-0.2.5.tar.gz 1559917 BLAKE2B b75a2f101bd9bfecee28abc1dee0102c55a06f6432d66ed0b982b774e330209cdb9c22db442b9a49ec6e5623193de0c55fdb118a5285fb7de199b85eb6daea48 SHA512 45a524d7c29f2011eaa9f3e6d256ccf714e1abe2921c8ed276d97501cd2f7641bc14288f2f29c892a1c6740cf64049e3d143eb6b15dd2fb14e25a38a4ad23971
+DIST roc-toolkit-0.2.6.tar.gz 1570499 BLAKE2B 6fa38819fc675323585a0bd5f754b7325be0d9870a55b65636498822249fe1d53b23422b7fa6a0b7e7740aff4f7e62fed9b2681741fbd8912ef8ec2bcc375ee4 SHA512 ac0f18e8a8a60ae9e93f3dcb58e645f31440b6799dac063b246f5320978ac98192bb9c38bbfa7e38dbd537da169c1d525d93cf66c86b36976d37932e3c12f63b

diff --git a/media-libs/roc-toolkit/roc-toolkit-0.2.6.ebuild b/media-libs/roc-toolkit/roc-toolkit-0.2.6.ebuild
new file mode 100644
index 000000000000..f154ee0346a5
--- /dev/null
+++ b/media-libs/roc-toolkit/roc-toolkit-0.2.6.ebuild
@@ -0,0 +1,82 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+inherit python-any-r1 scons-utils toolchain-funcs
+
+DESCRIPTION="Real-time audio streaming over the network"
+HOMEPAGE="https://roc-streaming.org/toolkit/docs/ https://github.com/roc-streaming/roc-toolkit/"
+SRC_URI="https://github.com/roc-streaming/roc-toolkit/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="alsa llvm-libunwind pulseaudio sox ssl tools test unwind"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+	dev-libs/libuv:=
+	media-libs/openfec
+	media-libs/speexdsp
+	alsa? ( media-libs/alsa-lib )
+	pulseaudio? ( media-libs/libpulse )
+	sox? ( media-sound/sox )
+	ssl? ( dev-libs/openssl:= )
+	unwind? (
+		llvm-libunwind? ( sys-libs/llvm-libunwind:= )
+		!llvm-libunwind? ( sys-libs/libunwind:= )
+	)
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+	dev-util/ragel
+	virtual/pkgconfig
+	test? ( dev-util/cpputest )
+	tools? ( dev-util/gengetopt )
+"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-0.2.5-dont-force-O3.patch
+)
+
+src_prepare() {
+	default
+
+	# These tests need network
+	rm -r \
+		src/tests/roc_netio \
+		src/tests/public_api/test_receiver.cpp \
+		|| die
+}
+
+src_compile() {
+	tc-export AR CXX CC LD RANLIB OBJCOPY PKG_CONFIG
+
+	# Can revisit these on request, but:
+	#
+	# * openfec is unconditionally enabled as upstream docs recommend it,
+	# see https://roc-streaming.org/toolkit/docs/building/user_cookbook.html.
+	#
+	# * speexdsp is unconditionally enabled as it's tiny.
+	scons_opts=(
+		$(usev !alsa '--disable-alsa')
+		$(usev !sox '--disable-sox')
+		$(usev !pulseaudio '--disable-pulseaudio')
+		$(usev !tools '--disable-tools')
+		$(usev test '--enable-tests')
+		$(usev !ssl '--disable-openssl')
+		$(usev !unwind '--disable-libunwind')
+	)
+
+	STRIP=true escons "${scons_opts[@]}"
+}
+
+src_test() {
+	STRIP=true escons "${scons_opts[@]}" test
+}
+
+src_install() {
+	STRIP=true escons DESTDIR="${D}" "${scons_opts[@]}" install
+}


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/roc-toolkit/
@ 2023-11-26 23:18 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2023-11-26 23:18 UTC (permalink / raw
  To: gentoo-commits

commit:     50ed7c22617f1d3accf9690b825813a0bfc13987
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 26 21:10:56 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Nov 26 23:03:42 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50ed7c22

media-libs/roc-toolkit: add 0.3.0

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

 media-libs/roc-toolkit/Manifest                 |  1 +
 media-libs/roc-toolkit/roc-toolkit-0.3.0.ebuild | 82 +++++++++++++++++++++++++
 2 files changed, 83 insertions(+)

diff --git a/media-libs/roc-toolkit/Manifest b/media-libs/roc-toolkit/Manifest
index 4522470d3e04..94cd5353a2fe 100644
--- a/media-libs/roc-toolkit/Manifest
+++ b/media-libs/roc-toolkit/Manifest
@@ -1,2 +1,3 @@
 DIST roc-toolkit-0.2.5.tar.gz 1559917 BLAKE2B b75a2f101bd9bfecee28abc1dee0102c55a06f6432d66ed0b982b774e330209cdb9c22db442b9a49ec6e5623193de0c55fdb118a5285fb7de199b85eb6daea48 SHA512 45a524d7c29f2011eaa9f3e6d256ccf714e1abe2921c8ed276d97501cd2f7641bc14288f2f29c892a1c6740cf64049e3d143eb6b15dd2fb14e25a38a4ad23971
 DIST roc-toolkit-0.2.6.tar.gz 1570499 BLAKE2B 6fa38819fc675323585a0bd5f754b7325be0d9870a55b65636498822249fe1d53b23422b7fa6a0b7e7740aff4f7e62fed9b2681741fbd8912ef8ec2bcc375ee4 SHA512 ac0f18e8a8a60ae9e93f3dcb58e645f31440b6799dac063b246f5320978ac98192bb9c38bbfa7e38dbd537da169c1d525d93cf66c86b36976d37932e3c12f63b
+DIST roc-toolkit-0.3.0.tar.gz 1679439 BLAKE2B 31775d330bdfb3c42278d1ecbbbb5e14f695ca82f22929e435b6c9bf10c2e25c3367d11cf2913a81e6469876c255193be11eb78b775fad3b17f57c5be9c4bb39 SHA512 447532862dc1714054ebd03ce7fd101525c213a87bc7198a55c8e6068c28db318d59389bafd83681a4e6b34a61e68ac305c66b84e417a3f791b02340a821e6ec

diff --git a/media-libs/roc-toolkit/roc-toolkit-0.3.0.ebuild b/media-libs/roc-toolkit/roc-toolkit-0.3.0.ebuild
new file mode 100644
index 000000000000..5e559bcb86e1
--- /dev/null
+++ b/media-libs/roc-toolkit/roc-toolkit-0.3.0.ebuild
@@ -0,0 +1,82 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+inherit python-any-r1 scons-utils toolchain-funcs
+
+DESCRIPTION="Real-time audio streaming over the network"
+HOMEPAGE="https://roc-streaming.org/toolkit/docs/ https://github.com/roc-streaming/roc-toolkit/"
+SRC_URI="https://github.com/roc-streaming/roc-toolkit/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MPL-2.0"
+SLOT="0/3"
+KEYWORDS="~amd64"
+IUSE="alsa llvm-libunwind pulseaudio sox ssl tools test unwind"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+	dev-libs/libuv:=
+	media-libs/openfec
+	media-libs/speexdsp
+	alsa? ( media-libs/alsa-lib )
+	pulseaudio? ( media-libs/libpulse )
+	sox? ( media-sound/sox )
+	ssl? ( dev-libs/openssl:= )
+	unwind? (
+		llvm-libunwind? ( sys-libs/llvm-libunwind:= )
+		!llvm-libunwind? ( sys-libs/libunwind:= )
+	)
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+	dev-util/ragel
+	virtual/pkgconfig
+	test? ( dev-util/cpputest )
+	tools? ( dev-util/gengetopt )
+"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-0.2.5-dont-force-O3.patch
+)
+
+src_prepare() {
+	default
+
+	# These tests need network
+	rm -r \
+		src/tests/roc_netio \
+		src/tests/public_api/test_receiver.cpp \
+		|| die
+}
+
+src_compile() {
+	tc-export AR CXX CC LD RANLIB OBJCOPY PKG_CONFIG
+
+	# Can revisit these on request, but:
+	#
+	# * openfec is unconditionally enabled as upstream docs recommend it,
+	# see https://roc-streaming.org/toolkit/docs/building/user_cookbook.html.
+	#
+	# * speexdsp is unconditionally enabled as it's tiny.
+	scons_opts=(
+		$(usev !alsa '--disable-alsa')
+		$(usev !sox '--disable-sox')
+		$(usev !pulseaudio '--disable-pulseaudio')
+		$(usev !tools '--disable-tools')
+		$(usev test '--enable-tests')
+		$(usev !ssl '--disable-openssl')
+		$(usev !unwind '--disable-libunwind')
+	)
+
+	STRIP=true escons "${scons_opts[@]}"
+}
+
+src_test() {
+	STRIP=true escons "${scons_opts[@]}" test
+}
+
+src_install() {
+	STRIP=true escons DESTDIR="${D}" "${scons_opts[@]}" install
+}


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/roc-toolkit/
@ 2023-12-15  6:52 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2023-12-15  6:52 UTC (permalink / raw
  To: gentoo-commits

commit:     ace452dd428192f0daf1c97c72c9514da6109231
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 15 06:51:26 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 15 06:51:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ace452dd

media-libs/roc-toolkit: Stabilize 0.2.6 amd64, #919939

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

 media-libs/roc-toolkit/roc-toolkit-0.2.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/roc-toolkit/roc-toolkit-0.2.6.ebuild b/media-libs/roc-toolkit/roc-toolkit-0.2.6.ebuild
index f154ee0346a5..f2fd8112d8fa 100644
--- a/media-libs/roc-toolkit/roc-toolkit-0.2.6.ebuild
+++ b/media-libs/roc-toolkit/roc-toolkit-0.2.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/roc-streaming/roc-toolkit/archive/refs/tags/v${PV}.t
 
 LICENSE="MPL-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="alsa llvm-libunwind pulseaudio sox ssl tools test unwind"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/roc-toolkit/
@ 2023-12-30  3:04 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2023-12-30  3:04 UTC (permalink / raw
  To: gentoo-commits

commit:     01273d60a4054284355a6ba37c0d4775d5cecc42
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 30 03:03:14 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 30 03:03:14 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01273d60

media-libs/roc-toolkit: Stabilize 0.3.0 amd64, #921005

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

 media-libs/roc-toolkit/roc-toolkit-0.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/roc-toolkit/roc-toolkit-0.3.0.ebuild b/media-libs/roc-toolkit/roc-toolkit-0.3.0.ebuild
index 5e559bcb86e1..7b8860050538 100644
--- a/media-libs/roc-toolkit/roc-toolkit-0.3.0.ebuild
+++ b/media-libs/roc-toolkit/roc-toolkit-0.3.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/roc-streaming/roc-toolkit/archive/refs/tags/v${PV}.t
 
 LICENSE="MPL-2.0"
 SLOT="0/3"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="alsa llvm-libunwind pulseaudio sox ssl tools test unwind"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/roc-toolkit/
@ 2024-06-23  0:27 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2024-06-23  0:27 UTC (permalink / raw
  To: gentoo-commits

commit:     306fc369efaaefd06b66f3f6345230144785994a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 22 23:50:23 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jun 23 00:27:08 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=306fc369

media-libs/roc-toolkit: drop 0.2.5, 0.2.6

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

 media-libs/roc-toolkit/Manifest                 |  2 -
 media-libs/roc-toolkit/roc-toolkit-0.2.5.ebuild | 82 -------------------------
 media-libs/roc-toolkit/roc-toolkit-0.2.6.ebuild | 82 -------------------------
 3 files changed, 166 deletions(-)

diff --git a/media-libs/roc-toolkit/Manifest b/media-libs/roc-toolkit/Manifest
index 94cd5353a2fe..32b18e75ae38 100644
--- a/media-libs/roc-toolkit/Manifest
+++ b/media-libs/roc-toolkit/Manifest
@@ -1,3 +1 @@
-DIST roc-toolkit-0.2.5.tar.gz 1559917 BLAKE2B b75a2f101bd9bfecee28abc1dee0102c55a06f6432d66ed0b982b774e330209cdb9c22db442b9a49ec6e5623193de0c55fdb118a5285fb7de199b85eb6daea48 SHA512 45a524d7c29f2011eaa9f3e6d256ccf714e1abe2921c8ed276d97501cd2f7641bc14288f2f29c892a1c6740cf64049e3d143eb6b15dd2fb14e25a38a4ad23971
-DIST roc-toolkit-0.2.6.tar.gz 1570499 BLAKE2B 6fa38819fc675323585a0bd5f754b7325be0d9870a55b65636498822249fe1d53b23422b7fa6a0b7e7740aff4f7e62fed9b2681741fbd8912ef8ec2bcc375ee4 SHA512 ac0f18e8a8a60ae9e93f3dcb58e645f31440b6799dac063b246f5320978ac98192bb9c38bbfa7e38dbd537da169c1d525d93cf66c86b36976d37932e3c12f63b
 DIST roc-toolkit-0.3.0.tar.gz 1679439 BLAKE2B 31775d330bdfb3c42278d1ecbbbb5e14f695ca82f22929e435b6c9bf10c2e25c3367d11cf2913a81e6469876c255193be11eb78b775fad3b17f57c5be9c4bb39 SHA512 447532862dc1714054ebd03ce7fd101525c213a87bc7198a55c8e6068c28db318d59389bafd83681a4e6b34a61e68ac305c66b84e417a3f791b02340a821e6ec

diff --git a/media-libs/roc-toolkit/roc-toolkit-0.2.5.ebuild b/media-libs/roc-toolkit/roc-toolkit-0.2.5.ebuild
deleted file mode 100644
index e05dc881d770..000000000000
--- a/media-libs/roc-toolkit/roc-toolkit-0.2.5.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..11} )
-inherit python-any-r1 scons-utils toolchain-funcs
-
-DESCRIPTION="Real-time audio streaming over the network"
-HOMEPAGE="https://roc-streaming.org/toolkit/docs/ https://github.com/roc-streaming/roc-toolkit/"
-SRC_URI="https://github.com/roc-streaming/roc-toolkit/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MPL-2.0"
-SLOT="0"
-KEYWORDS="amd64"
-IUSE="alsa llvm-libunwind pulseaudio sox ssl tools test unwind"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-	dev-libs/libuv:=
-	media-libs/openfec
-	media-libs/speexdsp
-	alsa? ( media-libs/alsa-lib )
-	pulseaudio? ( media-libs/libpulse )
-	sox? ( media-sound/sox )
-	ssl? ( dev-libs/openssl:= )
-	unwind? (
-		llvm-libunwind? ( sys-libs/llvm-libunwind:= )
-		!llvm-libunwind? ( sys-libs/libunwind:= )
-	)
-"
-RDEPEND="${DEPEND}"
-BDEPEND="
-	dev-util/ragel
-	virtual/pkgconfig
-	test? ( dev-util/cpputest )
-	tools? ( dev-util/gengetopt )
-"
-
-PATCHES=(
-	"${FILESDIR}"/${PN}-0.2.5-dont-force-O3.patch
-)
-
-src_prepare() {
-	default
-
-	# These tests need network
-	rm -r \
-		src/tests/roc_netio \
-		src/tests/public_api/test_receiver.cpp \
-		|| die
-}
-
-src_compile() {
-	tc-export AR CXX CC LD RANLIB OBJCOPY PKG_CONFIG
-
-	# Can revisit these on request, but:
-	#
-	# * openfec is unconditionally enabled as upstream docs recommend it,
-	# see https://roc-streaming.org/toolkit/docs/building/user_cookbook.html.
-	#
-	# * speexdsp is unconditionally enabled as it's tiny.
-	scons_opts=(
-		$(usev !alsa '--disable-alsa')
-		$(usev !sox '--disable-sox')
-		$(usev !pulseaudio '--disable-pulseaudio')
-		$(usev !tools '--disable-tools')
-		$(usev test '--enable-tests')
-		$(usev !ssl '--disable-openssl')
-		$(usev !unwind '--disable-libunwind')
-	)
-
-	STRIP=true escons "${scons_opts[@]}"
-}
-
-src_test() {
-	STRIP=true escons "${scons_opts[@]}" test
-}
-
-src_install() {
-	STRIP=true escons DESTDIR="${D}" "${scons_opts[@]}" install
-}

diff --git a/media-libs/roc-toolkit/roc-toolkit-0.2.6.ebuild b/media-libs/roc-toolkit/roc-toolkit-0.2.6.ebuild
deleted file mode 100644
index f2fd8112d8fa..000000000000
--- a/media-libs/roc-toolkit/roc-toolkit-0.2.6.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..12} )
-inherit python-any-r1 scons-utils toolchain-funcs
-
-DESCRIPTION="Real-time audio streaming over the network"
-HOMEPAGE="https://roc-streaming.org/toolkit/docs/ https://github.com/roc-streaming/roc-toolkit/"
-SRC_URI="https://github.com/roc-streaming/roc-toolkit/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MPL-2.0"
-SLOT="0"
-KEYWORDS="amd64"
-IUSE="alsa llvm-libunwind pulseaudio sox ssl tools test unwind"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-	dev-libs/libuv:=
-	media-libs/openfec
-	media-libs/speexdsp
-	alsa? ( media-libs/alsa-lib )
-	pulseaudio? ( media-libs/libpulse )
-	sox? ( media-sound/sox )
-	ssl? ( dev-libs/openssl:= )
-	unwind? (
-		llvm-libunwind? ( sys-libs/llvm-libunwind:= )
-		!llvm-libunwind? ( sys-libs/libunwind:= )
-	)
-"
-RDEPEND="${DEPEND}"
-BDEPEND="
-	dev-util/ragel
-	virtual/pkgconfig
-	test? ( dev-util/cpputest )
-	tools? ( dev-util/gengetopt )
-"
-
-PATCHES=(
-	"${FILESDIR}"/${PN}-0.2.5-dont-force-O3.patch
-)
-
-src_prepare() {
-	default
-
-	# These tests need network
-	rm -r \
-		src/tests/roc_netio \
-		src/tests/public_api/test_receiver.cpp \
-		|| die
-}
-
-src_compile() {
-	tc-export AR CXX CC LD RANLIB OBJCOPY PKG_CONFIG
-
-	# Can revisit these on request, but:
-	#
-	# * openfec is unconditionally enabled as upstream docs recommend it,
-	# see https://roc-streaming.org/toolkit/docs/building/user_cookbook.html.
-	#
-	# * speexdsp is unconditionally enabled as it's tiny.
-	scons_opts=(
-		$(usev !alsa '--disable-alsa')
-		$(usev !sox '--disable-sox')
-		$(usev !pulseaudio '--disable-pulseaudio')
-		$(usev !tools '--disable-tools')
-		$(usev test '--enable-tests')
-		$(usev !ssl '--disable-openssl')
-		$(usev !unwind '--disable-libunwind')
-	)
-
-	STRIP=true escons "${scons_opts[@]}"
-}
-
-src_test() {
-	STRIP=true escons "${scons_opts[@]}" test
-}
-
-src_install() {
-	STRIP=true escons DESTDIR="${D}" "${scons_opts[@]}" install
-}


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/roc-toolkit/
@ 2024-06-23  0:27 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2024-06-23  0:27 UTC (permalink / raw
  To: gentoo-commits

commit:     6f9a591dde37c105bb8d2bc8ecbaaf21295a2fcc
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 23 00:14:37 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jun 23 00:27:08 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f9a591d

media-libs/roc-toolkit: add 0.4.0

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

 media-libs/roc-toolkit/Manifest                 |  1 +
 media-libs/roc-toolkit/roc-toolkit-0.4.0.ebuild | 84 +++++++++++++++++++++++++
 2 files changed, 85 insertions(+)

diff --git a/media-libs/roc-toolkit/Manifest b/media-libs/roc-toolkit/Manifest
index 32b18e75ae38..37d1c4152a5e 100644
--- a/media-libs/roc-toolkit/Manifest
+++ b/media-libs/roc-toolkit/Manifest
@@ -1 +1,2 @@
 DIST roc-toolkit-0.3.0.tar.gz 1679439 BLAKE2B 31775d330bdfb3c42278d1ecbbbb5e14f695ca82f22929e435b6c9bf10c2e25c3367d11cf2913a81e6469876c255193be11eb78b775fad3b17f57c5be9c4bb39 SHA512 447532862dc1714054ebd03ce7fd101525c213a87bc7198a55c8e6068c28db318d59389bafd83681a4e6b34a61e68ac305c66b84e417a3f791b02340a821e6ec
+DIST roc-toolkit-0.4.0.tar.gz 1895030 BLAKE2B 2ffcf6b1ca50fcae09c7aaa27939e23428feb21f330d578d731e494c62aa088c7e00de3b1a1b488d1bb13ffcc979fede1fc2726e2293a383a87174a4480e8aec SHA512 51763287ee825b6617273ededd9e77560f4223b8ba4a577855c3225908e848895a4f925163862cf6d19a8215245ec26f33d07d6cb80c51768d37eaa06ac02063

diff --git a/media-libs/roc-toolkit/roc-toolkit-0.4.0.ebuild b/media-libs/roc-toolkit/roc-toolkit-0.4.0.ebuild
new file mode 100644
index 000000000000..491eb7526b31
--- /dev/null
+++ b/media-libs/roc-toolkit/roc-toolkit-0.4.0.ebuild
@@ -0,0 +1,84 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+inherit python-any-r1 scons-utils toolchain-funcs
+
+DESCRIPTION="Real-time audio streaming over the network"
+HOMEPAGE="https://roc-streaming.org/toolkit/docs/ https://github.com/roc-streaming/roc-toolkit/"
+SRC_URI="https://github.com/roc-streaming/roc-toolkit/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MPL-2.0"
+SLOT="0/$(ver_cut 1-2)"
+KEYWORDS="~amd64"
+IUSE="alsa llvm-libunwind pulseaudio sox sndfile ssl tools test unwind"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+	>=dev-libs/libuv-1.35.0:=
+	>=media-libs/openfec-1.4.2.9
+	>=media-libs/speexdsp-1.2.0
+	alsa? ( >=media-libs/alsa-lib-1.1.9 )
+	pulseaudio? ( >=media-libs/libpulse-12.2 )
+	sox? ( >=media-sound/sox-14.4.2 )
+	sndfile? ( >=media-libs/libsndfile-1.0.28 )
+	ssl? ( >=dev-libs/openssl-3.0.8:= )
+	unwind? (
+		llvm-libunwind? ( sys-libs/llvm-libunwind:= )
+		!llvm-libunwind? ( >=sys-libs/libunwind-1.2.1:= )
+	)
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+	dev-util/ragel
+	virtual/pkgconfig
+	test? ( dev-util/cpputest )
+	tools? ( dev-util/gengetopt )
+"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-0.2.5-dont-force-O3.patch
+)
+
+src_prepare() {
+	default
+
+	# These tests need network
+	rm -r \
+		src/tests/roc_netio \
+		src/tests/public_api/test_receiver.cpp \
+		|| die
+}
+
+src_compile() {
+	tc-export AR CXX CC LD RANLIB OBJCOPY PKG_CONFIG
+
+	# Can revisit these on request, but:
+	#
+	# * openfec is unconditionally enabled as upstream docs recommend it,
+	# see https://roc-streaming.org/toolkit/docs/building/user_cookbook.html.
+	#
+	# * speexdsp is unconditionally enabled as it's tiny.
+	scons_opts=(
+		$(usev !alsa '--disable-alsa')
+		$(usev !sox '--disable-sox')
+		$(usev !pulseaudio '--disable-pulseaudio')
+		$(usev !tools '--disable-tools')
+		$(usev test '--enable-tests')
+		$(usev !sndfile '--disable-sndfile')
+		$(usev !ssl '--disable-openssl')
+		$(usev !unwind '--disable-libunwind')
+	)
+
+	STRIP=true escons "${scons_opts[@]}"
+}
+
+src_test() {
+	STRIP=true escons "${scons_opts[@]}" test
+}
+
+src_install() {
+	STRIP=true escons DESTDIR="${D}" "${scons_opts[@]}" install
+}


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

* [gentoo-commits] repo/gentoo:master commit in: media-libs/roc-toolkit/
@ 2024-07-17  5:54 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2024-07-17  5:54 UTC (permalink / raw
  To: gentoo-commits

commit:     00523b28b30f3461e1b272742efe16d2a1c0c084
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 17 05:52:24 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 17 05:53:08 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00523b28

media-libs/roc-toolkit: enable py3.13

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

 media-libs/roc-toolkit/roc-toolkit-0.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/roc-toolkit/roc-toolkit-0.4.0.ebuild b/media-libs/roc-toolkit/roc-toolkit-0.4.0.ebuild
index 9fcb5e25b045..306f1b004f3d 100644
--- a/media-libs/roc-toolkit/roc-toolkit-0.4.0.ebuild
+++ b/media-libs/roc-toolkit/roc-toolkit-0.4.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
 inherit python-any-r1 scons-utils toolchain-funcs
 
 DESCRIPTION="Real-time audio streaming over the network"


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

end of thread, other threads:[~2024-07-17  5:54 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-30  3:04 [gentoo-commits] repo/gentoo:master commit in: media-libs/roc-toolkit/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-07-17  5:54 Sam James
2024-06-23  0:27 Sam James
2024-06-23  0:27 Sam James
2023-12-15  6:52 Sam James
2023-11-26 23:18 Sam James
2023-11-05 14:47 Sam James

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