this environment in poudriere, CC is not set to the default of /usr/bin/cc and
a cross-compile toolchain is used. We need to hand edit this so that the run
time configuration for python matches what the FreeBSD base system provides.
PR: 208282
Submitted by: manu
Approved by: portmgr (mat)
and Javascript source code. It builds upon the databases of cscope and
Exuberant ctags. It can also work with Universal ctags, which is a drop-in
replacement for Exuberant ctags.
The databases of cscope and ctags would be processed by the cqmakedb tool
to generate the CodeQuery database file.
The CodeQuery database file can be viewed and queried using the codequery
GUI tool.
WWW: https://ruben2020.github.io/codequery/
Marketing blurb [1]:
QtWayland is a Qt 5 module that wraps the functionality of Wayland.
QtWayland is separated into a client and server side. The client side
is the wayland platform plugin, and provides a way to run Qt applications
as Wayland clients. The server side is the QtCompositor API, and allows
users to write their own Wayland compositors.
This is mostly needed at the moment to make upstream KDE-CI happy, therefore
we don't wire it into the metaport devel/qt5.
It requires a little change to devel/qt5-qmake, as we needed to modify the
installed bsd.conf to know about wayland/egl.
Created together with Adriaan de Groot <groot@kde.org>.
Reviewed by: rakuco, groot_kde.org
Differential Revision: https://reviews.freebsd.org/D11744
GCC 6 changed its default from -std=gnu++03 to -std=gnu++14, and this port's
code is not compatible with C++11. Since the project looks abandoned upstream,
it makes more sense to just continue building with an older C++ standard.
PR: 219297
Approved by: portmgr (blanket approval)
o Generalize support for different architectures.
o Add specific support for aarch64
o Add ALLWINNER64 as a new family using aarch64, but no ports use it yet.
o CROSS_COMPILE is the string to pass to u-boot
o COMPILER is the FreeBSD port (we assume gcc since that works better
typically than clang).
Submitted by: Emmanuel Vadot (the aarch64 bits, hacked by me to be generic)
packages into a single module.
The big idea here is to glue most of the source files in a package or
subpackage together into a single module, called
__amalgam__.py. Combined with some hooks in the __init__.py, this
should dramatically reduce the number of files that are being searched
for inside of the package. This is critical in larger projects where
import times are the major startup time cost.
WWW: https://github.com/xonsh/amalgamate
PR: 220596