Pymodbus is a full Modbus protocol implementation offering
asynchronous communications. It can also be used without any
third party dependencies (aside from pyserial) if a more
lightweight project is needed.
PR: 251614
Switch from Mk/bsd.ruby.mk to Mk/Uses/ruby.mk
Notable changes are.
- Mk/bsd.ruby.mk is moved to Mk/Uses/ruby.mk.
- USE_RUBY=yes is replaced with USES=ruby.
- USE_RUBY_EXTCONF is replaced with USES=ruby:extconf.
- USE_RUBY_RDOC is replaced with USES=ruby:rdoc.
- USE_RUBY_SETUP is replaces with USES=ruby:setup.
- RUBY_NO_BUILD_DEPENDS and RUBY_NO_RUN_DEPENDS are replaced with
USES=ruby:{build,none,run}.
- RUBY_REQUIRE isn't used anywhere, so removed.
- USES=gem now implies USES=ruby.
This is mainly the work of yasu@ at https://reviews.freebsd.org/D27863
I have just made some cosmetic changes and ran exp-run to test that the
tree is not in a BROKEN state.
Approved by: portmgr
Differential Revision: https://reviews.freebsd.org/D37925
2022-09-30 comms/hylafax: dead upstream, someone port hylafax+ from sourceforge.net instead
2022-12-31 comms/tkhylafax: Depends on expired comms/hylafax
And downgrade ibt-hw-37.8.10-fw-22.50.19.14.f.bseq to fw_patch_num 36
as last version working good with our BT stack. See PR/267581.
PR: 268022
Approved by: arrowd
Major changes:
- Fixed irregular model names
- Changed light_klx to light_lux in Bresser-7in1
- Removed VS15 project files
- Add support for multiple devices
Full log: https://github.com/merbanan/rtl_433/releases/tag/22.11
Qt 6.4.1 release is a patch release made on the top of Qt 6.4.0. As a
patch release, Qt 6.4.1 does not add any new functionality but provides
bug fixes and other improvements and maintains both forward and backward
compatibility (source and binary) with Qt 6.4.0.
For detailed information about Qt 6.4, refer to the online documentation
included in this distribution. The documentation is also available
online:
https://doc.qt.io/qt-6/index.html
Changelog: https://code.qt.io/cgit/qt/qtreleasenotes.git/about/qt/6.4.1/release-note.md
Starting with Beta.05, distfiles are named cku400.*, not cku10.0.* as
they have been since 10.0 Beta.01, for conformity with all previous
releases when they were cku300, cku301, cku302, etc. Hardcode "400"
for the moment; it could be "401" or any higher number as development
progresses, but exact version mapping scheme is currently unclear.
Nudged by: ler
Libdivecomputer is a cross-platform and open source library for
communication with dive computers from various manufacturers.
This port is the subsurface flavor of libdivecomputer.
WWW: http://www.libdivecomputer.org/
Changelog
=========
0.5.3
-----
- Int casts due to python 3.10 extension interface changes
- Pycodestyle changes
0.5.2
-----
- Using more integer divisions to get right type for QPainter
points
0.5.1
-----
- fixed crashing polar charts on python3.10 #528 (#539)
Changelog
=========
0.5.0
-----
- Fix crash on open in use serial device
- Use a Defaults module for all settings -
ignores old .ini settings
- Refactoring and unifying Chart classes
- No more automatic update checks (more privacy)
- Corrected error handling in NanaVNA\_V2 code
Test Plan:
* portlint: complains about WWW, otherwise OK
* portclippy: complains about WWW, otherwise OK
* testport: 13.1-RELEASE amd64 OK
Reviewed by: arrowd
Differential Revision: https://reviews.freebsd.org/D36517
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
Many of the WWW are overwritten later which means the wrong value
is used. This did not happen before where the children were either
a) just using the pkg-descr from the parents
b) or had their own separate pkg-descr with custom WWW
Use WWW?= in parents when the child's WWW is different.
Children that use the same WWW as the parent can just inherit it,
i.e., the child WWW can be removed.
Approved by: portmgr (implicit)
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)
In file included from /work/usr/ports/comms/telldus-core/work/telldus-core-2.1.2/common/Event.cpp:7:
/work/usr/ports/comms/telldus-core/work/telldus-core-2.1.2/common/Event.h:12:11: fatal error: 'tr1/memory' file not found
#include <tr1/memory>
^~~~~~~~~~~~
Reported by: pkg-fallout
This adds the missing Qt 6 sensors module to the tree.
As with the rest of the Qt 6 ports, we first need to figure
out what is actually required by other ports before we can
finalize them.
This adds the missing Qt 6 serialbus module to the tree.
As with the rest of the Qt 6 ports, we first need to figure
out what is actually required by other ports before we can
finalize them.
This adds the missing Qt 6 serialport module to the tree.
As with the rest of the Qt 6 ports, we first need to figure
out what is actually required by other ports before we can
finalize them.
Only allowing dist versions starting with v and a digit should filter
out any git tags that are not release versions.
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D36059
The existing port/install.sh[.in] script attempts to strip
scripts, which does not work well on all FreeBSD's versions of strip(1).
Patch it out and manually strip the binaries instead.
These 25 warnings seem relevant and warrant investigation (not done):
1 Class2Params.c++:790:22: warning: operator '?:' has lower precedence than '&'; '&' will be evaluated first [-Wbitwise-conditional-parentheses]
2 .././util/faxstate.c:142:52: warning: field precision should have type 'int', but argument has type 'unsigned long' [-Wformat]
3 Class1.c++:394:25: warning: array subscript is of type 'char' [-Wchar-subscripts]
4 Class1.c++:403:22: warning: array subscript is of type 'char' [-Wchar-subscripts]
5 Class1.c++:418:28: warning: array subscript is of type 'char' [-Wchar-subscripts]
6 Class1Send.c++:565:5: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
7 Class1Send.c++:1428:9: warning: logical not is only applied to the left hand side of this comparison [-Wlogical-not-parentheses]
8 Class1Send.c++:1428:28: warning: result of comparison of constant 35 with expression of type 'bool' is always false [-Wtautological-constant-out-of-range-compare]
9 Class1Send.c++:1949:6: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
10 Class1Send.c++:1956:2: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
11 MemoryDecoder.c++:499:2: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
12 MemoryDecoder.c++:523:2: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
13 ModemConfig.c++:479:17: warning: implicit conversion from 'int' to 'char' changes value from 144 to -112 [-Wconstant-conversion]
14 PCFFont.c++:187:6: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
15 PCFFont.c++:192:6: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
16 PCFFont.c++:217:3: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
17 PCFFont.c++:237:3: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
18 PCFFont.c++:241:2: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
19 faxQueueApp.c++:3128:9: warning: logical not is only applied to the left hand side of this comparison [-Wlogical-not-parentheses]
20 faxQueueApp.c++:3251:9: warning: logical not is only applied to the left hand side of this comparison [-Wlogical-not-parentheses]
21 faxQCleanApp.c++:310:27: warning: format specifies type 'unsigned int' but the argument has type 'nlink_t' (aka 'unsigned long') [-Wformat]
22 tagtest.c++:556:3: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
23 cqtest.c++:582:3: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
24 choptest.c++:146:3: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
25 PAM.c++:79:21: warning: variable 'pamret' is used uninitialized whenever 'for' loop exits because its condition is false [-Wsometimes-uninitialized]
Now over to diizzy@ for the tiff update patching.
While here, deprecate this since it appears dead and there is a
maintained fork on sourceforge.net called HylaFAX+. There have been
prior submissions of updates in Bugzilla, but the submitter no longer
pursued the update since he no longer uses HylaFAX+.
Unbreaks port
upstream notes:
Bugfixes:
Resolves issue with waterfall appearing garbled on some systems. (PR #205)
Resolves issue with Restore Defaults restoring previous settings on exit. (PR #207)
Resolves issue with some sound valid sound devices causing PortAudio errors during startup checks. (PR #192)
Enhancements:
Removes requirement to restart FreeDV after using Restore Defaults. (PR #207)
Hides frequency display on main window unless PSK Reporter reporting is turned on. (PR #207)
Scales per-mode squelch settings when in multi-RX mode to reduce unwanted noise. (PR #186)
Single-thread mode is now the default when multi-RX is turned on. (PR #175)
Makes multi-RX mode the default. (PR #175)
Mic In/Speaker Out volume controls added to Filter window. (PR #208)
Cleans up UI for filters and makes the dialog non-modal. (PR #208)
Adds optional support for PulseAudio on Linux systems. (PR #194)
Documentation:
Resolves issue with PDF image placement. (PR #203)
Build System:
Uses more portable way of referring to Bash in build scripts. (PR #200)
User manual now installed along with executable. (PR #187)
macOS app bundle generated by CMake instead of manually. (PR #184)
Fail as soon as a step in the build script fails. (PR #183)
PR: ports/264769
Reported by: castilloeduardo@outlook.com.ar
Tested by: castilloeduardo@outlook.com.ar
* Remove MAJE_JOBS_UNSAFE, fixed upstream with additional make
dependencies.
* Remove local copy of opencbm(4), manpage was adopted upstream.
* Also affects opencbm-kmod and opencbm-plugin-xa1541.
Changelog: https://opencbm.trikaliotis.net/opencbm-6.html
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D36031
Change all MAINTAINER entries with <felix@palmen-it.de> to
<zirias@FreeBSD.org>.
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D36029
Summary: Upstream supports only 64-bit hardware.
Test Plan:
* portlint: OK
* portclippy: OK
Reviewed by: arrowd
Differential Revision: https://reviews.freebsd.org/D36008
- Remove unneeded pkg-install/pkg-deinstall scripts, and properly
use pkg-message to display uninstall message [1]
- Reorder some statements to silence some portlint warnings
- Properly use shebangfix on more files, replacing some REINPLACE_CMDs
- Remove unneeded REINPLACE_CMDs
- Use RLN in place of LN, to correctly create relative symlinks
Reported by: bapt [1]
- Remove pkg-install, all it was doing is now done from pkg-plist [1]
- Fix sendsms script to work with sh
- Use shebangfix in place of REINPLACE_CMD
- Remove unneeded REINPLACE_CMDs
- Remove bogus SMSDDB option, and use OPTIONS_GROUP in place of OPTIONS_MULTI
- Remove duplicate "gnome" from X11_USES (already in global USES)
- Add missing dependency on harfbuzz when X11 is enabled
- Remove unneeded "-p" from ${MKDIR}
- Delete an old, unused, patch file
Reported by: bapt [1]
A big Thank You to the original contributors of these ports:
* Alex Trull <freebsd.alex@trull.org>
* Alonso Cardenas <acm@FreeBSD.org>
* Boris Samorodov <bsam@FreeBSD.org>
* David Shane Holden <dpejesh@yahoo.com>
* Felix Palmen <felix@palmen-it.de>
* Hirohisa Yamaguchi <umq@ueo.co.jp>
* Kevin Bowling <kbowling@FreeBSD.org>
* Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
* Markus Mann, CTS - FreeBSD Team <de-freebsd@ctseuro.com>
* Matthias Andree
* Matthias Fechner <mfechner@FreeBSD.org>
* Oleg Sidorkin <osidorkin@gmail.com>
* Oliver Lehmann
* Radim Kolar <hsn@sendmail.cz>
* Timothy Beyer <beyert@cs.ucr.edu>
* hq@FreeBSD.org
* johalun0@gmail.com
* lev@FreeBSD.org
* rooneg@electricjellyfish.net
With hat: portmgr
Legend:
# info
+ new feature
- bugfix
--------------------
2.5.2 (2021-02-12)
+ some contest window improvements (showing DXCC, WAZ, ITU, continent)
+ FST4 mode support added (Saku, OH1KH)
+ user can change the locator to use in ADIF import (Florian, DF2ET)
+ CW messages can be saved or loaded from a file (Saku, OH1KH)
- eQSL upload fixes (Saku, OH1KH)
- ADIF import duplicate check fixed, form layout fixed (Saku, OH1KH)
- New QSO window layout fixes (Saku, OH1KH)
- workaround for 'TRegExpr exec: empty input string' error in fpc compiler
- xdg-open is used in Call extra data window to open open the attachments
- update patch-collection diff to be at the highest patch-level
- update patch-collection diff to be against 5.15.5 instead of 5.15.2
- update devel/qt5-script to 5.15.10
- libressl support by Felix Palmen <felix@palmen-it.de>
PR: 264944
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D35619
- Add missing parameter to getdirentries syscall function
- Re-build i386 and amd64 bootstrap
- Revert fpc-i386 (FPC_USE_LIBC) build to syscall build
- Bump PORTREVISION in all ports dependant of freepascal compiler
- Copy devel/autoconf to devel/autoconf2.69.
- Update devel/autoconf to 2.71.
- Allow ports to use 2.69 with USES=autoreconf:2.69.
PR: 258046
Exp-run by: antoine
Linux has an ioctl that directly retrieves information about the usb serial
port on (FreeBSD) I have to find the umodem dev that the usb serial port
is reference then use a sysctl to find the needed for nanovna-saver to
work correctly.
Originally I assumed a 1-1 mapping of devices. I was wrong.
PR: ports/264272
Reported by: jeffpc@josefsipek.net
The forthcoming new release of C-Kermit, expected "pretty soon", will
be called 10.0 rather than 9.0.305.
The new version number, 10.0, is a change in format. Earlier version
numbers had three parts, e.g. 9.0.304 (major.minor.edit), the new one
follows contemporary two-part convention.
While here, have ourselves a working DEBUG build
Encoding/saving JPEG2000 crashes due to graphics/jasper interaction.
Not sure if it has ever worked.
Approved by: arrowd (mentor)
Differential Revision: https://reviews.freebsd.org/D35308
Version 4.1.21
* Maintenance release
. many changes, refer to git log
IPC log report
* change logging date report to date ON vice date OFF
xmlrpc methods
* add new methods all data in ADIF 3.1.2 compliant format
. logbook.last_record
. logbook.all_records
* add new methods as ADIF 3.1.2 compliant strings
. modem.get_mode
. modem.get_submode
* add new date-time methods
. log.get_time_on
. log.get_date_on
. log.get_time_off
. log.get_date_off
date-time correctly synchronized and in ZULU time
comms/wsjtx: patch configure instead of configure.ac to avoid autotools.
The build runs autoconf to regenerate configure but forgets to run
libtoolize to update ltmain.sh.
PR: 263151
Exp-run by: antoine
2022-03-31 security/revealrk: Deprecate, marked BROKEN on 12+ in 2018
2022-03-31 devel/apache-commons-modeler: Abandoned upstream, last release in 2013
2022-03-31 security/afl: Abandoned upstream, no new release since 2017. Please consider using security/afl++ instead
2022-03-31 www/mod_line_edit: Abandoned upstream, last release in 2006, Apache includes mod_sed
2022-03-31 www/myfaces: Unsupported by upstream, released in 2005
2022-03-31 www/mod_backtrace: Abandoned upstream in 2012 (version 2.0)
2022-03-31 security/base: Broken with PHP 7+, forked here https://github.com/NathanGibbs3/BASE/
2022-03-31 security/find-zlib: Deprecated, no longer relevant
2022-03-31 security/razorback-clamavNugget: Abandonware, last release in 2012 and listed as alpha quality by upstream
2022-03-31 security/shimmer: Abandonware, last release in 2008
2022-03-31 security/kripp: Abandonware, upstream returns 404 and last release was back in 2007
2022-03-31 security/ipfilter2dshield: Abandonware, no word of it on upstream web site
2022-03-31 security/sha: Obsolete, we have tools in base
2022-03-31 security/gputty: Unfetchable, dead upstream
2022-03-31 java/apache-commons-discovery: Abandoned upstream, last release in 2006
2022-03-31 www/geronimo: Port outdated, unsupported upstream and depends on deprecated software
2022-03-31 security/isakmpd: 15+ years old and broken on multiple versions
2022-03-31 security/razorback-swfScanner: Abandonware, last release in 2012 and listed as alpha quality by upstream
2022-03-31 devel/hadoop: Outdated, unsupported upstream
2022-03-31 java/apache-commons-primitives: Abandoned upstream, last release in 2003
2022-03-31 security/l5: Abandonware, broken on amd64 for 10+ years
2022-03-31 security/unicornscan: Very outdated and abandoned, current version in tree was released in 2004 and last release by upstream in Aug 2013. Please consider using security/nmap or security/rustscan
2022-03-31 security/gringotts: Abandonware, upstream dead and last release in 2009
2022-03-31 security/axTLS: Very outdated and abandoned, current version in tree was released in 2013 and last by upstream in 2019
2022-03-31 security/shttpscanner: Abandonware, last release in 2006
2022-03-31 security/sniff: Abandonware, last release around 2000 and dead upstream. Please consider using net/wireshark
2022-03-31 security/razorback-archiveInflate: Abandonware, last release in 2012 and listed as alpha quality by upstream
2022-03-31 security/scanssh: Abandonware, last release in 2005. Please consider using security/nmap or security/rustscan
2022-03-31 security/symbion-sslproxy: Abandonware, last release in 2009 and inactive upstream
2022-03-31 security/manipulate_data: Abandonware, unsupported upstream
2022-03-31 security/vinetto: Obsolete, targets deprecated Windows operating systems such as XP and 2003 Server
2022-03-31 security/pbnj: Abandonware, last release in 2006 and reported broken upstream in 2017 upstream
2022-03-31 databases/jasperreports: Unsupported by upstream, released in 2013
2022-03-31 security/retranslator: Deprecated upstream (EOL)
2022-03-31 security/cp2fwb: Abandonware, used with deprecated software Firewall Builder.
2022-03-31 security/webscarab: Deprecated by upstream in 2014
2022-03-31 security/pscan: Abandonware, last release in 2000
2022-03-31 security/vnccrack: Outdated and abandoned, last release in 2008. Upstream is at 2.1 while version in ports is 1.0.0
2022-03-31 security/doscan: Abandonware, last release in 2014. Please consider using security/masscan or sysutils/pnscan
2022-03-31 security/radamsa: Abandonware, last release in 2017 and marked as BROKEN in late 2020
2022-03-31 security/trinokiller: Abandonware, dead upstream
2022-03-31 security/spybye: Abandonware, last release in 2008 and no upstream development
2022-03-31 security/razorback-officeCat: Abandonware, last release in 2012 and listed as alpha quality by upstream
2022-03-31 textproc/crimson: Deprecated by upstream 2010-08-06
2022-03-31 security/tripwire-131: Deprecated, please consider using security/tripwire instead
2022-03-31 security/bruteforceblocker: Abandonware, please consider using security/sshguard
2022-03-31 security/razorback-fsMonitor: Abandonware, last release in 2012 and listed as alpha quality by upstream
2022-03-31 security/tlswrap: Abandonware, last release in 2007 and dead upstream
2022-03-31 security/sslsniffer: Abandonware, last release in 2001. Please consider using security/sslsplit or security/sslproxy
2022-03-31 security/strobe: Abandonware, last release around 2000 and dead upstream. Please consider using security/nmap or security/rustscan
2022-03-31 security/amap: Abandoned upstream, no new release for 10+ years. Please consider using security/nmap or security/rustscan
2022-03-31 security/ppars: Abandonware, no word of it on upstream web site
2022-03-31 security/zebedee: Abandonware, last release in 2005 and runtime issues reported upstream
2022-03-31 security/matrixssl: Abandonware, dead upstream
2022-03-31 security/razorback-virusTotal: Abandonware, last release in 2012 and listed as alpha quality by upstream
2022-03-31 security/stud: Abandonware, marked BROKEN on 12+ in 2019
2022-03-31 security/sslwrap: Abandonware, marked BROKEN on 12+ in 2019
2022-03-31 security/dcetest: Targets deprecated protocol by Microsoft in favour of .NET
2022-03-31 security/l0phtcrack: Obsolete, Microsoft LANMAN and NT password hashes are deprecated
2022-03-31 security/slurpie: Abandonware, last release around 2000 and dead upstream
2022-03-31 security/ike: Abandonware, last release in 2013 and IKEv1 is considered to be insecure
2022-03-31 security/mussh: Abandonware, last release in 2011 please consider using security/teleport
2022-03-31 security/razorback-fsWalk: Abandonware, last release in 2012 and listed as alpha quality by upstream
2022-03-31 security/hackbot: Abandonware, last release in 2003. Please consider using security/nmap or security/rustscan
2022-03-31 security/phpsecinfo: Abandonware, last release in 2006
2022-03-31 security/libpreludedb: Very outdated, current version in tree was released back in 2015 and upstream is still active
2022-03-31 security/ipfw2dshield: Abandonware, no word of it on upstream web site
2022-03-31 security/razorback-fileInject: Abandonware, last release in 2012 and listed as alpha quality by upstream
2022-03-31 security/gwee: Abandonware, last release 15+ years ago and dead upstream
2022-03-31 security/pktsuckers: Abandonware, last release from somewhere around 1999
2022-03-31 security/slush: Obsolete, listed as alpha quality, last release around 2000 and dead upstream
2022-03-31 security/integrit: Abandonware, last release in 2003
2022-03-31 security/razorback-pdfFox: Abandonware, last release in 2012 and listed as alpha quality by upstream
2022-03-31 security/razorback-yaraNugget: Abandonware, last release in 2012 and listed as alpha quality by upstream
2022-03-31 security/hlfl: Abandonware, last release in 2003
2022-03-31 security/jbrofuzz: Abandonware, no word of it on upstream web site and last release was 10 years ago
2022-03-31 security/libpwstor: Abandonware, last release in 2008
2022-03-31 security/smtpscan: Abandonware, last release in 2003 and dead upstream. Please consider using security/nmap
2022-03-31 security/cisco-torch: Abandonware, dead upstream
2022-03-31 security/amavis-stats: Abandoned, upstream is dead and last release was back in 2005
2022-03-31 textproc/lucene4: Unsupported by upstream, released in 2015
2022-03-31 java/apache-commons-discovery: Abandoned upstream, last release in 2006
2022-03-31 devel/liballium: Abandonware, last release in 2014 and upstream is dead
2022-03-31 www/sakai: Depends on expired www/tomcat7
2022-03-31 graphics/deegree-wpvs: Depends on expired www/tomcat7
2022-03-31 graphics/deegree-igeoportal: Depends on expired www/tomcat7
2022-03-31 www/jspwiki: Depends on expired www/tomcat7
2022-03-31 graphics/deegree-wcs: Depends on expired www/tomcat7
2022-03-31 graphics/deegree-csw: Depends on expired www/tomcat7
2022-03-31 graphics/deegree-wms: Depends on expired www/tomcat7
2021-12-31 www/tomcat7: Tomcat 7 is EOL on 2021-03-31. Please upgrade to a later version
2022-03-31 devel/gitblit: Depends on expired www/tomcat7
2022-03-31 graphics/barbecue: Depends on expired www/tomcat7
2022-03-31 graphics/deegree-wfs: Depends on expired www/tomcat7
2022-03-31 graphics/deegree-wps: Depends on expired www/tomcat7
2022-03-31 sysutils/rubygem-smart_proxy_chef: Depends on expired sysutils/rubygem-chef-api
2021-12-31 sysutils/rubygem-chef-api: The chef-api gem is no longer maintained. Please use the supported Chef::ServerAPI library from the Chef gem
2022-03-31 databases/redis5: EOLed upstream
2022-03-31 security/outguess: Abandonware, dead upstream and last release in 2001
2022-01-15 devel/maven3: Outdated, unsupported upstream
2022-01-15 devel/maven33: Outdated, unsupported upstream
2022-03-31 devel/monotone: Abandoned upstream, no release since 2014
2022-03-31 security/botan110: Deprecated upstream, users are recommended to migrate to 2.x
2022-03-31 net/hping: Deprecated upstream, please consider using net/hping3 instead
2022-03-31 sysutils/autopsy: Very outdated, current version in tree was released back in 2010 and upstream is still active
2022-03-31 java/cryptix-jce: Abandonware, last release in 2005 and listed as dead upstream
2022-03-31 net-mgmt/netustad: Abandonware, dead upstream, unfetchable and is marked BROKEN for 13+
2022-03-31 www/paros: Abandonware, last release in 2006 and dead upstream
2022-03-31 net/queso: Abandonware and obsolete, last release back in 1998. Please consider using security/nmap instead
2022-03-31 mail/rlytest: Abandonware, last release in 2003 and dead upstream
2022-03-31 net/ssvnc: Abandonware, last release in 2011 and broken functionality reported upstream
2022-03-31 sysutils/webjob: Abandonware, last release in 2012 and broken on multiple architectures
2022-03-31 dns/bundy: Project is in hibernation and not recommended to use in production
2022-03-31 lang/ruby26: Use newer version of Ruby. Ruby 2.6 will reach its EoL on March 31, 2022
2022-03-31 textproc/kibana6: Uses expired www/node10
2021-04-30 www/node10: Node.js v10.x reaches end-of-life on 2021-04-30, see https://github.com/nodejs/Release
2022-03-31 comms/zssh: Abandonware, last release in 2003. Please consider using scp or net/croc instead
2022-03-31 devel/py-dataclasses: Included in Python 3.7 or later
2022-03-31 net-im/diligent: Abandoned upstream, users also confirms port to be non working
2022-03-31 www/typo3-9: Mainstream support ended 2021-09-30
2022-03-31 databases/adodb: Unsupported upstream, cannot be used with PHP 8.0+
2022-03-31 audio/clementine-player: Last release in 2016, many issue reports upstream and little to no development for years. Please consider using audio/strawberry
2022-03-31 security/libprelude: Very outdated, current version in tree was released back in 2015 and upstream is still active
2022-03-31 www/crp: Abandonware, last release in 2003 and upstream refers to PHP 4.x and is dead
2022-03-31 devel/fb-adb: Last release in 2016 and deprecated by upstream, please consider using devel/android-tools-adb instead
2022-03-31 comms/o2sms: Abandonware, last release in 2010 and upstream is dead
2022-03-31 comms/p5-SMS-Send-TW-Qma: QMA service provider is no longer around
2022-03-31 comms/p5-SMS-Send-TW-ShareSMS: Service provider is no longer around
2022-03-31 comms/yaps: Service providers are no longer around and/or are no longer providing this service
2022-03-31 security/arirang: Abandoned upstream and last release was back in 2011
2022-03-31 security/openvpn-mbedtls: mbedTLS only has a minimum viable TLSv1.3 implementation, and OpenVPN-mbedtls does not work on FreeBSD 14-CURRENT
2022-03-31 www/mod_proxy_xml: Abandoned upstream, last release in 2004
2022-03-31 www/mod_xmlns: Abandoned upstream, last release in 2004
2022-03-31 www/mod_authnz_crowd: Abandoned upstream in 2014, doesn't work with Apache 2.4+
2022-03-31 security/razorback-scriptNugget: Abandonware, last release in 2012 and listed as alpha quality by upstream
2022-03-31 dns/bind911: End of life, please migrate to a newer version of BIND9
2022-03-31 www/grafana6: EOLed upstream, unfixed vulnerabilities
2022-03-31 security/govpn: Deprecated upstream, reference: http://www.govpn.info/
- Update sip to 6.5.1
- Update PyQt5 to 5.15.6
- Update PyQtChart, PyQtNetworkAuth and PyQtWebengine to 5.15.5
- Update PyQtSip to 12.9.1
- Update PyQtBuilder to 1.12.2
- Add ${_MAKE_JOBS} for pyqt.mk (reported by Tatsuki Makino)
PR: 261685
Exp-run by: antoine
KLog 2.0 – Stop the war
Posted on 26 February, 2022 by Jaime
This release is dedicated to show my disagreement to the war in Ukraine.
We need to stop that.
Feb 2022 – 2.0
KLog users: Sorry for the potential drawback but reading the news and what is just happening, I felt we need to act.
Jan 2022 - 1.8.7
- Bugfix: Removed the hamlib test from the KLog start that was causing big delays.
- Bugfix: Serial speed was not saved to config file.
- Bugfix: eQSL Uploads problem solved (Closes#406).
- Bugfix: Connection to the radios were not being done properly (Closes#407) (Closes#379).
- Bugfix: SplitCheckBox was checked when coming from Setup (Closes#377).
- Bugfix: Entering a QRZ cleared the DX Gridsquare if it was previously entered (Closes#357).
- Bugfix: Imported QSOs add the default electronic QSL send info if configured.
- Bugfix: DXCC widget shows last Entity status after modifying a QSO (Closes#412).
- Bugfix: Hamlib is now stopped while editing a QSO (Closes#414).
- Bugfix: Hamlib on serial devices works ok. (Closes#355).
- Bugfix: RST is not changed on mode change when editing. (Closes#423).
- New feature: Added a Manual Mode checkbox to disable quickly hamlib & wsjtx integration.
- New feature: Added "Save" and "Cancel" button when editing a recorded QSO.
- Update: Developers mailing list address changed to klog@groups.io (Closes#421).
Jan 2022 - 1.8.6
- Bugfix: Net rig & FLRig hamlib connections were not working propertly. (Closes#339) (TNX W5PNY)
- Bugfix: Some prefixes were not properly detected. (Closes#371) (Closes#367).
- Bugfix: Serial Hamlib rigs were not properly working. (TNX W5PNY)
- Bugfix: QRZ.com was disabled if user was not subscribed. (TNX EA5WA)
- Bugfix: QRZ.com data was not updated if the boxes were already filled. (TNX EA5WA)
- Bugfix: Callsigns formet were not always properly checked.
- Improvement: Hamlib 4.4 in binary packages (macOS & Windows) tested also in Linux.
- Improvement: RTS & DTR are defined to OFF by default in hamlib.
- Improvement:KLog differenciates QRZ.com subcribed users from non subscribed. (TNX EA5WA)
Reported by: portscout
Update the CONFLICTS definitions of ports in the following categories:
- accessibility
- archivers
- audio
- benchmarks
- biology
- cad
- chinese
- comms
- converters
An attempt has been made to use generic conflicts patterns that do not
have to be updated whenever a new version of a conflicting port is
added to the ports system.
There is a misunderstanding that the port being built/installed has to
be omitted from the conflicts pattern. This is not true - the port
being built is implicitly non-conflicting due to logic in bsd.port.mk.
Approved by: portmgr (implicit)
- Bump PORTREVISION
- archivers/peazip update to 8.4.0
- editors/cudatext update to 1.155.3
- russian/emkatic update to 0.41
- x11-toolkits/qt5pas to latest version included into lazarus 2.2.0
ChangeLog at: https://wiki.lazarus.freepascal.org/Lazarus_2.2.0_release_notes
Jan 2022 - 1.8.7
- Bugfix: Removed the hamlib test from the KLog start that was causing big delays.
- Bugfix: Serial speed was not saved to config file.
- Bugfix: eQSL Uploads problem solved (Closes#406).
- Bugfix: Connection to the radios were not being done properly (Closes#407) (Closes#379).
- Bugfix: SplitCheckBox was checked when coming from Setup (Closes#377).
- Bugfix: Entering a QRZ cleared the DX Gridsquare if it was previously entered (Closes#357).
- Bugfix: Imported QSOs add the default electronic QSL send info if configured.
- Bugfix: DXCC widget shows last Entity status after modifying a QSO (Closes#412).
- Bugfix: Hamlib is now stopped while editing a QSO (Closes#414).
- Bugfix: Hamlib on serial devices works ok. (Closes#355).
- Bugfix: RST is not changed on mode change when editing. (Closes#423).
- New feature: Added a Manual Mode checkbox to disable quickly hamlib & wsjtx integration.
- New feature: Added "Save" and "Cancel" button when editing a recorded QSO.
- Update: Developers mailing list address changed to klog@groups.io (Closes#421).
Reported by: portscout
SIP:
As mentioned in the update from sip to sip5, this is a transitional version
to remove what is deprecated in sip4.
Sip6 completely removes the deprecated parts.
Unfortunately, some ports — mostly cura things — can not use sip6, so we
reintroduce sip4.
PyQt:
At the same time, we took the opportunity to simplify PyQT and propose only one
package as for devel/pyside2. */py-qt5-* have been merged — excepted chart,
networkauth and webengine — into devel/py-qt5-pyqt.
This allows us to be in adequacy with the packages that the author of these
libraries proposes, namely:
PyQt - devel/py-qt5-pyqt
PyQt-Charts - x11-toolkits/py-qt5-chart
PyQt-NetworkAuth – net/py-qt5-networkauth
PyQt-WebEngine – www/py-qt5-webengine
SIP – devel/py-sip
py-sip - devel/py-qt5-sip
PyQt-builder - devel/py-qtbuilder
Qscintilla - devel/py-qt5-qscintilla2
Reviewed by: diizzy, kde
Tested by: kai, rhurlin, arrowd, madpilot
Approved by: makc, tcberner, kde
Differential Revision: https://reviews.freebsd.org/D33237
Exp-run by: antoine
Legend:
# info
+ new feature
- bugfix
--------------------
2.5.0 (2021-01-16)
+ 3 user defined buttons for TRX control (Saku, OH1KH)
+ TX quick split using XIT (Saku, OH1KH)
+ support of WPM changes from macros when using Hamlib keyer (Saku, OH1KH)
+ include operator's callsign in the exports (Florian, DF2ET)
+ view eQSL image from list of QSO (Saku, OH1KH)
+ button to show remote station on a map with path and direction (Florian, DF2ET)
+ buttons for adding Mode+RST_sent, Locators_propagation and user defined message to DX spot sending (Saku, OH1KH)
+ ADIF import for JS8, FT4 and PKT (Andreas, DL7OAP)
+ local oscilator configuration added (Florian, DF2ET)
+ user can spot RX freq instead of TX (Florian, DF2ET)
+ export to EDI (Florian, DF2ET)
+ separate CW keyer settings for radio1 and radio2 (Saku, OH1KH)
+ rotor controls updated (Saku, OH1KH)
+ contest filter added (Florian, DF2ET)
+ working with WSJT improved
+ Cabrillo export headers (Saku, OH1KH & Florian, DF2ET)
+ DARK DOK info support added (Florian, DF2ET & Andreas, DL7OAP)
+ Cabrillo export added (Florian, DF2ET)
+ DX cluster improved (Saku, OH1KH)
+ Add option to upload SAT status info to AMSAT status page (Florian, DF2ET)
+ Calculate SAT mode from freq and RX freq. Used in eqsl.cc upload and ADIF/HTML exports (Florian, DF2ET)
- fixes for club membership (Saku, OH1KH & Andreas, DL7OAP)
- fixes for password special characters (Saku, OH1KH)
- fixes to ADIF export rules (Andreas, DL7OAP)
- fixes to contest window (Saku, OH1KH)
- band <->frequency fixes (Saku, OH1KH)
- UTF-8 problems in ADIF (Saku, OH1KH)
- JTDX & JS8CALL fixes (Saku, OH1KH)
- typo in satellite EO-80 (Andreas, DL7OAP)
- layout fixes for QT5 compilation (Saku, OH1KH)
- filter to take fix (Saku, OH1KH)
- eQSL upload fixes (Saku, OH1KH)
- CQ monitor fixes (Saku, OH1KH)
- CW keys fixes (Saku, OH1KH)
- RBN monitor fixes (Saku, OH1KH)
- new membership files check fixed
- export to HTML and ADIF fixes (Saku, OH1KH)
- group edit fixes (Saku, OH1KH)
- filter settings fixes (Saku, OH1KH)
- QTH profile fixes (Saku, OH1KH)
- callbook database update fixes (Saku, OH1KH)
PR: ports/260066
Reported by: hellocodebsd@gmail.com
Abandonware, last release in 2003. Please consider using scp or
net/croc instead
Using zmodem protocol to transfer files isn't good practice in
2022 and there are good alternatives.
PR: 260718
0.3.4 / 2022-01-22 Fabian Kurz <fabian@fkurz.net>
* Updated Makefile for OS X (tnx David Winarsky, Jon Nall)
* Accept - for / (easier for keyboard layouts where
/ requires pressing shift - tnx DF4TS)
* F8 toggles between complete toplist or only user's own
attempts.
* Add KG7IEL's patches from (Debian #997190)
* Add word lists from Tom Mozdzen
* Handle long words better (up to 28 characters - tnx SQ6JNX)
* Add characters: . , = ? (tnx W4MSL)
Reported by: portscout
Jan 2022 - 1.8.6
Bugfix: Net rig & FLRig hamlib connections were not working propertly. (Closes#339) (TNX W5PNY)
Bugfix: Some prefixes were not properly detected. (Closes#371) (Closes#367).
Bugfix: Serial Hamlib rigs were not properly working. (TNX W5PNY)
Bugfix: QRZ.com was disabled if user was not subscribed. (TNX EA5WA)
Bugfix: QRZ.com data was not updated if the boxes were already filled. (TNX EA5WA)
Bugfix: Callsigns formet were not always properly checked.
Improvement: Hamlib 4.4 in binary packages (macOS & Windows) tested also in Linux.
Improvement: RTS & DTR are defined to OFF by default in hamlib.
Improvement:KLog differenciates QRZ.com subcribed users from non subscribed. (TNX EA5WA)
Reported by: portscout
- Some patches not needed now due to adrian@ patches sent upstream.
- Additional changes by @takefu
The distribution tarball uses patch applied to the following master branch because the build is broken.
baea7e8c9a (diff-9df9e2c313e694cf242534e90c1187fe119fac8de7c304ae438de0736209953b.patch)
The error message in build is as follows.
hamlibpy_wrap.c:48824:80: error: use of undeclared identifier 'RIG_FUNCTION_SEND_VOICE_MEM'; did you mean 'RIG_FUNCTION_SEND_MORSE'?
SWIG_Python_SetConstant(d, "RIG_FUNCTION_SEND_VOICE_MEM",SWIG_From_int((int)(RIG_FUNCTION_SEND_VOICE_MEM)));
For a complete log of changes to Hamlib, please visit:
http://sourceforge.net/p/hamlib/code/commit_browser
Major changes in 4.0 affecting usage
Most rig model numbers have changed
RIG_LEVEL_VOX has been deprecated and replaced by RIG_LEVEL_VOXDELAY
rigctl 'f' command now returns VFO argument too
rigctl 'y' and 'Y' command now take/show antenna argument and option.
range_list items are undergoing changes towards a different model TBD
RTS/DTR PTT sharing is off by default now -- use serial_share=1 option to
enable
PR: ports/261105
Reported by: takefu@airport.gm
- Some patches not needed now due to adrian@ patches sent upstream.
- Additional changes by @takefu added RIG_FUNC_SEND_VOICE_MEM from git
For a complete log of changes to Hamlib, please visit:
http://sourceforge.net/p/hamlib/code/commit_browser
Major changes in 4.0 affecting usage
Most rig model numbers have changed
RIG_LEVEL_VOX has been deprecated and replaced by RIG_LEVEL_VOXDELAY
rigctl 'f' command now returns VFO argument too
rigctl 'y' and 'Y' command now take/show antenna argument and option.
range_list items are undergoing changes towards a different model TBD
RTS/DTR PTT sharing is off by default now -- use serial_share=1 option to
enable
PR: ports/261105
Reported by: takefu@airport.gm
- Fixed FreeBSD specifc Sysctl.py code so it will no longer core
if no USB device plugged in
- changed delay in NanoVNA__V2.py since too fast for some devices
see https://github.com/NanoVNA-Saver/nanovna-saver/issues/441
Changelog
=========
v0.3.10
------
- Default Band ranges for 5 and 9cm
- Layout should fit on smaller screens
- Fixed fixed axis settings
- Show VNA type in port selector
- Recognise tinySA (screenshot only)
- Some more cables in TDR
- Reference plane applied after calibration
- Calibration fixes by DiSlord
v0.3.9
------
- TX Power on V2
- New analysis
- Magnitude Z Chart
- VSWR Chart improvements
Reported by: portscout
There have been lots of missing CONFLICTS_INSTALL entries, either
because conflicting ports were added without updating existing ports,
due to name changes of generated packages, due to mis-understanding
the format and semantics of the conflicts entries, or just due to
typoes in package names.
This patch is the result of a comparison of all files contained in
the official packages with each other. This comparison was based on
packages built with default options and may therefore have missed
further conflicts with optionally installed files.
Where possible, version numbers in conflicts entries have been
generalized, some times taking advantage of the fact that a port
cannot conflict with itself (due to logic in bsd.port.mk that
supresses the pattern match result in that case).
A few ports that set the conflicts variables depending on complex
conditions (e.g. port options), have been left unmodified, despite
probably containing outdated package names.
These changes should only affect the installation of locally built
ports, not the package building with poudriere. They should give an
early indication of the install conflict in cases where currently
the pkg command aborts an installation when it detects that an
existing file would be overwritten,
Approved by: portmgr (implicit)
Release: WSJT-X 2.5.4
Dec 28, 2021
----------------------
This is mostly a bug fix release. It has the following changes since
release 2.5.3:
WSJTX:
- Repair a defect that caused occasional crashes when in QSO with
stations using nonstandard callsigns.
Reported by: @portscout
- Removed guile as it is not needed
(From CHANGELOG.md)
All notable changes to GNU Radio will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html),
starting with version 3.7.12.0.
Older Logs can be found in `docs/RELEASE-NOTES-*`.
API is compatible with C++ code written against previous v3.8 releases.
ABI (link time) compatibility is not guaranteed. Out-of-tree C++ code
linked to previous v3.8 releases should be rebuilt against this version.
- Fix drag and drop issue with Quartz
- Fix desync when dragging block
- Update disabled blocks if they depend on others
- Allow short and byte as valid types in an enum
- Fix evaluation of interdependent variables
- Set VERSION_PATH to 0 in new modules, instead of using GIT rev
- For Python3, return correct exeption ModuleNotFoundError instead of ImportError
- New Matrix Interleaver block
- Fix "hide" expressions in yml files
- Remove unused msg output port from Chunks To Symbols block yml
- Add "shift" parameter to Log Power FFT
- Fix: tags on the last sample were not shown
- Fix: U and V channels were reversed on sink blocks
At LEAST the following authors contributed to this release.
- Adrien Michel <adriengit@users.noreply.github.com>
- David Winter <david.winter@analog.com>
- Emmanuel Blot <emmanuel.blot@free.fr>
- Håkon Vågsether <hauk142@gmail.com>
- Jared Dulmage <jared.dulmage@caliola.com>
- Jason Uher <jason.uher@jhuapl.edu>
- Jeff Long <willcode4@gmail.com>
- Marc L <marcll@vt.edu>
- Marcus Müller <mmueller@gnuradio.org>
- Martin Braun <martin@gnuradio.org>
- Ron Economos <w6rz@comcast.net>
- Volker Schroer
From [1]
What's this?
This is a set of git repositories based on the last public
commits available for Qt 5.15 branches with a curated collection
of patches on top to ensure open source products can be used
comfortably until users transition to their Qt 6-based ports.
Which patches does it include?
This collection of patches includes patches that fix at least
one of the following:
* Security issues
* Crashes
* Functional defects
We only include patches that have been approved upstream in the
Qt project. If a patch cannot be merged upstream for technical
reasons (e.g. the class no longer exists), it can also be
merged.
The patches to merge will be decided based on their relevance
towards Open Source products and their viability.
PR: 260548
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D33446
[1] https://community.kde.org/Qt5PatchCollection
- Repair a longstanding regression that caused signal reports from
tail-ended Tx2 messages to be omitted from logged information
- Parse "dx-call-1 RR73; dx-call-2 <de-call> +nn" messages (i3=0,
n3=1 DXpedition mode) in regular 77-bit modes
- Repair a regression associated with setting the main window width
on program startup.
- Repair a problem with Q65 decodes of type 'q3' for messages of the
form "<Call_1> Call_2"
- Execute code associated with Q65 decodes of type 'q5' only when the
Max Drift control is set to 50. This fix prevents
double-incrementing of the message averaging counter on the first
decoding sequence.
- Polarization offset 'Dpol' from the astronomical data window is now
written to file azel.dat if environment variable
WSJT_AZEL_EXTRA_LINES has been defined as 1 or greater. Dpol is
especially useful for EME on the higher microwave bands.
- The Auto Log QSO option in "Settings->Reporting" now behaves the
same as the Prompt to log QSO option when not in a special
operating context mode.
- The Fast/Normal/Deep setting in Q65 mode is now a sticky setting
and is no longer reset to Fast on program startup or when Settings
has been opened. The user selection is used for automatic decodes,
but Deep is used for any subsequent manual decode attempts.
- New hamlib code to correct minor flaws in controlling several rigs.
- Update the Chinese and Hong Kong translations of the user
interface.
PR: ports/260618
Reported by: hellocodebsd@gmail.com
Major changes:
* Added noise stats, autolevel, and squelch (#1763)
* Added automatic file format detection from filename
* Added support for SmartFire Proflame 2 remote control (#1905)
* Added support for Lacrosse TX34 rain gauge (#1890)
* Added support for Telldus-FT0385R (#1841)
* Added support for GE Choice Alert wireless alarm sensors (#1768)
* Added support for Porsche Boxter/Cayman TPMS
* Added support for Funkbus/Instafunk (#1896)
* Added support for Truck TPMS (#1893)
* Added support for LaCrosse LTV-W1 wind sensor (#1855)
* Added support for Auriol 4-LD5661 temperature/rain sensor (#1843)
* Added support for Linear Megacode Remote (#1834)
* Added support for EnOcean ERP1 decoder (#1829)
* Added support for Acurite-01185M (#1824)
* Added support for ATech-WS308 temperature sensor (#1605)
* Added support for RainPoint sensor (#1781)
* Added support for Inkbird ITH-20R
* Added support for Clipsal CMR112 cent-a-meter power meter (#1814)
* Added support for Govee Water Leak Detector H5054 and Govee Contact Sensor B5023 (#1653)
* Added support for Markisol curtain remote (#1775)
* Added support for Oregon Scientific BTHR918 (#1767)
* Added UV index add decimals to Bresser-7in1 (#1789)
* Changed InfluxDB output of 'mic' from field to tag (#1773)
* Added biastee, digital_agc, direct_samp, offset_tune option for rtlsdr and rtl_tcp (#1788)
* Added QoS to MQTT option
Full changelog: https://github.com/merbanan/rtl_433/releases/tag/21.12
ChangeLog: https://github.com/Xastir/Xastir/releases/tag/Release-2.1.8
While here:
* Remove gettext and python from USES. The port doesn't used them anymore.
* Remove comment
* Move patch to .am file instead of generated .in file
* Remove sparc64 patch (architecture is UNSUPPORTED in 13 and above)
* Add USES=autoreconf
This last item allows us to bypass bootstrap.sh. The language preprocessing is
already done in the config directory so there is no need to do it as a bootstrap
step.
PR: 259669
Reported by: russo@bogodyn.org (xastir developer)
Approved by: carl@stagecraft.cx (maintainer, timeout > 1 month)
The pyserial distribution includes a handy tcp/serial port bridge
script called tcp_serial_redirect.py. Add an EXAMPLES option to
install this (along with other pyserial example scripts).
PR: 260328
Approved by: sbz (maintainer timeout, 18 days)