An open source Spotify client running as a UNIX daemon. Spotifyd
streams music just like the official client, but is more lightweight
and supports more platforms. Spotifyd also supports the Spotify
Connect protocol which makes it show up as a device that can be
controlled from the official clients.
Spotifyd requires a Spotify Premium account.
WWW: https://github.com/Spotifyd/spotifyd
The official and always up-to-date player 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/vgmplay
PR: 234848
Submitted by: Hiroki Tagato <tagattie@yandex.com>
a symbol matches multiple clauses the last one takes precedence. If the
catch-all is last it captures everything. In the case of Qt5 libraries
this caused all symbols to have a Qt_5 label while some should have
Qt_5_PRIVATE_API. This only affects lld because GNU ld always gives the
catch-all lowest priority.
Older versions of Qt5Webengine exported some memory allocation symbols from
the bundled Chromium. Version 5.9 stopped exporting these [1] but the
symbols were kept as weak wrappers for the standard allocation functions to
maintain binary compatibility. [2][3] The problem is that the call to the
standard function in these weak wrappers is only resolved to the standard
function if there's a call to this standard function in other parts of
Qt5Webengine, because only then is there a non-weak symbol that takes
precedence over the weak one. If there's no such non-weak symbol the call
in the weak wrapper resolves to the weak wrapper itself creating an infinite
call loop that overflows the stack and causes a crash. Some of the
allocation functions are variants of C++ new and delete and it probably
depends on the compiler whether these variants are used in other parts of
Qt5Webengine.
Remove the weak wrappers (make them Linux specific). This isn't binary
compatible but we are already breaking that with the changes to the symbol
versions.
[1] 5c2cbfccf9
[2] 2ed5054e3a
[3] 009f5ebb4b
Bump all ports that depend on Qt5.
PR: 234070
Exp-run by: antoine
Approved by: kde (adridg)
GCC architectures don't have libc++. Add -stdlib=libstdc++ on them to CXXFLAGS and LDFLAGS to fix build.
PR: 234943
Submitted by: Piotr Kubaj <pkubaj@anongoth.pl>
The patch in r489819 broke the build in 11.
Address that and make sure this one builds in {11.2,12}{amd64,i386} and
13-CURRENT i386
PR: 234909
Reported by: leres@
- tell cmake we mean it, and disable looking for pulse if the option is off
- the previous flags are no longer (maybe ever?) supported.
PR: 234894
Reported by: Martin Birgmeier <d8zNeCFG@aon.at>
To resolve this, concatenate the two values since this is what was
originally intended. Fix some comments while here.
PR: 234825
Submitted by: xxjack12xx@gmail.com (maintainer)
- add missing patch file
- change WebEngine to an option, unbreak (hopefully the code is ok)
on aarch64 and ppc64
Should have mentioned that the release notes for 3.0.0 are at
https://musescore.org/en/handbook/developers-handbook/release-notes/release-notes-musescore-3
But that, plus the versions 2.2, 2.2.1, 2.3, 2.3.1 and 2.3.2 that
were skipped in ports are too many to summarize here.
PR: 234801
This skips over 18 months of musescore development to get to
what's new. This version uses WebEngine, although I don't know
what it uses it for; a PORTREVISION should be able to clear that
up and make it available for aarch64 and ppc64.
All the local patches have been dropped, except for some extra
CMake-futzing in order to get it to build with ninja and not
duplicate whole chunks of WebEngine.
PR: 234801
Reported by: kunda
Release Announcement:
https://www.kde.org/announcements/announce-applications-18.12.1.php
Today KDE released the first stability update for KDE Applications 18.12.
This release contains only bugfixes and translation updates, providing a
safe and pleasant update for everyone.
About 20 recorded bugfixes include improvements to Kontact, Cantor, Dolphin,
JuK, Kdenlive, Konsole, Okular, among others.
Improvements include:
* Akregator now works with WebEngine from Qt 5.11 or newer
* Sorting columns in the JuK music player has been fixed
* Konsole renders box-drawing characters correctly again
You can find the full list of changes here:
https://www.kde.org/announcements/fulllog_applications-aether.php?version=18.12.1
Unbreak port in FreeBSD 12 and 13-CURRENT. Broken most likely due to r335879.
While here:
* Add missing LIB_DEPENDS and USES for ossxmix
* Reorder some variables
PR: 233018
Reported by: sergey@akhmatov.ru
- Change package name so we actually get updates
- Modify QT5 uses so that we don't install buildtools and other
assorted packages that aren't runtime dependencies.
Reported by: mat tobik
This port links some non-PIC code, which fails with lld as it defaults
to disallowing relocations against read-only segments. For i386 we can
just add -znotext unconditionally: for GNU BFD ld it just affirms BFD's
existing default.
PR: 233412
Approved by: portmgr (lld blanket)
Sponsored by: The FreeBSD Foundation