Date: Fri, 23 Jul 2021 04:54:27 GMT From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: bb883db06a3e - main - audio/faust: Update 2.30.5 -> 2.33.1 Message-ID: <202107230454.16N4sR1x026598@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=bb883db06a3e0d343a5e5c75458c70ca179bda70 commit bb883db06a3e0d343a5e5c75458c70ca179bda70 Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2021-07-23 03:42:13 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2021-07-23 04:54:18 +0000 audio/faust: Update 2.30.5 -> 2.33.1 Also update pkg-message and add example under files/. Reported by: portscout --- audio/faust/Makefile | 9 ++++----- audio/faust/distinfo | 14 +++++++------- audio/faust/files/example.dsp | 10 ++++++++++ audio/faust/pkg-message | 14 ++++++++------ audio/faust/pkg-plist | 41 +++++++++++++++++++++++++++++++++++------ 5 files changed, 64 insertions(+), 24 deletions(-) diff --git a/audio/faust/Makefile b/audio/faust/Makefile index 58c0f2089a74..8994082e3a48 100644 --- a/audio/faust/Makefile +++ b/audio/faust/Makefile @@ -1,8 +1,7 @@ # Created by: Yuri Victorovich <yuri@FreeBSD.org> PORTNAME= faust -DISTVERSION= 2.30.5 -PORTREVISION= 3 +DISTVERSION= 2.33.1 CATEGORIES= audio devel MAINTAINER= yuri@FreeBSD.org @@ -18,9 +17,9 @@ USES= compiler:c++11-lang cmake ncurses python pkgconfig shebangfix USE_GITHUB= yes GH_ACCOUNT= grame-cncm GH_TUPLE= \ - grame-cncm:faustlibraries:41b6ba7:grame_cncm_faustlibraries/libraries \ - google:oboe:5eb2ea6:google_oboe/architecture/android/app/oboe \ - google:oboe:5eb2ea6:google_oboe/architecture/smartKeyboard/android/app/oboe + grame-cncm:faustlibraries:9082369:grame_cncm_faustlibraries/libraries \ + google:oboe:7146098:google_oboe/architecture/android/app/oboe \ + google:oboe:7146098:google_oboe/architecture/smartKeyboard/android/app/oboe SHEBANG_FILES= tools/faust2appls/* tools/benchmark/faustbench tools/sound2faust/sound2reader diff --git a/audio/faust/distinfo b/audio/faust/distinfo index 421d6fafdc9a..16e3097aca40 100644 --- a/audio/faust/distinfo +++ b/audio/faust/distinfo @@ -1,7 +1,7 @@ -TIMESTAMP = 1613507928 -SHA256 (grame-cncm-faust-2.30.5_GH0.tar.gz) = 3bf05afb6bcbfe20912ed9dc12c194b566c025e7ef52acaa8165d425c2e96e56 -SIZE (grame-cncm-faust-2.30.5_GH0.tar.gz) = 67047334 -SHA256 (grame-cncm-faustlibraries-41b6ba7_GH0.tar.gz) = abe4d04d07b1df26750fc3e804a6e519aa1653bee2e8025369fc476c368efdb8 -SIZE (grame-cncm-faustlibraries-41b6ba7_GH0.tar.gz) = 7671741 -SHA256 (google-oboe-5eb2ea6_GH0.tar.gz) = 43156e8b77e091736665505a7adf52913f23bd276bec4ef97eae70662084296d -SIZE (google-oboe-5eb2ea6_GH0.tar.gz) = 6107684 +TIMESTAMP = 1626971323 +SHA256 (grame-cncm-faust-2.33.1_GH0.tar.gz) = dbbb5536f85bd13dd0a23bda1443be7f3776c359f5dc0c2fdec5a3ac2d60ca1d +SIZE (grame-cncm-faust-2.33.1_GH0.tar.gz) = 67882112 +SHA256 (grame-cncm-faustlibraries-9082369_GH0.tar.gz) = 5ec2d2480c6ab586f5c258b27130339e3d1dbebfae936d39a89de656f2e29936 +SIZE (grame-cncm-faustlibraries-9082369_GH0.tar.gz) = 7711773 +SHA256 (google-oboe-7146098_GH0.tar.gz) = 68a378c0db26705479171f220400afeb1118bb95fbff5ee19a4ca3591637acce +SIZE (google-oboe-7146098_GH0.tar.gz) = 6181956 diff --git a/audio/faust/files/example.dsp b/audio/faust/files/example.dsp new file mode 100644 index 000000000000..01bc9c7e4d71 --- /dev/null +++ b/audio/faust/files/example.dsp @@ -0,0 +1,10 @@ +// from https://faustdoc.grame.fr/tutorials/basic-osc/ + +import("stdfaust.lib"); +f = hslider("freq",440,50,2000,0.01); +g = hslider("gain",1,0,1,0.01); +t = si.smoo(button("gate")); +phasor(freq) = (+(freq/ma.SR) ~ ma.frac); +osc(freq) = sin(phasor(freq)*2*ma.PI); +organ(freq) = (osc(freq) + osc(freq*2) + osc(freq*3))/3; +process = organ(f)*g*t; diff --git a/audio/faust/pkg-message b/audio/faust/pkg-message index b956e73abbcd..e06d70e34844 100644 --- a/audio/faust/pkg-message +++ b/audio/faust/pkg-message @@ -5,17 +5,19 @@ You installed Faust: the programming language for realtime audio signal processing. In order to try it, you can put the dsp program from -http://faust.grame.fr/examples/2015/09/30/oscillator.html into the -source file sine.dsp, and run the faust compiler that will create +https://faustdoc.grame.fr/tutorials/basic-osc/ into the source file +example.dsp, and run the faust compiler that will create Qt UI with Jack audio backend: -$ faust2jaqt sine.dsp -$ ./sine; +$ cp files/example.dsp . +$ faust2jaqt example.dsp +$ ./example -It will create the window with sliders for two tunable oscillators. +It will create the window with sliders and a button that you would +need to press. In order to compile programs for some audio backends (like Jack, -PortAudio) you need to first install them. +PortAudio) and UI frontends (like Qt), you need to first install them. EOM } diff --git a/audio/faust/pkg-plist b/audio/faust/pkg-plist index 749aee54e9f9..01c0d73f8e97 100644 --- a/audio/faust/pkg-plist +++ b/audio/faust/pkg-plist @@ -8,11 +8,15 @@ bin/faust2androidunity bin/faust2api bin/faust2atomsnippets bin/faust2au +bin/faust2audiokit bin/faust2bela +bin/faust2cagtk bin/faust2caqt bin/faust2caqtios +bin/faust2cpalrust bin/faust2csound bin/faust2csvplot +bin/faust2daisy bin/faust2dplug bin/faust2dssi bin/faust2dummy @@ -20,6 +24,7 @@ bin/faust2dummymem bin/faust2eps bin/faust2esp32 bin/faust2faustvst +bin/faust2feh bin/faust2firefox bin/faust2gen bin/faust2graph @@ -39,6 +44,7 @@ bin/faust2mathdoc bin/faust2mathviewer bin/faust2max6 bin/faust2md +bin/faust2minimal bin/faust2msp bin/faust2netjackconsole bin/faust2netjackqt @@ -78,6 +84,7 @@ bin/faust2w32msp bin/faust2w32puredata bin/faust2w32vst bin/faust2w64max6 +bin/faust2w64puredata bin/faust2w64vst bin/faust2wasm bin/faust2webaudiowasm @@ -85,6 +92,7 @@ bin/faust2webaudiowast bin/faust2winunity bin/faustoptflags bin/faustpath +bin/faustremote bin/filename2ident bin/sound2reader bin/usage.sh @@ -111,10 +119,13 @@ include/faust/audio/samAudio.h include/faust/audio/teensy-dsp.h include/faust/dsp/cpp-dsp-adapter.h include/faust/dsp/dsp-adapter.h +include/faust/dsp/dsp-adapter.h.orig include/faust/dsp/dsp-bench.h include/faust/dsp/dsp-checker.h include/faust/dsp/dsp-combiner.h include/faust/dsp/dsp-compute-adapter.h +include/faust/dsp/dsp-multi.h +include/faust/dsp/dsp-multifun.h include/faust/dsp/dsp-optimizer.h include/faust/dsp/dsp-tools.h include/faust/dsp/dsp.h @@ -130,8 +141,6 @@ include/faust/dsp/libfaust-c.h include/faust/dsp/libfaust.h include/faust/dsp/llvm-c-dsp.h include/faust/dsp/llvm-dsp-adapter.h -include/faust/dsp/llvm-dsp-multi.h -include/faust/dsp/llvm-dsp-multifun.h include/faust/dsp/llvm-dsp.h include/faust/dsp/llvm-machine-dsp.h include/faust/dsp/one-sample-dsp.h @@ -152,7 +161,9 @@ include/faust/gui/APIUI.h include/faust/gui/BelaOSCUI.h include/faust/gui/CGlue.h include/faust/gui/CInterface.h +include/faust/gui/ControlSequenceUI.h include/faust/gui/ControlUI.h +include/faust/gui/DaisyControlUI.h include/faust/gui/DecoratorUI.h include/faust/gui/Esp32ControlUI.h include/faust/gui/Esp32Reader.h @@ -212,6 +223,7 @@ include/faust/gui/ring-buffer.h include/faust/midi/RtMidi.cpp include/faust/midi/RtMidi.h include/faust/midi/bela-midi.h +include/faust/midi/daisy-midi.h include/faust/midi/esp32-midi.h include/faust/midi/gramophone-midi.h include/faust/midi/iplug2-midi.h @@ -233,12 +245,12 @@ include/faust/unity/AudioPluginInterface.h include/faust/vst/faust.h include/faust/vst/voice.h include/faust/vst/vstui.h -lib/libfaust.so -lib/libfaust.so.2 -lib/libfaust.so.2.30.5 lib/ios-libsndfile.a %%HTTPD_LIB%%lib/libHTTPDFaust.a lib/libOSCFaust.a +lib/libfaust.so +lib/libfaust.so.2 +lib/libfaust.so.2.33.1 %%HIGHLIGHT%%share/apps/katepart/syntax/faust.xml %%DATADIR%%/AU/AUPublic/AUBase/AUBase.cpp %%DATADIR%%/AU/AUPublic/AUBase/AUBase.h @@ -333,6 +345,7 @@ lib/libOSCFaust.a %%DATADIR%%/AU/Source/CocoaUI/FaustAU_Slider.m %%DATADIR%%/AU/version.plist %%DATADIR%%/Info.plist +%%DATADIR%%/aanl.lib %%DATADIR%%/all.lib %%DATADIR%%/alsa-console.cpp %%DATADIR%%/alsa-gtk.cpp @@ -346,15 +359,22 @@ lib/libOSCFaust.a %%DATADIR%%/api/doc/iOS.md %%DATADIR%%/au-effect.cpp %%DATADIR%%/au-instrument.cpp +%%DATADIR%%/audiokit/FaustDSP.mm +%%DATADIR%%/audiokit/README.md +%%DATADIR%%/audiokit/SwiftGenerator.cpp %%DATADIR%%/basics.lib %%DATADIR%%/bela.cpp %%DATADIR%%/bench.cpp %%DATADIR%%/bench.d %%DATADIR%%/c-jack-gtk.c +%%DATADIR%%/ca-gtk.cpp %%DATADIR%%/ca-qt.cpp %%DATADIR%%/compressors.lib %%DATADIR%%/csound.cpp %%DATADIR%%/csvplot.cpp +%%DATADIR%%/daisy/Makefile +%%DATADIR%%/daisy/README.md +%%DATADIR%%/daisy/ex_faust.cpp %%DATADIR%%/delays.lib %%DATADIR%%/demos.lib %%DATADIR%%/dssi.cpp @@ -608,9 +628,11 @@ lib/libOSCFaust.a %%DATADIR%%/maxmsp.lib %%DATADIR%%/mi.lib %%DATADIR%%/minimal-bench.cpp +%%DATADIR%%/minimal-cpal.rs %%DATADIR%%/minimal-dplug.d %%DATADIR%%/minimal-effect.c %%DATADIR%%/minimal-effect.cpp +%%DATADIR%%/minimal-fixed-point.cpp %%DATADIR%%/minimal-jack.rs %%DATADIR%%/minimal-params.d %%DATADIR%%/minimal-portaudio.rs @@ -777,16 +799,17 @@ lib/libOSCFaust.a %%DATADIR%%/soul/Makefile %%DATADIR%%/soul/README.md %%DATADIR%%/soul/hybrid-test1.soul +%%DATADIR%%/soul/hybrid-test2.soul %%DATADIR%%/soul/minimal.soul %%DATADIR%%/soul/poly-dsp-effect.soul %%DATADIR%%/soul/poly-dsp.soul +%%DATADIR%%/soul/soul-faust-editor.cpp %%DATADIR%%/soul/soul-faust-player.cpp %%DATADIR%%/soul/soul-faust-tester.cpp %%DATADIR%%/soundfiles.lib %%DATADIR%%/spats.lib %%DATADIR%%/stdfaust.lib %%DATADIR%%/supercollider.cpp -%%DATADIR%%/synthfile.cpp %%DATADIR%%/synths.lib %%DATADIR%%/teensy/teensy.cpp %%DATADIR%%/teensy/teensy.h @@ -816,6 +839,11 @@ lib/libOSCFaust.a %%DATADIR%%/webaudio/ExportLib.js %%DATADIR%%/webaudio/README.md %%DATADIR%%/webaudio/WebMIDIAPI.js +%%DATADIR%%/webaudio/audioinput-processor.js +%%DATADIR%%/webaudio/audioinput.dsp +%%DATADIR%%/webaudio/audioinput.html +%%DATADIR%%/webaudio/audioinput.js +%%DATADIR%%/webaudio/audioinput.wasm %%DATADIR%%/webaudio/component-creator.html %%DATADIR%%/webaudio/create-factory-worker.js %%DATADIR%%/webaudio/dynamic-organ-wasm.html @@ -841,6 +869,7 @@ lib/libOSCFaust.a %%DATADIR%%/webaudio/noise.dsp %%DATADIR%%/webaudio/noise.js %%DATADIR%%/webaudio/noise.wasm +%%DATADIR%%/webaudio/organ-processor.js %%DATADIR%%/webaudio/organ-wasm.html %%DATADIR%%/webaudio/organ.dsp %%DATADIR%%/webaudio/organ.js
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202107230454.16N4sR1x026598>