* [gentoo-commits] repo/gentoo:master commit in: media-libs/openfec/
@ 2023-09-07 19:37 Sam James
0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2023-09-07 19:37 UTC (permalink / raw
To: gentoo-commits
commit: 8d877640ca6aab1c3e07d119cc23f0361848aa88
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 7 19:16:14 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Sep 7 19:37:07 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d877640
media-libs/openfec: new package, add 1.4.2.9
Optional, but seemingly recommended (upstream install docs mention it), dep of
media-libs/roc-toolkit.
Bug: https://bugs.gentoo.org/907497
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/openfec/Manifest | 1 +
media-libs/openfec/metadata.xml | 11 +++++++++++
media-libs/openfec/openfec-1.4.2.9.ebuild | 19 +++++++++++++++++++
3 files changed, 31 insertions(+)
diff --git a/media-libs/openfec/Manifest b/media-libs/openfec/Manifest
new file mode 100644
index 000000000000..904d2863daaa
--- /dev/null
+++ b/media-libs/openfec/Manifest
@@ -0,0 +1 @@
+DIST openfec-1.4.2.9.tar.gz 1111548 BLAKE2B c3fd234c6f758144e514a262028024cb61a2379d065ab645067200618181a5ba4ae793fda82f60f0a870906d1978ef08ba8e73f9711bccf27b5161c5732702d1 SHA512 6c23f4d4263c514170f6abf806d7faf4c3fbf7fe34f55128383dcd84808a6966edd13587f7549ead74578ca219bdce9e42a32fc04071df0d54dae5b1336ed2b3
diff --git a/media-libs/openfec/metadata.xml b/media-libs/openfec/metadata.xml
new file mode 100644
index 000000000000..ea38f9b2b356
--- /dev/null
+++ b/media-libs/openfec/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>sam@gentoo.org</email>
+ <name>Sam James</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">roc-streaming/openfec</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/media-libs/openfec/openfec-1.4.2.9.ebuild b/media-libs/openfec/openfec-1.4.2.9.ebuild
new file mode 100644
index 000000000000..abc5177ce770
--- /dev/null
+++ b/media-libs/openfec/openfec-1.4.2.9.ebuild
@@ -0,0 +1,19 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Library of various AL-FEC codecs"
+HOMEPAGE="https://github.com/roc-streaming/openfec http://openfec.org/"
+SRC_URI="https://github.com/roc-streaming/openfec/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+# See https://github.com/roc-streaming/openfec/blob/d87b258e3de3cdddf700b40e94c51ec9bd44a47f/CHANGELOG#L47.
+LICENSE="CeCILL-2 CeCILL-C"
+SLOT="0"
+KEYWORDS="~amd64"
+
+src_test() {
+ cmake_src_test tests
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/openfec/
@ 2024-10-18 10:18 Sam James
0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2024-10-18 10:18 UTC (permalink / raw
To: gentoo-commits
commit: 575c619db86d40fa8ccc5889464b82c0e0fae647
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 18 10:14:39 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 18 10:17:27 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=575c619d
media-libs/openfec: disable SSE asm
There's a bunch of UBSAN issues in openfec and it shows up as roc-toolkit's
tests segfaulting.
Bug: https://github.com/roc-streaming/openfec/issues/22
Closes: https://bugs.gentoo.org/941750
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../openfec/{openfec-1.4.2.11.ebuild => openfec-1.4.2.11-r1.ebuild} | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/media-libs/openfec/openfec-1.4.2.11.ebuild b/media-libs/openfec/openfec-1.4.2.11-r1.ebuild
similarity index 82%
rename from media-libs/openfec/openfec-1.4.2.11.ebuild
rename to media-libs/openfec/openfec-1.4.2.11-r1.ebuild
index cd6ad2b2f564..316e50512f58 100644
--- a/media-libs/openfec/openfec-1.4.2.11.ebuild
+++ b/media-libs/openfec/openfec-1.4.2.11-r1.ebuild
@@ -13,7 +13,6 @@ SRC_URI="https://github.com/roc-streaming/openfec/archive/refs/tags/v${PV}.tar.g
LICENSE="CeCILL-2 CeCILL-C"
SLOT="0"
KEYWORDS="~amd64"
-IUSE="cpu_flags_x86_sse"
PATCHES=(
"${FILESDIR}"/${PN}-1.4.2.11-opt.patch
@@ -21,7 +20,9 @@ PATCHES=(
src_configure() {
local mycmakeargs=(
- -DASSEMBLY_SSE_OPT=$(usex cpu_flags_x86_sse)
+ # Causes crashes in media-libs/roc-toolkit (bug #941750)
+ # https://github.com/roc-streaming/openfec/issues/22
+ -DASSEMBLY_SSE_OPT=OFF
)
cmake_src_configure
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/openfec/
@ 2024-11-22 10:20 Sam James
0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2024-11-22 10:20 UTC (permalink / raw
To: gentoo-commits
commit: efc07862d7adccda28edfc9f7e4f73617107937e
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 22 10:19:55 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 22 10:19:55 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efc07862
media-libs/openfec: Stabilize 1.4.2.11-r1 amd64, #944332
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/openfec/openfec-1.4.2.11-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/openfec/openfec-1.4.2.11-r1.ebuild b/media-libs/openfec/openfec-1.4.2.11-r1.ebuild
index 316e50512f58..1b6adacdbebc 100644
--- a/media-libs/openfec/openfec-1.4.2.11-r1.ebuild
+++ b/media-libs/openfec/openfec-1.4.2.11-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/roc-streaming/openfec/archive/refs/tags/v${PV}.tar.g
# See https://github.com/roc-streaming/openfec/blob/d87b258e3de3cdddf700b40e94c51ec9bd44a47f/CHANGELOG#L47.
LICENSE="CeCILL-2 CeCILL-C"
SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
PATCHES=(
"${FILESDIR}"/${PN}-1.4.2.11-opt.patch
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-11-22 10:21 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-18 10:18 [gentoo-commits] repo/gentoo:master commit in: media-libs/openfec/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2024-11-22 10:20 Sam James
2023-09-07 19:37 Sam James
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox