Notes from go help modules:
If GOPROXY is set to the string "direct", downloads use a direct connection to
source control servers. Setting GOPROXY to "off" disallows downloading modules
from any source. Otherwise, GOPROXY is expected to be list of module proxy URLs
separated by either comma (,) or pipe (|) characters, which control error
fallback behavior. For each request, the go command tries each proxy in
sequence. If there is an error, the go command will try the next proxy in the
list if the error is a 404 or 410 HTTP response or if the current proxy is
followed by a pipe character, indicating it is safe to fall back on any error.
The GOPRIVATE and GONOPROXY environment variables allow bypassing
the proxy for selected modules. See 'go help module-private' for details.
No matter the source of the modules, the go command checks downloads against
known checksums, to detect unexpected changes in the content of any specific
module version from one day to the next. This check first consults the current
module's go.sum file but falls back to the Go checksum database, controlled by
the GOSUMDB and GONOSUMDB environment variables. See 'go help module-auth'
for details.
Reviewed by: dmgk
Sponsored by: SkunkWerks, GmbH
Differential Revision: https://reviews.freebsd.org/D26860
Remove broken options available in the past as additional patches provided
by the project and merged in the latest releases as part of the main source.
time-limit merged in 3.2.3 (6 Aug 2020)
Added the --stop-after=MINS and --stop-at=DATE_TIME options (with the --time-limit=MINS option
accepted as an alias for --stop-after). This is an enhanced version of the time-limit patch
from the patches repo.
atimes merged in 3.2.0 (19 Jun 2020)
Added the --atimes option based on the long-standing patch (just with some fixes that the patch
has been needing).
acls merged in 3.2.0 (19 Jun 2020)
Added the --atimes option based on the long-standing patch (just with some fixes that the patch
has been needing).
Since those options are not activated by default, and if so, breaks the build,
no PORTREVISION bump is required.
PR: 250998
Submitted by: Zoltan ALEXANDERSON BESSE <zab@zltech.eu>
The the order of fields in the namecache struct changed in stable/12
(r363891) and head (r367338); this definition is not public so lsof
has it's own copy that needs to be conditionally adjusted accordingly.
PR: 250916
Approved by: ler (maintainer)
The eponymous server and application monitoring agent from DataDogHQ.com
Additional agent integrations will be submitted in a further port.
PR: 208561
Submitted by: Uros Gruber <uros@gruber.si>
Sponsored by: SkunkWerks, GmbH
Differential Revision: https://reviews.freebsd.org/D27182
This port is broken in 12.2 and 11.4, but not in 12.1 or 13-current. The problem
is the old mail/cclient doing things like redefining C++ keywords.
Workaround this by building with GCC in those releases where it is broken.
PR: 250740
Submitted by: colin@fbug.ksac.uk
Tuesday, 10 November 2020.
Today KDE releases a bugfix update to KDE Plasma 5, versioned 5.20.3 Plasma
5.20 was released in October 2020 with many feature refinements and new modules
to complete the desktop experience.
This release adds a fortnight’s worth of new translations and fixes from KDE’s
contributors. The bugfixes are typically small but important and include:
* Plasma Disks: Actually erase devices.
* Plasma Network Management: Do not show absurdedly high speeds on first update.
* Fix missing “Switch User” button on lockscreen with systemd 246.
Announcement:
https://kde.org/announcements/plasma-5.20.3/
Fix linking:
cc -L/usr/local/lib -lsysctlmibinfo2 -lmenu -lncurses mixertui.o -o mixertui
/usr/bin/ld: undefined reference to symbol `stdscr' (try adding -ltinfo)
/usr/local/lib/libtinfo.so: could not read symbols: Bad value
This fixes buildkernel when the SOURCE option is turned on:
===> drm-current-kmod (all)
--- all_subdir_drm-current-kmod/linuxkpi ---
===> drm-current-kmod/linuxkpi (all)
make[4]: make[4]: don't know how to make dma-resv.c. Stop
Approved by: manu
Traceback (most recent call last):
File "/usr/local/bin/ssh-audit", line 10, in <module>
from ssh_audit.ssh_audit import main # noqa: E402
ModuleNotFoundError: No module named 'ssh_audit'
Most of the time, we use grep in a test, where its return value is
important. In this instance, it is only used for filtering, and we do
not care about its return value, so ignore it.
PR: 250723
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D27007
set pipefail changes the pipeline return status from being the return
status of the last command to the last non 0 exit status of any command
in the pipeline. This is needed to make sure all the commands in a
pipeline did actually return a non 0 status and not only the last one.
PR: 250723
Exp-run by: antoine
Reviewed by: bapt
Approved by: bapt
Differential Revision: https://reviews.freebsd.org/D27007