Download raw body.
UPDATE: mpv 0.38.0
Here is an update to mpv 0.38.0.
https://raw.githubusercontent.com/mpv-player/mpv/master/RELEASE_NOTES
Index: Makefile
===================================================================
RCS file: /cvs/ports/multimedia/mpv/Makefile,v
retrieving revision 1.99
diff -u -p -u -p -r1.99 Makefile
--- Makefile 21 Feb 2024 10:42:42 -0000 1.99
+++ Makefile 17 Apr 2024 23:57:05 -0000
@@ -2,7 +2,7 @@ COMMENT = movie player based on MPlayer
GH_ACCOUNT = mpv-player
GH_PROJECT = mpv
-GH_TAGNAME = v0.37.0
+GH_TAGNAME = v0.38.0
USE_NOBTCFI = Yes
SHARED_LIBS += mpv 2.0
@@ -62,6 +62,7 @@ CONFIGURE_ARGS = -Dlua=lua${MODLUA_DEP_V
-Dalsa=disabled \
-Dandroid-media-ndk=disabled \
-Daudiounit=disabled \
+ -Davfoundation=disabled \
-Dcaca=disabled \
-Dcocoa=disabled \
-Dcoreaudio=disabled \
@@ -72,12 +73,15 @@ CONFIGURE_ARGS = -Dlua=lua${MODLUA_DEP_V
-Dd3d-hwaccel=disabled \
-Ddirect3d=disabled \
-Ddmabuf-wayland=disabled \
+ -Ddrm=disabled \
+ -Ddvbin=disabled \
-Degl-android=disabled \
-Degl-angle=disabled \
-Degl-angle-lib=disabled \
-Degl-angle-win32=disabled \
-Degl-drm=disabled \
-Degl-wayland=disabled \
+ -Dgbm=disabled \
-Dgl-cocoa=disabled \
-Dgl-dxinterop=disabled \
-Dgl-dxinterop-d3d9=disabled \
@@ -93,7 +97,6 @@ CONFIGURE_ARGS = -Dlua=lua${MODLUA_DEP_V
-Doss-audio=disabled \
-Dpipewire=disabled \
-Dpulse=disabled \
- -Drpi-mmal=disabled \
-Drubberband=disabled \
-Dshaderc=disabled \
-Dsixel=disabled \
@@ -106,6 +109,7 @@ CONFIGURE_ARGS = -Dlua=lua${MODLUA_DEP_V
-Dvaapi-drm=disabled \
-Dvaapi-x11=disabled \
-Dvaapi-wayland=disabled \
+ -Dvaapi-win32=disabled \
-Dvapoursynth=disabled \
-Dvdpau=disabled \
-Dvdpau-gl-x11=disabled \
Index: distinfo
===================================================================
RCS file: /cvs/ports/multimedia/mpv/distinfo,v
retrieving revision 1.35
diff -u -p -u -p -r1.35 distinfo
--- distinfo 21 Feb 2024 10:42:42 -0000 1.35
+++ distinfo 17 Apr 2024 23:57:05 -0000
@@ -1,2 +1,2 @@
-SHA256 (mpv-0.37.0.tar.gz) = HS1K268Eii+m7hNFdQMsSy2tmn76/Vs+abiNuTWvrd8=
-SIZE (mpv-0.37.0.tar.gz) = 3384190
+SHA256 (mpv-0.38.0.tar.gz) = htnvQLYFhzL2e0bQu9okoHT66GCz6q4FurMUUEEwMGY=
+SIZE (mpv-0.38.0.tar.gz) = 3419741
Index: patches/patch-meson_build
===================================================================
RCS file: /cvs/ports/multimedia/mpv/patches/patch-meson_build,v
retrieving revision 1.7
diff -u -p -u -p -r1.7 patch-meson_build
--- patches/patch-meson_build 21 Feb 2024 10:42:42 -0000 1.7
+++ patches/patch-meson_build 17 Apr 2024 23:57:05 -0000
@@ -4,9 +4,9 @@ time if present at all, rather than only
Index: meson.build
--- meson.build.orig
+++ meson.build
-@@ -342,7 +342,19 @@ if features['libdl']
+@@ -348,7 +348,19 @@ if features['libdl']
endif
-
+
# C11 atomics are mandatory but linking to the library is not always required.
-dependencies += cc.find_library('atomic', required: false)
+if cc.links('''
@@ -22,6 +22,6 @@ Index: meson.build
+else
+ stdatomic_dep = cc.find_library('atomic')
+endif
-
+
cplugins = get_option('cplugins').require(
win32 or (features['libdl'] and cc.has_link_argument('-rdynamic')),
Index: patches/patch-osdep_threads_posix_h
===================================================================
RCS file: /cvs/ports/multimedia/mpv/patches/patch-osdep_threads_posix_h,v
retrieving revision 1.1
diff -u -p -u -p -r1.1 patch-osdep_threads_posix_h
--- patches/patch-osdep_threads_posix_h 21 Feb 2024 10:42:42 -0000 1.1
+++ patches/patch-osdep_threads_posix_h 17 Apr 2024 23:57:05 -0000
@@ -2,10 +2,10 @@ Index: osdep/threads-posix.h
--- osdep/threads-posix.h.orig
+++ osdep/threads-posix.h
@@ -19,6 +19,7 @@
-
+
#include <errno.h>
#include <pthread.h>
+#include <pthread_np.h>
#include <stdio.h>
-
+
#include "common/common.h"
Index: patches/patch-osdep_timer-linux_c
===================================================================
RCS file: /cvs/ports/multimedia/mpv/patches/patch-osdep_timer-linux_c,v
retrieving revision 1.3
diff -u -p -u -p -r1.3 patch-osdep_timer-linux_c
--- patches/patch-osdep_timer-linux_c 21 Feb 2024 10:42:42 -0000 1.3
+++ patches/patch-osdep_timer-linux_c 17 Apr 2024 23:57:05 -0000
@@ -5,12 +5,11 @@ Index: osdep/timer-linux.c
--- osdep/timer-linux.c.orig
+++ osdep/timer-linux.c
@@ -20,6 +20,8 @@
-
+
#include <errno.h>
#include <stdlib.h>
+#undef _POSIX_TIMERS
+#define _POSIX_TIMERS 1
#include <time.h>
-
+
#include "common/common.h"
-
Index: patches/patch-osdep_timer_c
===================================================================
RCS file: /cvs/ports/multimedia/mpv/patches/patch-osdep_timer_c,v
retrieving revision 1.3
diff -u -p -u -p -r1.3 patch-osdep_timer_c
--- patches/patch-osdep_timer_c 21 Feb 2024 10:42:42 -0000 1.3
+++ patches/patch-osdep_timer_c 17 Apr 2024 23:57:05 -0000
@@ -13,4 +13,3 @@ Index: osdep/timer.c
#include <sys/time.h>
#include <limits.h>
#include <assert.h>
-
UPDATE: mpv 0.38.0