git: 6e8ffbf589c0 - main - multimedia/mediamtx: Update to 1.19.1
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 12 Jun 2026 21:09:16 UTC
The branch main has been updated by diizzy:
URL: https://cgit.FreeBSD.org/ports/commit/?id=6e8ffbf589c036b92506cc42494c911711e6e31a
commit 6e8ffbf589c036b92506cc42494c911711e6e31a
Author: Daniel Engberg <diizzy@FreeBSD.org>
AuthorDate: 2026-06-12 21:00:03 +0000
Commit: Daniel Engberg <diizzy@FreeBSD.org>
CommitDate: 2026-06-12 21:08:51 +0000
multimedia/mediamtx: Update to 1.19.1
Remove option to update via mediamtx binary
Changelog: https://github.com/bluenviron/mediamtx/releases/tag/v1.19.1
---
multimedia/mediamtx/Makefile | 2 +-
multimedia/mediamtx/distinfo | 14 ++++-----
.../mediamtx/files/patch-internal_core_core.go | 34 ++++++++++++++++++++++
3 files changed, 42 insertions(+), 8 deletions(-)
diff --git a/multimedia/mediamtx/Makefile b/multimedia/mediamtx/Makefile
index 8530a1d6a677..b01c05daf4f4 100644
--- a/multimedia/mediamtx/Makefile
+++ b/multimedia/mediamtx/Makefile
@@ -1,6 +1,6 @@
PORTNAME= mediamtx
DISTVERSIONPREFIX= v
-DISTVERSION= 1.19.0
+DISTVERSION= 1.19.1
CATEGORIES= multimedia net
MASTER_SITES+= https://github.com/video-dev/hls.js/releases/download/v1.6.16/:hlsjs
DISTFILES+= release.zip:hlsjs
diff --git a/multimedia/mediamtx/distinfo b/multimedia/mediamtx/distinfo
index 1f0147f257d7..558c150adfe5 100644
--- a/multimedia/mediamtx/distinfo
+++ b/multimedia/mediamtx/distinfo
@@ -1,7 +1,7 @@
-TIMESTAMP = 1780613020
-SHA256 (go/multimedia_mediamtx/mediamtx-v1.19.0/release.zip) = 09c827969e702e82be694da80dbf16dbdf5ff6819c33a374b1757e1bc0adb458
-SIZE (go/multimedia_mediamtx/mediamtx-v1.19.0/release.zip) = 5594711
-SHA256 (go/multimedia_mediamtx/mediamtx-v1.19.0/v1.19.0.mod) = 88195262fe49a4b34fed033065ea350300777bf760c5e4345c7de2dd36e6983e
-SIZE (go/multimedia_mediamtx/mediamtx-v1.19.0/v1.19.0.mod) = 4604
-SHA256 (go/multimedia_mediamtx/mediamtx-v1.19.0/v1.19.0.zip) = c98040be743faf412b90f823b26a92c33d7fe323a5b97f2378c7ae572f022405
-SIZE (go/multimedia_mediamtx/mediamtx-v1.19.0/v1.19.0.zip) = 859485
+TIMESTAMP = 1781302782
+SHA256 (go/multimedia_mediamtx/mediamtx-v1.19.1/release.zip) = 09c827969e702e82be694da80dbf16dbdf5ff6819c33a374b1757e1bc0adb458
+SIZE (go/multimedia_mediamtx/mediamtx-v1.19.1/release.zip) = 5594711
+SHA256 (go/multimedia_mediamtx/mediamtx-v1.19.1/v1.19.1.mod) = 5093ce8e3f95f52f7af11aaf169ecefe7f6fc348f568094a706f5c5447baa4b4
+SIZE (go/multimedia_mediamtx/mediamtx-v1.19.1/v1.19.1.mod) = 4693
+SHA256 (go/multimedia_mediamtx/mediamtx-v1.19.1/v1.19.1.zip) = ecd4c70ff4269e1b2dd99fd743066f5e21fe05150193597198efd13f4c7bad8b
+SIZE (go/multimedia_mediamtx/mediamtx-v1.19.1/v1.19.1.zip) = 865629
diff --git a/multimedia/mediamtx/files/patch-internal_core_core.go b/multimedia/mediamtx/files/patch-internal_core_core.go
new file mode 100644
index 000000000000..ce2ae38f56e1
--- /dev/null
+++ b/multimedia/mediamtx/files/patch-internal_core_core.go
@@ -0,0 +1,34 @@
+--- internal/core/core.go.orig 2026-06-12 22:46:57 UTC
++++ internal/core/core.go
+@@ -102,7 +102,7 @@ var cli struct {
+ Confpath string `arg:"" default:""`
+ Version bool `help:"print version"`
+ CheckVersion bool `help:"check whether a new version is available"`
+- Upgrade bool `help:"upgrade executable to the latest version"`
++// Upgrade bool `help:"upgrade executable to the latest version"`
+ }
+
+ // Core is an instance of MediaMTX.
+@@ -176,14 +176,14 @@ func New(args []string) (*Core, bool) {
+ os.Exit(0)
+ }
+
+- if cli.Upgrade {
+- err = upgrade.Upgrade(string(version), getArch())
+- if err != nil {
+- fmt.Printf("ERR: %v\n", err)
+- os.Exit(1)
+- }
+- os.Exit(0)
+- }
++// if cli.Upgrade {
++// err = upgrade.Upgrade(string(version), getArch())
++// if err != nil {
++// fmt.Printf("ERR: %v\n", err)
++// os.Exit(1)
++// }
++// os.Exit(0)
++// }
+
+ ctx, ctxCancel := context.WithCancel(context.Background())
+