Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 4 Jan 2025 19:58:43 GMT
From:      Vladimir Druzenko <vvd@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: e5b74cfd75a2 - main - audio/mumble: Update 1.5.634 =?utf-8?Q?=E2=86=92?= 1.5.735
Message-ID:  <202501041958.504JwhS3024881@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by vvd:

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

commit e5b74cfd75a2169c9d9bbfb96cfde9c24ae82531
Author:     Vladimir Druzenko <vvd@FreeBSD.org>
AuthorDate: 2025-01-04 19:56:26 +0000
Commit:     Vladimir Druzenko <vvd@FreeBSD.org>
CommitDate: 2025-01-04 19:57:59 +0000

    audio/mumble: Update 1.5.634 → 1.5.735
    
    Changelog:
    https://www.mumble.info/blog/mumble-1.5.735/
---
 audio/mumble/Makefile                               |  3 +--
 audio/mumble/distinfo                               |  6 +++---
 audio/mumble/files/patch-src_MumbleProtocol.cpp     | 11 -----------
 audio/mumble/files/patch-src_mumble_Audio.cpp       | 11 -----------
 audio/mumble/files/patch-src_mumble_AudioOutput.cpp | 16 ----------------
 5 files changed, 4 insertions(+), 43 deletions(-)

diff --git a/audio/mumble/Makefile b/audio/mumble/Makefile
index f68919e2763f..4d4c48dc482b 100644
--- a/audio/mumble/Makefile
+++ b/audio/mumble/Makefile
@@ -1,6 +1,5 @@
 PORTNAME=	mumble
-DISTVERSION=	1.5.634
-PORTREVISION=	8
+DISTVERSION=	1.5.735
 CATEGORIES=	audio
 MASTER_SITES=	https://github.com/${PORTNAME}-voip/${PORTNAME}/releases/download/v${DISTVERSION}/
 
diff --git a/audio/mumble/distinfo b/audio/mumble/distinfo
index b43ce7981b85..e4ccc9f88981 100644
--- a/audio/mumble/distinfo
+++ b/audio/mumble/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1716672642
-SHA256 (mumble-1.5.634.tar.gz) = 904f3633d28ab0e6925caeff2c65802f586abefdf6d20162f20a71805c2c5929
-SIZE (mumble-1.5.634.tar.gz) = 26001230
+TIMESTAMP = 1736001274
+SHA256 (mumble-1.5.735.tar.gz) = db8990079f556a877218d471bcf2c24eb5e4520b652f3c20793d0aadedaae6ae
+SIZE (mumble-1.5.735.tar.gz) = 26010842
diff --git a/audio/mumble/files/patch-src_MumbleProtocol.cpp b/audio/mumble/files/patch-src_MumbleProtocol.cpp
deleted file mode 100644
index 2f05950b011a..000000000000
--- a/audio/mumble/files/patch-src_MumbleProtocol.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/MumbleProtocol.cpp.orig	2024-03-03 17:26:27 UTC
-+++ src/MumbleProtocol.cpp
-@@ -781,7 +781,7 @@ namespace Protocol {
- 		}
- 
- 
--		m_audioData.payload = gsl::span< byte >(payloadBegin, payloadSize);
-+		m_audioData.payload = gsl::span< byte >(payloadBegin, static_cast< size_t >(payloadSize));
- 
- 		if (stream.left() == 3 * sizeof(float)) {
- 			// If there are further bytes after the audio payload, this means that there is positional data attached to
diff --git a/audio/mumble/files/patch-src_mumble_Audio.cpp b/audio/mumble/files/patch-src_mumble_Audio.cpp
deleted file mode 100644
index 5d7719c14c7c..000000000000
--- a/audio/mumble/files/patch-src_mumble_Audio.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/mumble/Audio.cpp.orig	2024-03-03 17:26:27 UTC
-+++ src/mumble/Audio.cpp
-@@ -43,7 +43,7 @@ void LoopUser::addFrame(const Mumble::Protocol::AudioD
- 		QMutexLocker l(&qmLock);
- 		bool restart = (qetLastFetch.elapsed() > 100);
- 
--		long time = qetTicker.elapsed();
-+		long long time = qetTicker.elapsed();
- 
- 		float r;
- 		if (restart)
diff --git a/audio/mumble/files/patch-src_mumble_AudioOutput.cpp b/audio/mumble/files/patch-src_mumble_AudioOutput.cpp
deleted file mode 100644
index 04aaaa44bbb3..000000000000
--- a/audio/mumble/files/patch-src_mumble_AudioOutput.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
---- src/mumble/AudioOutput.cpp.orig	2024-03-03 17:26:27 UTC
-+++ src/mumble/AudioOutput.cpp
-@@ -617,11 +617,11 @@ bool AudioOutput::mix(void *outbuff, unsigned int fram
- 						// Mix down stereo to mono. TODO: stereo record support
- 						// frame: for a stereo stream, the [LR] pair inside ...[LR]LRLRLR.... is a frame
- 						for (unsigned int i = 0; i < frameCount; ++i) {
--							recbuff[i] += (pfBuffer[2 * i] / 2.0f + pfBuffer[2 * i + 1] / 2.0f) * volumeAdjustment;
-+							recbuff[static_cast< int >(i)] += (pfBuffer[2 * i] / 2.0f + pfBuffer[2 * i + 1] / 2.0f) * volumeAdjustment;
- 						}
- 					} else {
- 						for (unsigned int i = 0; i < frameCount; ++i) {
--							recbuff[i] += pfBuffer[i] * volumeAdjustment;
-+							recbuff[static_cast< int >(i)] += pfBuffer[i] * volumeAdjustment;
- 						}
- 					}
- 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202501041958.504JwhS3024881>