pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/audio/fluidsynth
Module Name: pkgsrc
Committed By: wiz
Date: Sun Nov 28 10:43:42 UTC 2021
Modified Files:
pkgsrc/audio/fluidsynth: Makefile PLIST distinfo
pkgsrc/audio/fluidsynth/patches: patch-CMakeLists.txt
Log Message:
fluidsynth: update to 2.2.4.
Per-channel ALL_SOUND_OFF when seeking/stopping player (#980, thanks to @albedozero)
Fix windows related encoding problems (#984, thanks to @tsingakbar)
Rewind playlist when calling fluid_player_play after all loops are complete (#994, thanks to @albedozero)
Fix MinGW related static linking issues (#990, thanks to @realnc)
To generate a diff of this commit:
cvs rdiff -u -r1.55 -r1.56 pkgsrc/audio/fluidsynth/Makefile
cvs rdiff -u -r1.17 -r1.18 pkgsrc/audio/fluidsynth/PLIST
cvs rdiff -u -r1.34 -r1.35 pkgsrc/audio/fluidsynth/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/audio/fluidsynth/patches/patch-CMakeLists.txt
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/audio/fluidsynth/Makefile
diff -u pkgsrc/audio/fluidsynth/Makefile:1.55 pkgsrc/audio/fluidsynth/Makefile:1.56
--- pkgsrc/audio/fluidsynth/Makefile:1.55 Sun Sep 12 09:17:19 2021
+++ pkgsrc/audio/fluidsynth/Makefile Sun Nov 28 10:43:42 2021
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.55 2021/09/12 09:17:19 wiz Exp $
+# $NetBSD: Makefile,v 1.56 2021/11/28 10:43:42 wiz Exp $
-DISTNAME= fluidsynth-2.2.3
+DISTNAME= fluidsynth-2.2.4
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_GITHUB:=FluidSynth/}
GITHUB_TAG= v${PKGVERSION_NOREV}
Index: pkgsrc/audio/fluidsynth/PLIST
diff -u pkgsrc/audio/fluidsynth/PLIST:1.17 pkgsrc/audio/fluidsynth/PLIST:1.18
--- pkgsrc/audio/fluidsynth/PLIST:1.17 Sun Sep 12 09:17:19 2021
+++ pkgsrc/audio/fluidsynth/PLIST Sun Nov 28 10:43:42 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.17 2021/09/12 09:17:19 wiz Exp $
+@comment $NetBSD: PLIST,v 1.18 2021/11/28 10:43:42 wiz Exp $
bin/fluidsynth
include/fluidsynth.h
include/fluidsynth/audio.h
@@ -20,6 +20,6 @@ include/fluidsynth/version.h
include/fluidsynth/voice.h
lib/libfluidsynth.so
lib/libfluidsynth.so.3
-lib/libfluidsynth.so.3.0.3
+lib/libfluidsynth.so.3.0.4
lib/pkgconfig/fluidsynth.pc
man/man1/fluidsynth.1
Index: pkgsrc/audio/fluidsynth/distinfo
diff -u pkgsrc/audio/fluidsynth/distinfo:1.34 pkgsrc/audio/fluidsynth/distinfo:1.35
--- pkgsrc/audio/fluidsynth/distinfo:1.34 Tue Oct 26 09:58:57 2021
+++ pkgsrc/audio/fluidsynth/distinfo Sun Nov 28 10:43:42 2021
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.34 2021/10/26 09:58:57 nia Exp $
+$NetBSD: distinfo,v 1.35 2021/11/28 10:43:42 wiz Exp $
-BLAKE2s (fluidsynth-2.2.3.tar.gz) = c150f9150ad773fc56add3df32b15f6b4bec6a17a180f55707f3f41e1fe87616
-SHA512 (fluidsynth-2.2.3.tar.gz) = 67f8da02714350cc0439fbdce763d00cb08d01301a6aaa3e2655e67935048b43e18968c9a52aa64c702b5e30ae2b2b4946f69e8be4af5889fa414c654d4eb13e
-Size (fluidsynth-2.2.3.tar.gz) = 1745344 bytes
-SHA1 (patch-CMakeLists.txt) = 79804b84964e9557180c0f86e36d465fac7126fe
+BLAKE2s (fluidsynth-2.2.4.tar.gz) = a895b4c0016a0ad50e0d26a19760e6aabc345d4b0ea8028ab92deac069f64227
+SHA512 (fluidsynth-2.2.4.tar.gz) = 46c3f0759cc011f34e5ba80684df4e8b593315d564da2341aaea14a5f0ba9cf732933f6ebc8712506f194b044a8e2b198b9e50879ff4221e6a9ab8051e79b48f
+Size (fluidsynth-2.2.4.tar.gz) = 1746638 bytes
+SHA1 (patch-CMakeLists.txt) = 24c923c5e7b39b71b499bd204a7ca74268ea552c
SHA1 (patch-include_fluidsynth_log.h) = cfc4e180f53e6cac03bea90a0c91d6fd75e39459
SHA1 (patch-src_drivers_fluid__alsa.c) = a482764f0bbc15b5cf04e6920374b2f4811760aa
Index: pkgsrc/audio/fluidsynth/patches/patch-CMakeLists.txt
diff -u pkgsrc/audio/fluidsynth/patches/patch-CMakeLists.txt:1.1 pkgsrc/audio/fluidsynth/patches/patch-CMakeLists.txt:1.2
--- pkgsrc/audio/fluidsynth/patches/patch-CMakeLists.txt:1.1 Wed Oct 16 19:25:44 2019
+++ pkgsrc/audio/fluidsynth/patches/patch-CMakeLists.txt Sun Nov 28 10:43:42 2021
@@ -1,11 +1,11 @@
-$NetBSD: patch-CMakeLists.txt,v 1.1 2019/10/16 19:25:44 nia Exp $
+$NetBSD: patch-CMakeLists.txt,v 1.2 2021/11/28 10:43:42 wiz Exp $
Allow building ALSA support on more systems.
---- CMakeLists.txt.orig 2019-09-27 14:53:27.000000000 +0000
+--- CMakeLists.txt.orig 2021-11-21 15:40:48.000000000 +0000
+++ CMakeLists.txt
-@@ -75,10 +75,10 @@ option ( enable-readline "compile readli
- option ( enable-threads "enable multi-threading support (such as parallel voice synthesis)" on )
+@@ -93,10 +93,10 @@ option ( enable-threads "enable multi-th
+ option ( enable-openmp "enable OpenMP support (parallelization of soundfont decoding, vectorization of voice mixing, etc.)" on )
# Platform specific options
-if ( CMAKE_SYSTEM MATCHES "Linux|FreeBSD|DragonFly" )
Home |
Main Index |
Thread Index |
Old Index