* [gentoo-commits] repo/gentoo:master commit in: net-libs/librist/
@ 2023-10-07 21:37 Mart Raudsepp
0 siblings, 0 replies; 2+ messages in thread
From: Mart Raudsepp @ 2023-10-07 21:37 UTC (permalink / raw
To: gentoo-commits
commit: 973d10b4802c1a38f9da8b93c2da0240bb389a90
Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 7 21:12:37 2023 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Sat Oct 7 21:33:38 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=973d10b4
net-libs/librist: new package, add 0.2.8
Initially no ristreceiver/ristsender tools support, as that needs fixing of
automagic prometheus deps first.
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
net-libs/librist/Manifest | 1 +
net-libs/librist/librist-0.2.8.ebuild | 48 +++++++++++++++++++++++++++++++++++
net-libs/librist/metadata.xml | 8 ++++++
3 files changed, 57 insertions(+)
diff --git a/net-libs/librist/Manifest b/net-libs/librist/Manifest
new file mode 100644
index 000000000000..486fb4a90694
--- /dev/null
+++ b/net-libs/librist/Manifest
@@ -0,0 +1 @@
+DIST librist-v0.2.8.tar.bz2 2580630 BLAKE2B 665b8111dceb12d86a51739c1e3205f4cf1059fbb14909db3988ad0529c9a11bd25b73b82d4f3e4e85fef1036d3d25d390b3eeac82ed15bab4145e52c46e8ee8 SHA512 05fe5eec411a53c9cf3f55a60b8aed1881f9ebe2960b3ac5f157a1c5c9f42865da58bb90a2f891450f1ae9178b949cdad282dfa3f216599a50b87da92b8a7449
diff --git a/net-libs/librist/librist-0.2.8.ebuild b/net-libs/librist/librist-0.2.8.ebuild
new file mode 100644
index 000000000000..d5c984d28111
--- /dev/null
+++ b/net-libs/librist/librist-0.2.8.ebuild
@@ -0,0 +1,48 @@
+# Copyright 2018-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="Library for Reliable Internet Stream Transport (RIST) protocol"
+HOMEPAGE="https://code.videolan.org/rist/librist"
+
+SRC_URI="https://code.videolan.org/rist/librist/-/archive/v${PV}/librist-v${PV}.tar.bz2"
+KEYWORDS="~arm64"
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-libs/cJSON
+ net-libs/mbedtls:=
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+S="${WORKDIR}/librist-v${PV}"
+
+src_configure() {
+ local emesonargs=(
+ -Dstatic_analyze=false
+ $(meson_use test)
+ -Dbuiltin_cjson=false
+ -Dbuiltin_mbedtls=false
+ # Tools have automagic libmicrohttpd dep for prometheus;
+ # needs solved before exposing; look into use_tun once enabled
+ -Dbuilt_tools=false
+ -Dfallback_builtin=false
+ -Duse_mbedtls=true
+ -Duse_nettle=false
+ -Duse_tun=false # Used only by tools
+ )
+ meson_src_configure
+}
+
+src_test() {
+ # multicast tests fails with FEATURES=network-sandbox
+ meson_src_test --no-suite multicast
+}
diff --git a/net-libs/librist/metadata.xml b/net-libs/librist/metadata.xml
new file mode 100644
index 000000000000..f3a2d1816285
--- /dev/null
+++ b/net-libs/librist/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>leio@gentoo.org</email>
+ <name>Mart Raudsepp</name>
+ </maintainer>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/librist/
@ 2025-01-07 19:54 Sam James
0 siblings, 0 replies; 2+ messages in thread
From: Sam James @ 2025-01-07 19:54 UTC (permalink / raw
To: gentoo-commits
commit: e89f9f714df39f8fe03fc4923f7d7719646b0c91
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Mon Jan 6 15:06:28 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jan 7 19:52:42 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e89f9f71
net-libs/librist: slotting net-libs/mbedtls:0
net-libs/mbedtls:0 is remain for mbedtls-2 as safe fallback for all
dependent packages.
Minor fixes to ebuild (reordering S and KEYWORDS).
Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../librist/{librist-0.2.8.ebuild => librist-0.2.8-r1.ebuild} | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/net-libs/librist/librist-0.2.8.ebuild b/net-libs/librist/librist-0.2.8-r1.ebuild
similarity index 94%
rename from net-libs/librist/librist-0.2.8.ebuild
rename to net-libs/librist/librist-0.2.8-r1.ebuild
index d5c984d28111..3debbeee8199 100644
--- a/net-libs/librist/librist-0.2.8.ebuild
+++ b/net-libs/librist/librist-0.2.8-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2018-2023 Gentoo Authors
+# Copyright 2018-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -9,22 +9,21 @@ DESCRIPTION="Library for Reliable Internet Stream Transport (RIST) protocol"
HOMEPAGE="https://code.videolan.org/rist/librist"
SRC_URI="https://code.videolan.org/rist/librist/-/archive/v${PV}/librist-v${PV}.tar.bz2"
-KEYWORDS="~arm64"
-
+S="${WORKDIR}/librist-v${PV}"
LICENSE="BSD-2"
SLOT="0"
+KEYWORDS="~arm64"
+
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-libs/cJSON
- net-libs/mbedtls:=
+ net-libs/mbedtls:0=
"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
-S="${WORKDIR}/librist-v${PV}"
-
src_configure() {
local emesonargs=(
-Dstatic_analyze=false
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-01-07 19:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-07 19:54 [gentoo-commits] repo/gentoo:master commit in: net-libs/librist/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2023-10-07 21:37 Mart Raudsepp
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox