The logic in USES=python will automatically convert this to 3.8+ by
itself.
Adjust two ports that only had Python 3.7 mentioned but build fine
on Python 3.8 too.
finance/quickfix: mark BROKEN with PYTHON
libtool: compile: c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++ -DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable -Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi -Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings -Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x -MT _quickfix_la-QuickfixPython.lo -MD -MP -MF .deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp -fPIC -DPIC -o .libs/_quickfix_la-QuickfixPython.o
warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean '-Wno-uninitialized'? [-Wunknown-warning-option]
QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found
^~~~~~~~~~
1 warning and 1 error generated.
Reviewed by: portmgr, vishwin, yuri
Differential Revision: <https://reviews.freebsd.org/D40568>
Improve the flac tool's handling of foreign metadata on decoding a
file (i.e. restoring the foreign metadata) and add a few features
to the metaflac tool. Both tools have been vetted with fuzzing,
resulting in numerous small fixes.
All PowerPC-specific code has been removed.
PR: 272185
In file included from /wrkdirs/usr/ports/audio/liblastfm-qt5/work/liblastfm-1.0.9-5-g4433165/src/fingerprint/Fingerprint.cpp:21:
/wrkdirs/usr/ports/audio/liblastfm-qt5/work/liblastfm-1.0.9-5-g4433165/src/fingerprint/Fingerprint.h:74:49: error: ISO C++17 does not allow dynamic exception specifications [-Wdynamic-exception-spec]
void generate( FingerprintableSource* ) throw( Error );
While here, pet portlint (1).
Reported by: pkg-fallout
python/ext/ufuncs.c:48:3: error: incompatible function pointer types
initializing 'PyUFuncGenericFunction'
Const qualifiers were added to the dimension and strides arguments of
PyUFuncGenericFunction in NumPy 1.19.0 [1]. This was previously a
warning, but Clang 16 has -Werror=incompatible-function-pointer-types
turned on by default.
[1] e94cec8003
Reported by: pkg-fallout
* PORTVERSION --> DISTVERSION
* Use upstream release tarball instead of USE_GITHUB
* Remove USES= iconv, works fine without any helpers
* Add USES= compiler:c++17-lang
* Make ALSA and Pulseaudio audio backends optional
PR: 272154
Reported by: diizzy
Add temporary patch to fix a crash at startup if kwidgetsaddons
5.101.0 is installed. The patch was obtained from LMMS ticket
related with this issue[1].
[1] https://github.com/LMMS/lmms/issues/6587
Since I'm here reorder Makefile to make linters happy.
PR: 270470
Reported by: Manuel <gnuandbsdguy@gmail.com>
MFH: 2023Q2
Since clang 16 (and gcc 11) the default C++ standard is now gnu++17.
Because audio/festival's build infrastructure does not explicitly set
its C++ standard, this leads to an error:
regexp.cc:178:22: error: ISO C++17 does not allow 'register' storage class specifier [-Wregister]
STATIC char *regnext(register char *p);
^~~~~~~~~
To work around the error, add USE_CXXSTD=gnu++11 to compile for C++11
with GNU extensions instead. While here, pet portlint a little.
PR: 272014
Approved by: fernape
MFH: 2023Q2
Python has set as default and deprecated the 'U' (open as Unicode) flag
for all file open routines since 3.3 release and removed it in 3.11+.
PR: 271980
A sound file is read by the software, and a 128-bit message is stored in
a watermark in the output sound file. For human listeners, the files
typically sound the same.
However, the 128-bit message can be retrieved from the output sound
file. Our tests show, that even if the file is converted to mp3 or ogg
(with bitrate 128 kbit/s or higher), the watermark usually can be
retrieved without problems. The process of retrieving the message does
not need the original audio file (blind decoding).
Internally, audiowmark is using the patchwork algorithm to hide the data
in the spectrum of the audio file. The signal is split into 1024 sample
frames. For each frame, some pseoudo-randomly selected amplitudes of the
frequency bands of a 1024-value FFTs are increased or decreased
slightly, which can be detected later.
New plugins:
- mod: support for loading and renaming various tracker files formats
(.mod, .xm, .it, etc.)
- submit_folksonomy_tags: allows submission of specific tags on tracks
you own (defaults to <i>genre</i> and <i>mood</i>) as folksonomy tags
on MusicBrainz. Supports submitting to recording, release, release
group and release artist entities.
Removed plugins:
- happidev_lyrics: happi.dev service no longer exists
- replaygain: replaced by replaygain2 plugin
Additional info can be found at: https://picard.musicbrainz.org/plugins/
- Adopt port as the mails from the MAINTAINER is bouncing. In case the
MAINTAINER returns please send me a mail for adoption [1]
- This port supports building with mbedtls so conditionally build with
mbedtls when the OSVERSION is ge 1400089. This version will need to be
updated based in the OSVERSION of OpenSSL 3 merge in the base.
Changelog: https://github.com/umurmur/umurmur/releases/tag/0.2.20
Reported by: emaste [1]
Approved by: portmgr (blanket)
Since clang 16 (and gcc 11) the default C++ standard is now gnu++17.
Because audio/espeak-ng's Makefile does not explicitly set its C++
standard, this leads to an error:
src/speechPlayer/src/speechWaveGenerator.cpp:197:56: error: reference to 'sample' is ambiguous
unsigned int generate(const unsigned int sampleCount, sample* sampleBuf) {
^
src/speechPlayer/src/sample.h:23:3: note: candidate found by name lookup is 'sample'
} sample;
^
/usr/include/c++/v1/__algorithm/sample.h:95:17: note: candidate found by name lookup is 'std::sample'
_SampleIterator sample(_PopulationIterator __first,
^
This is because speechWaveGenerator.cpp has "using namespace std;" at
the top, so "sample" can match both "std::sample" (from <algorithm>) and
"struct sample" (from sample.h). Qualify "sample" as "::sample" to work
around the problem.
PR: 271486
Approved by: maintainer timeout (2 weeks)
MFH: 2023Q2
Since version 10.0.0 the program does not use external utilities
to calculate Replay Gain, the built-in method is used instead.
This accelerated the conversion process and reduced the number
of dependencies (particularly, metaflac, mp3gain, vorbisgain,
and wvgain are no longer needed).
Reported by: portscout
After the update to ffmpeg 6 the configure script failed to recognise the
components needed, causing packaging errors later on. Changing the dependency to
the new ffmpeg4 port fixes this.
PR: 271641
Reported by: m.ne@gmx.net
Port changes:
- Move cargo list to Makefile.crates for a cleaner Makefile
- Use default termios (standalone library directly talking to the TTY)
- Delete ncurses dependency (USES)
- Use multiple-choice for backend, where at least one option must be enabled
by default we only enable PORTAUDIO so this change has no effect on people
using ncspot from packages.
Full app changeLog:
https://github.com/hrkfdn/ncspot/releases/tag/v0.13.2https://github.com/hrkfdn/ncspot/releases/tag/v0.13.1
PR: 271701
Reported by: eduardo
Details:
- With curl enabled, the webdav storage plugin can be enabled as well,
allowing folks to access their collections via webdav.
- No new dependencies are required to support this feature.
PR: 271663
Reported by: bsd@abinet.ru
MFH: 2023Q2
No functional changes since 1.5.1, just fixes the build for gt2reloc, so
we don't have to fetch a separate patch any more.
Reported by: portscout
Approved by: tcberner (mentor, implicit)
llvm15 was also merged into 13.2-STABLE effective from OSVERSION
1302505. Fix the ports that failed to build with llvm15.
Approved by: portmgr (blanket)
Tuesday, 9 May 2023. Today KDE releases a bugfix update to KDE Plasma 5,
versioned 5.27.5.
Plasma 5.27 was released in February 2023 with many feature refinements
and new modules to complete the desktop experience.
This release adds a month's worth of new translations and fixes from
KDE's contributors. The bugfixes are typically small but important and
include:
* Bluedevil Applet: introduce a brief animation for section height
estimates.
* Discover Flatpak: Do not crash if for any reason we lack a ref's
source.
* Info Centre About-distro: add a dump mode to print to cli.
Changelog: https://kde.org/announcements/changelogs/plasma/5/5.27.4-5.27.5
KDE Gear 23.04.1
Thursday, 11 May 2023
Over 120 individual programs plus dozens of programmer libraries and
feature plugins are released simultaneogqusly as part of KDE Gear.
Today they all get new bugfix source releases with updated translations,
including:
* kdenlive: Fix corrupted project files on opening
* skanpage: Scan Export window's OCR language list is now scrollable
* spectacle: Quitting Spectacle with Escape no longer affects windows below it
Announcement: https://kde.org/announcements/gear/23.04.1/
Changelog: https://kde.org/announcements/changelogs/gear/23.04.1/
Offline Text To Speech (TTS) converter for Python. Unlike alternative libraries, it works offline.
Requires some post-release commits from Github due to dependency on audio/espeak-ng[1]. If release version 2.90 is installed via e.g. PIP instead, it will not find audio/espeak's libespeak-ng.so.1 library.
The port is needed as one of the dependencies of the QGIS plugin 'QChatGPT'.
[1] 1e2cd7fc63
Unmaintained for years upstream, depends on deprecated GTK2, removed in
most repos and there are reports of broken behavour in forums dating
years back
PR: 270711
Approved by: portmgr (maintainer timeout, 4+ weeks)
Unmaintained for years, depends on deprecated GTK2, removed in most repos
and there are reports of broken behavour in forums dating years back
(such as crashes when importing ~mid-size/large repos randomly etc)
PR: 270712
Approved by: portmgr (maintainer timeout, 4+ weeks)
Listed a BROKEN for over a year and abandoned upstream. New project
upstream is called Easy Effects and targets PipeWire.
Reference: https://github.com/wwmm/easyeffects
Approved by: portmgr (build intrastructure)
ebur128 provides a noticable faster implementation on at least aarch64
and amd64 so make it default treewide as they conflict. If there's a
need further down the road we can add an option to choose between.
PR: 271175
Approved by: acm, jhale (maintainers of some of the ports)
Sponsored by: Blinkinblox
Changes: https://github.com/audacity/audacity/releases/tag/Audacity-3.3.1
Changes: https://github.com/audacity/audacity/releases/tag/Audacity-3.3.0
Some of the built-in effects are now realtime capable (Bass & Treble, Distortion, Phaser, Reverb and Wahwah).
#4352 Added a new effect: Shelf Filter.
Added an initial (beta) version of Beats and Measures.
#4414 Reworked the bottom toolbar dock:
Project Sample Rate is now found in Audio Setup -> Audio Settings (formerly known as Project Rate).
The Snapping Toolbar (formerly known as Snap-To) is now independent of the Selection Toolbar.
Added a new Time Signature Toolbar (beta). It is hidden by default.
#4212 Improved Zooming behavior slightly (more to come in the future).
#4393 Added a new ruler, Linear (dB). This ruler goes from 0 dBFS to -∞ dBFS and better reflects the volume as shown in the recording/playback meters.
#3820 When copying clips between projects, you now can choose between whether to copy smart clips or just the visible portion.
#4133 Added a delete button to the Cut/Copy/Paste toolbar.
Bugfixes
#1584 Audacity no longer dithers tracks unnecessarily.
#2427 Linux playback now handles output latency better (less stutters).
#3796 The EQ effect no longer resets clip names.
#3801 Audacity no longer crashes when trying to load projects with plugins that since have been deleted.
#4417 Resampling a track no longer trims it.
Libraries
FFmpeg 6 (avformat 60) is now supported.
Moved from Breakpad to Crashpad.
Extracted various libraries from within Audacity.
PR: 271094
Approved by: jack (maintainer)
The official and always up-to-date tools for all VGM (Video Game
Music) files. VGM is an audio file format for multiple video game
platforms, such as Sega Master System, Game Gear, Mega Drive/Genesis,
MSX, Neo Geo, IBM PC AT (Adlib/SoundBlaster), and has expanded to a
variety of arcade system boards since its release.
WWW: https://github.com/vgmrips/vgmtools
PR: 257174
This new mixer incarnation has support for various audio architectures.
The port has two flavors:
lite (default one) - supports only system audio (oss)
full - has all options turned on, also supporta alsa, pulseaudio and sndio
- Requires OpenSSL 3.0.0 deprecated CRYPTO_MEM_CHECK_ON
- There are more recent version available on upstream site and might
have these fixed
Approved by: portmgr (blanket)
This new release brings the following improvements:
- Improved tuning of the Opus in-band FEC (LBRR)
- Added an OPUS_SET_INBAND_FEC(2) option that turns on FEC, but does not
force SILK mode (FEC will be disabled in CELT mode)
- Improved tuning and various fixes to DTX
PR: 270996
Thursday, 20 April 2023
New apps join KDE Gear ⚙️ 23.04 and unlock access to fledgling social
media platforms, online video streaming services, podcasts, and much
more. This new generation of apps are designed to work both on your
computer and mobile phone right out of the box.
But, of course, if you are also looking forward to new versions of the
KDE tools you already know and trust, those are here too! Classics like
Spectacle, Dolphin, Kdenlive, Kate, and Okular all boast shiny new
features, code optimizations, and performance improvements.
Read on to find out what's new and what has been improved in KDE Gear ⚙️
23.04:
Announcement: https://kde.org/announcements/gear/23.04.0/
Changelog: https://kde.org/announcements/changelogs/gear/23.04.0/
Restore pd-cyclone, based on slightly newer distfile available online.
Cyclone is a library of PureData classes, bringing some level of compatibility
between Max/MSP and Pd environments. The original goal of cyclone was to create
a collection of Max/MSP objects for PureData. This was in the 2000s area,
Max/MSP version 4.6. Since then MAX evolved its architecture and file format to
something that is incompatible with PureData. Compatibility in patch file level
is limited to this very old version of Max/MSP.
WWW: http://puredata.info/downloads/cyclone/
PR: 261883
- Remove USE_PHP=hash which is available in default php installation of
all versions of php
* security/pear-Horde_Crypt_Blowfish: Remove OPTION MHASH
- Remove USE_PHP=json which is available in default php installation of
all versions of php
* devel/pear-PHPTAL: Remove OPTION JSON
* www/ilias: Remove OPTION SCORM2004
- Remove USE_PHP=mssql which is no longer available in php from php80
and later and has been replaced with sqlsrv module which is Windows
only
* www/codeigniter: Remove OPTION MSSQL
* www/moodle311: Remove OPTION MSSQL
* www/moodle39: Remove OPTION MSSQL
* www/moodle40: Remove OPTION MSSQL
* www/moodle41: Remove OPTION MSSQL
- Remove USE_PHP=openssl which is available in default php installation
of all versions of php
* databases/phpmyadmin: Remove OPTION OPENSSL
* databases/phpmyadmin5: Remove OPTION OPENSSL
* security/pear-Horde_Crypt_Blowfish: Remove OPTION OPENSSL
* www/nextcloud: Remove OPTION SSL
* www/owncloud: Remove OPTION SSL
- Remove USE_PHP=pcre which is available in default php installation of
all versions of php
* sysutils/racktables: Remove OPTION PCRE
- Remove USE_PHP=postgresql which should be USE_PHP=pgsql and update
following ports
* www/typo3-11
* www/typo3-12
- Remove USE_PHP=pdf which is no longer available as php module
* databases/phpmyadmin: Remove OPTION PDF
- Remove USE_PHP=spl which is available in default php installation of
all versions of php
- Remove USE_PHP=sqlsrv which was never imported into FreeBSD as that is
Windows only php module
* www/typo3-11: Remove OPTION SQLSRV
* www/typo3-12: Remove OPTION SQLSRV
- Bump where DEFAULT OPTIONS are affected
Sponsored by: Bounce Experts
Approved by: portmgr(blanket)