Daniel Bermond pushed to branch main at Arch Linux / Packaging / Packages /
librist
Commits:
750821bb by Daniel Bermond at 2024-11-24T10:52:37-03:00
upgpkg: 0.2.11-1
- - - - -
3 changed files:
- .SRCINFO
- 010-librist-disable-multicast-tests.patch
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,7 +1,7 @@
pkgbase = librist
pkgdesc = A library that can be used to add the RIST protocol to
applications
- pkgver = 0.2.10
- pkgrel = 3
+ pkgver = 0.2.11
+ pkgrel = 1
url = https://code.videolan.org/rist/librist/
arch = x86_64
license = BSD-2-Clause
@@ -11,9 +11,9 @@ pkgbase = librist
makedepends = lz4
depends = cjson
depends = mbedtls
- source =
https://code.videolan.org/rist/librist/-/archive/v0.2.10/librist-v0.2.10.tar.bz2
+ source =
https://code.videolan.org/rist/librist/-/archive/v0.2.11/librist-v0.2.11.tar.bz2
source = 010-librist-disable-multicast-tests.patch
- sha256sums =
c4a2c1bf62310fa1621b1a66140aa6fda8498a80fa5cc73d32335aa57015f7f5
- sha256sums =
0b8363a832a0e20ee756936efde714acaa3dfa74cffa1ef8283f3373663d0e35
+ sha256sums =
f254842900a9dd20fb477b05ea0cce3ec1a8004d85177eef2408eefddca68b86
+ sha256sums =
26de0079fbfae2b9a0e98bc37eb00c5431e53bdb1f9c8d0c11fdd069e1589f18
pkgname = librist
=====================================
010-librist-disable-multicast-tests.patch
=====================================
@@ -1,12 +1,15 @@
--- a/test/rist/meson.build
+++ b/test/rist/meson.build
-@@ -27,9 +27,6 @@ test('Simple profile unicast', test_send_receive, args:
['0', 'rist://@127.0.0.1
- test('Simple profile unicast packet loss 10%', test_send_receive, args: ['0',
'rist://@127.0.0.1:2234', 'rist://127.0.0.1:2234', '10'],suite: ['simple',
'unicast'])
+@@ -29,9 +29,9 @@ test('Simple profile unicast packet loss
test('Simple profile unicast packet loss 25%', test_send_receive, args: ['0',
'rist://@127.0.0.1:3234', 'rist://127.0.0.1:3234', '25'],suite: ['simple',
'unicast'])
- #Multicast
--test('Simple profile multicast', test_send_receive, args: ['0',
'rist://@239.0.0.1:1234?rtt-max=10&rtt-min=1',
'rist://239.0.0.1:1234?rtt-max=10&rtt-min=1', '0'],suite: ['simple',
'multicast'])
--test('Simple profile multicast packet loss 10%', test_send_receive, args:
['0', 'rist://@239.0.0.2:2234?rtt-max=10&rtt-min=1',
'rist://239.0.0.2:2234?rtt-max=10&rtt-min=1', '10'],suite: ['simple',
'multicast'])
--test('Simple profile multicast packet loss 25%', test_send_receive, args:
['0', 'rist://@239.0.0.3:3234?rtt-max=10&rtt-min=1',
'rist://239.0.0.3:3234?rtt-max=10&rtt-min=1', '25'],suite: ['simple',
'multicast'])
+ if (host_machine.system() != 'darwin')
+ #Multicast
+- test('Simple profile multicast', test_send_receive, args: ['0',
'rist://@239.0.0.1:1236?rtt-max=10&rtt-min=1',
'rist://239.0.0.1:1236?rtt-max=10&rtt-min=1', '0'],suite: ['simple',
'multicast'])
+- test('Simple profile multicast packet loss 10%', test_send_receive, args:
['0', 'rist://@239.0.0.2:2236?rtt-max=10&rtt-min=1',
'rist://239.0.0.2:2236?rtt-max=10&rtt-min=1', '10'],suite: ['simple',
'multicast'])
+- test('Simple profile multicast packet loss 25%', test_send_receive, args:
['0', 'rist://@239.0.0.3:3236?rtt-max=10&rtt-min=1',
'rist://239.0.0.3:3236?rtt-max=10&rtt-min=1', '25'],suite: ['simple',
'multicast'])
++ #test('Simple profile multicast', test_send_receive, args: ['0',
'rist://@239.0.0.1:1236?rtt-max=10&rtt-min=1',
'rist://239.0.0.1:1236?rtt-max=10&rtt-min=1', '0'],suite: ['simple',
'multicast'])
++ #test('Simple profile multicast packet loss 10%', test_send_receive,
args: ['0', 'rist://@239.0.0.2:2236?rtt-max=10&rtt-min=1',
'rist://239.0.0.2:2236?rtt-max=10&rtt-min=1', '10'],suite: ['simple',
'multicast'])
++ #test('Simple profile multicast packet loss 25%', test_send_receive,
args: ['0', 'rist://@239.0.0.3:3236?rtt-max=10&rtt-min=1',
'rist://239.0.0.3:3236?rtt-max=10&rtt-min=1', '25'],suite: ['simple',
'multicast'])
+ endif
###Main profile tests:
- #Sender connecting to receiver
=====================================
PKGBUILD
=====================================
@@ -1,8 +1,8 @@
# Maintainer: Daniel Bermond <[email protected]>
pkgname=librist
-pkgver=0.2.10
-pkgrel=3
+pkgver=0.2.11
+pkgrel=1
pkgdesc='A library that can be used to add the RIST protocol to applications'
arch=('x86_64')
url='https://code.videolan.org/rist/librist/'
@@ -11,8 +11,8 @@ depends=('cjson' 'mbedtls')
makedepends=('meson' 'cmake' 'cmocka' 'lz4')
source=("https://code.videolan.org/rist/librist/-/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.bz2"
'010-librist-disable-multicast-tests.patch')
-sha256sums=('c4a2c1bf62310fa1621b1a66140aa6fda8498a80fa5cc73d32335aa57015f7f5'
- '0b8363a832a0e20ee756936efde714acaa3dfa74cffa1ef8283f3373663d0e35')
+sha256sums=('f254842900a9dd20fb477b05ea0cce3ec1a8004d85177eef2408eefddca68b86'
+ '26de0079fbfae2b9a0e98bc37eb00c5431e53bdb1f9c8d0c11fdd069e1589f18')
prepare() {
patch -d "${pkgname}-v${pkgver}" -Np1 -i
"${srcdir}/010-librist-disable-multicast-tests.patch"
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/librist/-/commit/750821bb754ca0b627306f54851a333b640eea14
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/librist/-/commit/750821bb754ca0b627306f54851a333b640eea14
You're receiving this email because of your account on gitlab.archlinux.org.