Full list of changes:
* Added SMSD configuration option RetryTimeout.
* Removed non configurable sleep after failed message send.
* SMSD now tries to store whole decoded text for concatenated messages in the first entry in database.
* Improved compatibility with Sierra SL8084TR.
* Added support for delivery reports stored in SR memory.
* Configure CNMI parameters for AT driver.
* New models, R&S xk2100, TRXMAnager, Meade LX200
* HTML manual is now generated at 'make dist' so users don't
need GNU Info tools installed. TNX Greg, N1DAM for the suggestion.
CubicSDR is the software portion of Software Defined Radio.
By Using hardware that converts RF spectrum into a digital
stream we are able to build complex radios to do many types
of functions in software instead of traditional hardware.
What can I do with CubicSDR ?
Paired with a supported hardware receiver, you can use CubicSDR
to explore the RF world around you. Discover Satellite transmissions,
Amateur Radio, Rail, Areonautical, Shortwave, or any number of
possible signals floating through the air.
WWW: https://cubicsdr.readthedocs.io/en/latest/
redsea is a lightweight command-line decoder for broadcast FM-RDS data,
such as that provided from a software-defined radio (SDR). It can also
decode raw ASCII bitstreams, the hex format provided by RDS Spy, and audio
files containing multiplex signals. Decoded RDS groups are printed to the
terminal as line-delimited JSON objects; optionally, undecoded hex blocks
can be output instead.
This program is intended to be used in combination with a separate source
of demodulated FM multiplex signals, such as rtl-sdr.
WWW: https://github.com/windytan/redsea/
PR: 234726
Submitted by: Andrew <morrand276@gmail.com>
Approved by: miwi (mentor)
Differential Revision: https://reviews.freebsd.org/D19164
versions name serial ports cuauX, fix this. While here, consistently
prepend sed(1) commands with `-e' switch like we normally do in ports.
PR: 235827
Submitted by: Darren Mulligan
Release announcement:
https://blog.qt.io/blog/2019/02/01/qt-5-12-1-released/
Changelog:
https://wiki.qt.io/Qt_5.12.1_Change_Files
- A change was required to qt-dist.mk to always pass LOCALBASE to qmake,
as Qt5 has been installed to a prefix for some time now, there should
not be any harm in that, with respect to it picking up installed versions
of itself during build.
PR: 235622
Exp-run by: antoine
Scrcpy provides display and control of Android devices connected on
USB (or over TCP/IP). It does not require any root access.
https://github.com/Genymobile/scrcpy
PR: 235146
Submitted by: Hiroki Tagato <tagattie@yandex.com>
The current port does not facilitate the installation of splat-hd.
The attached patch resolves that. Also this patch enables having splat-hd
build out with 8x8 tiles.
From db:
- splat-hd was never being built and installed.
- forced HRM build with new option
- cleaned up HRM and pkg-plist
- High resolution 6x6 7x7 and 8x8 need 64bit systems so mark description
but allow foot shooting if user tries high resolution 8x8 on i386
PR: ports/235148
Submitted by: darcy@dbitech.ca
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)