Some users report about startup coredumps with error meesage
"cannot mix incopatible Qt library (5.15.10) with this library (5.15.11)"
after installing new Qt5 packages from the repo.
Bump PORTREVISION to ensure users always get rebuilded package
* Backport webview patches from upstream
* Fix build with qt5, required #include <private/qgenericunixservices_p.h>
is still provided by QtServiceSupport module but moved to QtGui in Qt6
PR: 274143
- Bump PORTREVISION of dependent ports for shlib change
some ports are skipped due to re2 shlib change
Changes: https://github.com/abseil/abseil-cpp/releases
PR: 270233
Approved by: danfe (maintainer)
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>
libtgvoip can use PulseAudio or ALSA. However, both of these libraries were
listed as BUILD_DEPENDS and were forced to be installed on the system.
PR: 270830
Reported by: root@dc365.ru
Also, update:
o) net-im/tg_owt to its recent version;
o) devel/glibmm26: 2.74.0 -> 2.76.0. (*)
Discussed with: fluffy (*)
<ChangeLog>
o) You can disable all resource-intensive animations and animated
stickers and emoji.
o) Power saving mode turns on automatically based on system battery
saving settings.
o) Fully flexible playback speed settings for videos, voice and
video messages.
o) Click the "1X" button to quickly switch between normal and adjusted
speed – or hold it to set any speed between 0.5-2.5x.
o) Improved sound quality for adjusted speed playback.
o) Read receipts in groups under 100 members now show reaction
timestamps and when your messages were read.
o) When inviting people to groups, you can quickly send invite links
to anyone who doesn't allow adding them directly.
o) Invite links now show previews in chats.
o) Fully translatable bots. Bot descriptions and ”What can this bot
do?" sections can now be translated.
o) Starting a call now shows a confirmation window.
o) Fixed pasting images from Firefox on Windows.
o) Global Fn+F shortcut to switch active window to full screen mode
on macOS.
o) Silent notification sound in Focus Mode on macOS.
</ChangeLog>
Changelog:
v 4.5.1
* Fix crash in profile photo privacy edition.
* Allow sending photos larger than 1280px (in Experimental Settings).
v 4.5.2:
* Fix unread reactions button in private chats.
* Fix tile background saving after an app update.
* Allow Ctrl+6,7,8 to activate extra pinned chats.
Also add quick hack for upcoming CMake 3.25.x update
which goes more strict with LINUX/BSD definitions
Discussed with: osa
* While building with Qt6, Telegram Desktop can use bundled kcoreutils
and kimageformat libraries to provide a needed function from KDE Framework
* Switch from bundled dispatch library to devel/libdispatch
* Drop extra -DNDEBUG from CXXFLAGS, it is now a default for ports cmake framework
Revieved by: osa
Most USES use a colon for build/run(/test) suffixes. Change kde.mk,
qt.mk and pyqt.mk to do the same, and update all ports using that.
Document in CHANGES.
PR: 266034
Exp-run by: antoine
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D36349
Commit b7f05445c0 has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.
There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.
The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.
Approved by: portmgr (tcberner)