diff options
author | Sam James <sam@gentoo.org> | 2023-09-07 20:16:14 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-09-07 20:37:07 +0100 |
commit | 8d877640ca6aab1c3e07d119cc23f0361848aa88 (patch) | |
tree | d94803258fe673dcbcb71c1ffb7a8bd1c2597804 /media-libs/openfec | |
parent | sys-cluster/kube-scheduler: stabilize 1.26.8 for amd64 (diff) | |
download | gentoo-8d877640ca6aab1c3e07d119cc23f0361848aa88.tar.gz gentoo-8d877640ca6aab1c3e07d119cc23f0361848aa88.tar.bz2 gentoo-8d877640ca6aab1c3e07d119cc23f0361848aa88.zip |
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@gentoo.org>
Diffstat (limited to 'media-libs/openfec')
-rw-r--r-- | media-libs/openfec/Manifest | 1 | ||||
-rw-r--r-- | media-libs/openfec/metadata.xml | 11 | ||||
-rw-r--r-- | media-libs/openfec/openfec-1.4.2.9.ebuild | 19 |
3 files changed, 31 insertions, 0 deletions
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 +} |