This commit is earlier than the maintainer timeout but saves the
port from being removed because Python 2.7 expires today.
PR: 252158
Submitted by: sdalu@sdalu.com
including the LimeSDR, drivers for the LMS7002M transceiver RFIC, and other
tools for developing with LMS7-based hardware. Installing the Lime Suite
enables many SDR applications such as GQRX to work with supported hardware
through the bundled SoapySDR support module.
PR: ports/252032
Submitted by: tomek@cedro.info
/usr/local/include/wx-3.0/wx/strvararg.h:350: error: ISO C++ forbids declaration of 'is_enum' with no type
/usr/local/include/wx-3.0/wx/strvararg.h:350: error: typedef name may not be a nested-name-specifier
/usr/local/include/wx-3.0/wx/strvararg.h:350: error: expected ';' before '<' token
/usr/local/include/wx-3.0/wx/strvararg.h:354: error: 'is_enum' was not declared in this scope
/usr/local/include/wx-3.0/wx/strvararg.h:354: error: template argument 1 is invalid
While here, fix obvious typo in maintainer.
Various functions did if-linux-else-windows-else-apple, leaving us behind;
when those functions are supposed to return a value, but don't, that's
Undefined Behavior. It's allowed to crash, or do something else. There were
already patches adding the "other" case, here's a handful more of them.
I chose to patch the existing port, rather than trying to chase an
update to the recently-released 1.8.0, because that's a little less
work *right now*.
PR: 252229
Reported by: Guido Kollerie
Dendrite is a second-generation Matrix homeserver written in Go. It
intends to provide an efficient, reliable and scalable alternative to
Synapse:
o Efficient: A small memory footprint with better baseline
performance than an out-of-the-box Synapse.
o Reliable: Implements the Matrix specification as written, using
the same test suite as Synapse as well as a brand new Go test suite.
o Scalable: can run on multiple machines and eventually scale to
massive homeserver deployments.
WWW: https://github.com/matrix-org/dendrite
/wrkdirs/usr/ports/games/DDNet/work/DDNet-15.2.3/src/engine/server/server.cpp: In member function 'int CServer::Init()':
/wrkdirs/usr/ports/games/DDNet/work/DDNet-15.2.3/src/engine/server/server.cpp:525:2: error: 'memset' was not declared in this scope
525 | memset(m_aPrevStates, CClient::STATE_EMPTY, MAX_CLIENTS * sizeof(int));