git: 2be3e8d21591 - main - net/liveMedia: Update to 2025.01.17

From: Jason E. Hale <jhale_at_FreeBSD.org>
Date: Fri, 07 Feb 2025 06:56:34 UTC
The branch main has been updated by jhale:

URL: https://cgit.FreeBSD.org/ports/commit/?id=2be3e8d21591f4a87c708cdc2a71a4a9928e1adb

commit 2be3e8d21591f4a87c708cdc2a71a4a9928e1adb
Author:     Jason E. Hale <jhale@FreeBSD.org>
AuthorDate: 2025-02-06 06:23:45 +0000
Commit:     Jason E. Hale <jhale@FreeBSD.org>
CommitDate: 2025-02-07 06:28:04 +0000

    net/liveMedia: Update to 2025.01.17
    
    http://www.live555.com/liveMedia/public/changelog.txt
---
 net/liveMedia/Makefile                                 |  2 +-
 net/liveMedia/distinfo                                 |  6 +++---
 net/liveMedia/files/patch-testProgs_testRTSPClient.cpp | 16 ++++++++++++++++
 3 files changed, 20 insertions(+), 4 deletions(-)

diff --git a/net/liveMedia/Makefile b/net/liveMedia/Makefile
index 2c815046f675..12f13212fc87 100644
--- a/net/liveMedia/Makefile
+++ b/net/liveMedia/Makefile
@@ -1,5 +1,5 @@
 PORTNAME=	liveMedia
-DISTVERSION=	2024.10.31
+DISTVERSION=	2025.01.17
 PORTEPOCH=	2
 CATEGORIES=	net devel
 MASTER_SITES=	https://download.videolan.org/contrib/live555/
diff --git a/net/liveMedia/distinfo b/net/liveMedia/distinfo
index 4e9b655b6e43..f87e51ff1a07 100644
--- a/net/liveMedia/distinfo
+++ b/net/liveMedia/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1731553276
-SHA256 (live.2024.10.31.tar.gz) = 75a4568a0a979326674ca45dfd1dfaba9d916380e80cc46af7792ed740595774
-SIZE (live.2024.10.31.tar.gz) = 696459
+TIMESTAMP = 1738821860
+SHA256 (live.2025.01.17.tar.gz) = 273d9cf77468015c2377e50e384e3eea67cf255c75fe60a175e9e0917afe847b
+SIZE (live.2025.01.17.tar.gz) = 696558
diff --git a/net/liveMedia/files/patch-testProgs_testRTSPClient.cpp b/net/liveMedia/files/patch-testProgs_testRTSPClient.cpp
new file mode 100644
index 000000000000..92d05688603a
--- /dev/null
+++ b/net/liveMedia/files/patch-testProgs_testRTSPClient.cpp
@@ -0,0 +1,16 @@
+Fix build.
+
+testRTSPClient.cpp:64:24: error: copying variable of type 'EventLoopWatchVariable' (aka 'atomic<char>') invokes deleted constructor
+   64 | EventLoopWatchVariable eventLoopWatchVariable = 0;
+
+--- testProgs/testRTSPClient.cpp.orig	2025-01-17 15:16:46 UTC
++++ testProgs/testRTSPClient.cpp
+@@ -61,7 +61,7 @@ void usage(UsageEnvironment& env, char const* progName
+   env << "\t(where each <rtsp-url-i> is a \"rtsp://\" URL)\n";
+ }
+ 
+-EventLoopWatchVariable eventLoopWatchVariable = 0;
++EventLoopWatchVariable eventLoopWatchVariable;
+ 
+ int main(int argc, char** argv) {
+   // Begin by setting up our usage environment: