fluidsynth: update to 2.2.8.

Fix pkglint.

* ALSA and WinMIDI drivers now pass system real-time messages on to user callback (#1115, thanks to @albedozero)
* Fix FPU division by zero in fluid_player_set_tempo() (#1111)
* Fix system-wide config file not loaded (#1118)
* Pluseaudio driver now honors audio.periods setting (#1127, thanks to @pedrolcl)
This commit is contained in:
wiz 2022-07-17 08:26:57 +00:00
parent 1b8e4d6567
commit 3b5deb82a9
4 changed files with 10 additions and 11 deletions

View file

@ -1,7 +1,6 @@
# $NetBSD: Makefile,v 1.62 2022/07/02 16:53:05 ryoon Exp $
# $NetBSD: Makefile,v 1.63 2022/07/17 08:26:57 wiz Exp $
DISTNAME= fluidsynth-2.2.7
PKGREVISION= 1
DISTNAME= fluidsynth-2.2.8
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_GITHUB:=FluidSynth/}
GITHUB_TAG= v${PKGVERSION_NOREV}

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.21 2022/04/26 08:14:22 adam Exp $
@comment $NetBSD: PLIST,v 1.22 2022/07/17 08:26:57 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.1.0
lib/libfluidsynth.so.3.1.1
lib/pkgconfig/fluidsynth.pc
man/man1/fluidsynth.1

View file

@ -1,8 +1,8 @@
$NetBSD: distinfo,v 1.38 2022/04/26 08:14:22 adam Exp $
$NetBSD: distinfo,v 1.39 2022/07/17 08:26:57 wiz Exp $
BLAKE2s (fluidsynth-2.2.7.tar.gz) = 46c0280373e9181d8de1ec09b2a1502c5a000c4eb0b27fb369c246ad3ab48a5a
SHA512 (fluidsynth-2.2.7.tar.gz) = 62709f96fa07bbafb9b907438da7376abdf1a4e679cd2b105c5bca257f1ff62c18bd4c646ef2ccba64ca5273604da996fb2caaf61eeee44686bf45fef1ed83a7
Size (fluidsynth-2.2.7.tar.gz) = 1748897 bytes
BLAKE2s (fluidsynth-2.2.8.tar.gz) = 61f32919b37ce7370f13de40eb255e616ff125af3a96aaed4b096c7ba4535eb9
SHA512 (fluidsynth-2.2.8.tar.gz) = 8173f2d368a214cf1eb7faae2f6326db43fb094ec9c83e652f953290c3f29c34ebd0b92cbb439bea8d814d3a7e4f9dc0c18c648df1d414989d5d8b4700c79535
Size (fluidsynth-2.2.8.tar.gz) = 1751615 bytes
SHA1 (patch-CMakeLists.txt) = 24c923c5e7b39b71b499bd204a7ca74268ea552c
SHA1 (patch-include_fluidsynth_log.h) = cfc4e180f53e6cac03bea90a0c91d6fd75e39459
SHA1 (patch-src_drivers_fluid__alsa.c) = a482764f0bbc15b5cf04e6920374b2f4811760aa

View file

@ -1,4 +1,4 @@
# $NetBSD: options.mk,v 1.5 2020/07/16 01:28:25 markd Exp $
# $NetBSD: options.mk,v 1.6 2022/07/17 08:26:57 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.fluidsynth
@ -16,7 +16,7 @@ PKG_SUGGESTED_OPTIONS+= sdl2
.endif
# A guess at platforms where ladspa is likely to work...
.if ${OPSYS} == "Linux" || !empty(OPSYS:M*BSD) || ${OPSYS} == "DragonFly"
.if ${OPSYS} == "Linux" || ${OPSYS:M*BSD} || ${OPSYS} == "DragonFly"
PKG_SUGGESTED_OPTIONS+= ladspa
.endif