Upgrade to the latest major vesrion of Node.js. Regenerate patches
since some have been adopted upstream, while others needed refreshing.
https://nodejs.org/en/blog/release/v17.0.0/
MFH: 2021Q4
Sponsored by: Miles AS
Removed CVS, GUI, PERFORCE and SUBVERSION options and also gui and svn
FLAVORS, and create 4 new subports:
devel/git-cvs
devel/git-gui
devel/git-p4
devel/git-svn
All these packages depend of devel/git and install only additional files
and manpages. This work is based on initial patch submitted by grembo@i
at review D30238.
PR: 251090
Sponsored by: Rubicon Communications, LLC ("Netgate")
Differential Revision: https://reviews.freebsd.org/D32369
- Removed flavoring, upstream dropped gtk2 support, so the ports
are now gtk3 only
- Removed geany-plugin-multiterm that is gtk2 only and cannot work
with gtk3 only geany
- Use https scheme for main master site
* Add Long Term Support release of ClamAV
* Add CONFLICTS_INSTALL to security/clamav
* Add entry to UPDATING that explains
- Upstream changed their end-of-life policy and LTS release is
introduced
- How to switch from regular release (security/clamav) to LTS
release (security/clamav-lts)
Note about setting PORTEPOCH
In general new port should not set PORTEPOCH. But in this case it
should be set with following reason.
1. Recently upstream changed their end-of-life policy as following.
- Regular feature release (= 0.xyz.0 release) is released more
frequently, and life time of each feature release is shortened to
about 4 months.
- To compensate for the short lifetime of regular feature release,
Long Term Support feature release is introduced and its life time
is about 3 years.
2. First LTS starts with version 0.103.3 and it is same as current
version of security/clamav.
3. Because of short lifetime of regular feature release, it is
probable that not a few users of security/clamav want to switch to
security/clamav-lts after the latter is connected (and the former
is updated to 0.104.0).
3. For such users the entry is added to UPDATING about how to switch
from security/clamav to security/clamav-lts. And binary package
user is suggested to execute
`pkg set -o security/clamav:security/clamav-lts`. This command
changes the origin of already installed clamav packages. So user
can switch to LTS version without reinstalling.
4. But if PORTEPOCH isn't set in security/clamav-lts, binary package
user who executed above command will notice that version of
installed package (0.103.3,1) succeeds to current version of
security/clamav-lts (0.103.3). The situation doesn't change after
new patch release (0.103.4 for example) is released and it causes
the problem that installed package isn't properly upgraded with
`pkg upgrade`.
5. So PORTEPOCH is set in security/clamav-lts to prevent binary
package user from suffering from such problem.
To make it possible to easily import py-pyjwt v2.x move the current port
to a versioned directory. Bump consumers after rename of the dependency.
PR: 254038
It's not possible to restrict setuid bit to "video" group without also
breaking compositor nesting (e.g., hikari on sway). So, leave setuid
handling to a dedicated executable. seatd-launch works similar to
ck-launch-session by starting the daemon on demand.
Existing OPTIONs pull in too many dependencies -- Eigen is a template
library and doesn't **need** any of the libs -- and are overly-specific,
like requiring a particular BLAS implementation.
PR: 257321 251842
Reported by: alt2600@icloud.com
Upgrade from 3.2.x to 3.3+ requires generating a new setup hash.
The post-ugprade visit to setup.php will walk you through this.
Other changes:
-XMLRPC support is moribund, so drop it from USE_PHP
-Virtual vacation scripts are now optional, making building without
perl5 possible
-Optionally add imap to USE_PHP module for completeness
-Default options changed for maximal out-of-the-box support
PR: 257845
- To make it possible to easily import mlt-7 move the current port to
a versioned directory.
- Add Mk/Uses/mlt.mk to make it easily possible to depend on a given mlt
version:
USES=mlt:6
will get you a dependency on multimedia/mlt6, while
USES=mlt:7
will get you a dependency on the soon to be added multimedia/mlt7
- Switch the port to use cmake as a build system
- While here, provide some more options to make it possible to have
a leaner package if required
- Bump consumers after rename of the dependency
-pe keysym-list doesn't work in 9.26. Upstream is aware of this and say
it'll be fixed in the next release.
PR: 257146
Reported by: Mason Loring Bliss <mason (at) blisses.org>
QtChooser allows you to select your version of Qt among those installed.
However, this tool is no longer supported upstream and will not be
available for Qt6.
By default, our Qt installations are done in
${LOCALBASE}/lib/qt${QT_VERSION} as recommended.
We have added symbolic linking for the main binaries to
${LOCALBASE}/bin with the suffix -qt5.
- copy openhab2* to openhab (follow upstream)
- update to 3.0.2
- remove update script (no auto migration from v2, scrip may come back
later, if needed)
- use openhab instead openhabvX directories (follow upstream)
- use openjdk 11 (new requirement)
- add UPDATING entry for users which may want to switch to v3
This update adds a new plugin installer and removes the web based installer.
- Update to g20210423 (e8f78181f).
- New config.php syntax.
- Removeal of web installer.
- New web based plug installer.
- web plugin installer requires git.
- pkg-message changes due to web installer removal.
- ttrssd update to handle database schema upgrades.
- ttrssd use daemon and cleanup.
- UPDATING for config.php changes.
- pkg-plist cleanup.
PR: 255476
Reported by: Derek Schrock (maintainer)
Differential Revision: <https://reviews.freebsd.org/D30030>
PostgreSQL 13.3, 12.7, 11.12, 10.17, and 9.6.22 Released!
The PostgreSQL Global Development Group has released an update to all supported
versions of our database system, including 13.3, 12.7, 11.12, 10.17, and
9.6.22. This release closes three security vulnerabilities and fixes over 45
bugs reported over the last three months.
Security fixes in this release:
CVE-2021-32027: Buffer overrun from integer overflow in array subscripting
calculations
CVE-2021-32028: Memory disclosure in INSERT ... ON CONFLICT ... DO UPDATE
CVE-2021-32029: Memory disclosure in partitioned-table UPDATE ... RETURNING
Also plenty of bug fixes. See the release note for details.
Changes to the port:
Make sure we use the matching version of llvm. This fixes a problem with the
llvm version string not being monotonically increasing with the version
number. [1]
Better pkg message about checksums for postgresql 12+. [2] [4]
Adjust login class parameter to adhere to the documentation in rc.subr(8) [3]:
The rc.conf parameter for the login class of the postgresql daemon has
changed name from postgresql_class to postgresql_login_class, since
rc.subr(8) states that the parameter should be named ${name}_login_class.
Allow parallel builds. [5]
Correct the directory name for the user postgres in pkg message. [6]
PR: 250824 [1], 253558 [2], 236060 [3], 233106 [4], 230656 [5]
PR: 226674 [6]
Submitted by: Michael Zhilin [2], Michael Zhilin [3], Dmitry Chestnykh [4]
Submitted by: Steve Wills [5], knezour [6]
Security: 76e0bb86-b4cb-11eb-b9c9-6cc21735f730
Security: 62da9702-b4cc-11eb-b9c9-6cc21735f730
Release notes: https://www.postgresql.org/docs/release/
Some ports, which use PYTHON_PKGNAMESUFFIX for their package name (e.g.
devel/scons), must also be taken into account when portmaster is used.
PR: 255663
Reported by: nork@ninth-nine.com, Rozhuk Ivan
Postfix 3.6 requires minimum OpenSSL 1.1.1,
this port is an alternative for FreeBSD 11 users using
'OpenSSL base' and will be removed if FreeBSD 11 is EoL
This commits switches the port from using TTF files to using TTC files.
As a result, the default package is no longer over 4 GB,
but 1.6 GB instead. The downside is that options of the port are less
granular now.
Changes: https://github.com/be5invis/Iosevka/releases/tag/v6.0.1
Add appropriately adapted upgrading instructions that have resulted
from the experience gained from the previous (Python 3.6 to 3.7)
switchover.
PR: 253815
Upgrade to the latest major vesrion of Node.js. Regenerate patches
since some have been adopted upstream, while others needed refreshing.
https://nodejs.org/en/blog/release/v16.0.0/
Sponsored by: Miles AS
Bundled readline now will use LOCALBASE/etc/inputrc as its ultimate
default inputrc file (instead of /etc/inputrc). This puts these ports in
line with what devel/readline has been doing recently (since 20210103).
PR: 255126
Submitted by: olivier.freebsd@free.fr
Thanks to work by scf, the caddy rc(8) script has been completely
rewritten and substantially improved, though this necessitated
changing all runtime locations.
Most importantly:
- The runtime log now lives in /var/log/caddy/ instead of /var/log,
so that the logdir can be null-mounted
- Automatic SSL certs are now stored in /var/db/caddy/data/caddy,
instead of /root/.local/share/caddy
Caddy uses freedesktop.org's XDG base dir specification, which
conflicts quite spectacularly with FreeBSD's hier(7). The most
sensible thing to do was to put the runtime data stores into
/var/db/caddy, though XDG needs XDG_DATA_HOME and XDG_CONFIG_HOME
to be separate dirs and caddy will create a .../caddy subdir in
each of them.
- Old VirtualBox OSE 5.2.44 preserved as "-legacy" versions of the
ports (repocopied)
- Add back extra patch removed in r528258, actually required to
build DEBUG kmod
- Correctly define WITH_DEBUG when enabling the DEBUG option, so
binaries are not stripped
Please note that this new version supports only amd64 CPUs. If you need
to use older hardware please install the legacy ports.
Note that moving VM snapshots across major updates is unsupported, it's
strongly suggested to properly shutdown VMs before upgrading, please
check UPDATING for further details.
This update is the result of work from many people, and thanks to all
who gave feedback and tested things.
Patch based on work from: Mario Lobo <lobo@bsd.com.br> and jkim.
PR: 234878
Submitted by: kunda <chitty_cloud@me.com>
Approved by: vbox (implicit)
Reviewed by: decke
Tested by: jwb,
martin ilavsky <ilavsky.martin@gmail.com>,
Mario Lobo <lobo@bsd.com.br>
Relnotes: https://www.virtualbox.org/wiki/Changelog-6.1
Differential Revision: https://reviews.freebsd.org/D28871
Unmark BROKEN, generate patches for the bits (duplicate symbols) that
broke the build, (these have been submitted upstream), massage messages
and such. Changing version **DOES** mean that you can't connect to
older servers, so include UPDATING to try to avoid people losing
games (killed by pkg upgrade is so much more disheartening than
killed by a Greater basilisk).
Reported by: linimon
Major changes:
- Changed the config format from ini to TOML
Make sure to update your config file accordingly[1].
- Expose volume trough dbus
- Add an option to disable dbus
Introduce two temporary patches to :
- Fix panic reported in upstream bug system #719[2] - fixed in future
- Fix compilation issue with FreeBSD (Merged after 0.3.0[3] release)
[1] https://github.com/Spotifyd/spotifyd/blob/master/docs/src/config/File.md
[2] https://github.com/Spotifyd/spotifyd/issues/719
[3] a352eab53e
PR: 251968
Submitted by: <nick.rozhkov@gmail.com>
* Prune obsolete update instructions/notes for NetBox releases prior 2.7.
Notable changes since 2.9.11:
It contains many bugfixes/enhancements and the following new features:
* Route Targets
* REST API bulk deletion
* REST API bulk update
* Reimplementation of custom fields
* Improved cable trace performance
https://github.com/netbox-community/netbox/blob/v2.10.3/docs/release-notes/version-2.10.md
Upstream announce: https://xfce.org/about/news/?post=1608595200
This XFCE release dropped support for GTK2 plugins and also dropped
GTK2 from all components.
WARNING: please check UPDATING before upgrading your packages. In
case of problems also read the libexo pkg-message.
Due to this some panel plugins and libraries will be removed since
they cannot compile anymore:
- print/xfce4-print
- x11/xfce4-quicklauncher-plugin
- x11/xfce4-wmdock-plugin
- x11-toolkits/libxfce4gui
These further components also fail to build or work and are being
marked BROKEN, deprecated and marked for removal:
- science/xfce4-equake-plugin
- x11/xfce4-embed-plugin
- deskutils/orage
- deskutils/xfce4-volumed [1]
deskutils/xfce4-notes-plugin will be also marked BROKEN, but there
is active development in it's upstream repository and a fixed release
is expected soon.
deskutils/xfce4-generic-slider will also be marked broken, since
it fails to compile. [2]
Thanks also to riggs, Olivier Duchateau <duchateau.olivier@gmail.com>
and the people in Approved and Reviewed lines below for help and
contributions.
Reviewed by: woodsb02
Approved by: sergey.dyatko@gmail.com (maintainer) [1],
ehaupt [2]
Differential Revision: https://reviews.freebsd.org/D27846
- Update COMMENT and pkg-descr from upstream
- Drop py- suffix because standalone and only for default python
- Drop out-of-date "Created by": everything changed since r321564
- Drop PORTEPOCH as package name changed
- Sort variables
* Under the hood runs Chromium 83.0.4103.122 with security fixes up to
version 86.0.4240.183 and patches were taken from r540991 of www/chromium.
* Also adjust some patches to avoid hardcoding of ${LOCALBASE} and remove a
redundant blank line.
Changelog:
* [QTBUG-84632] Warn about QtWebengineProcess launching from network share
on Windows.
* [QTBUG-85363] Handle non-ASCII names for PulseAudio
* [QTBUG-85494] Fix regression crash when not handling
QQuickWebEngineNewViewRequest
* [QTBUG-85817] Fix crashes on resize
* [QTBUG-86672] Fix remapped menu key being mapped back to menu key
* [QTBUG-86945] Fix crash when opening a PDF in debug build on windows.
* [QTBUG-87129] Mention node.js build-time dependency
* The QtWebEngineProcess now has a version number
* The old compositor has been removed and can no longer be restored using
command line argument.
Approved by: tcberner (kde)
Differential Revision: https://reviews.freebsd.org/D27587
* Limit the version ranges of the required Python packages and use very
narrow ranges for those ones, which often cause regressions.
That is because upstream already uses fixed Python package dependencies
for a while and had relaxed them for a short period of time.
However, because it led to regressions when some Python packages were
updated during that time, upstream has been using fixed package
dependencies again since then.
Changelog since 2.7.12:
It contains many bugfixes/enhancements and the following new features:
* Object-Based Permissions
* Background Execution of Scripts & Reports
* Named Virtual Chassis
* Changes to Tag Creation
* Dedicated Model for VM Interfaces
* REST API Endpoints for Users and Groups
* Remote Authentication Support
* Plugins
https://github.com/netbox-community/netbox/blob/v2.8.9/docs/release-notes/version-2.9.mdhttps://github.com/netbox-community/netbox/blob/v2.8.9/docs/release-notes/version-2.8.md
Update to the latest major release of Node.js, which includes many
significant changes. Users are encouraged to read the release notes
before upgrading.
https://nodejs.org/en/blog/release/v15.0.0/
While here, refresh existing patches with `make makepatch`, removing
some powerpc* related patches that have been adopted/reworked upstream
in V8.
Remove the dependency on dns/c-ares and use the bundled version
instead, since Node.js has adopted a change to c-ares that has not yet
been released. The dependency will be re-added once dns/c-ares has
been updated to a release that contains support for CAA DNS records.
An UPDATING entry has also been added to include a notice about this
major version upgrade, and steps users can take to continue using the
v14.x line, which is now LTS.
Sponsored by: Miles AS
Update to 20.2
Move graphics/libxatracker to graphics/mesa-gallium-xa
Remove VAAPI and VDPAU options in mesa-libs in favor of
two new ports : mesa-gallium-va and mesa-gallium-vdpau
Bump needed llvm to llvm10
Change a lot of meson option from false to disabled as it's
deprecated.
Remove the drm and surfaceless platform from mesa* as it's always
enabled now.
Add zstd option, used for shader cache.
Reviewed by: x11 (zeising@)
Differential Revision: https://reviews.freebsd.org/D26682
- Assume maintainership
- Drop coreutils from dependencies; tenshi works fine now with FreeBSD tail
- Get tarballs from to GitHub; this is where upstream moved
- Install configuration files in upstream default location
Authors: CH = Corey Halpin, MA = Matthias Andree
- fetchmail's rc script now queries the daemon interval from the
configuration, and falls back to the rc.conf value if given. [CH]
- Similarly, the logging facility will be taken from the configuration [MA]
- Add documentation to the rcfile's header comments. [MA]
- Drop support for fetchmail_home_prefix in rc.conf, and query the
respective users' home directories with getent instead. [MA]
- In the rc scripts, redirect input from /dev/null so it will not ask
for passwords. [MA]
- Add support for the typical 12.1 rc.conf ${name}_... keywords. [MA]
- Make script execution easier to follow by simplifying if...else logic. [CH]
- Fix rcscript's exit code to be 1 if one of the per-user calls fails. [CH]
- Add relevant notes to UPDATING. [MA]
PR: 249860
Submitted by: Corey Halpin (maintainer)
Reported by: Chris James (on fetchmail-users mailing list)
Approved by: Corey Halpin (maintainer)
syslog_ng_flags and syslog_ng_pidfile respecively, making them
consistent with the rest of the ports tree.
PR: 249984
Submitted by: Boris Korzun <drtr0jan@yandex.ru>
Reviewed by: Peter Czanik (syslog-ng upstream)
In UPDATING, all sections which contain "database/..." instead of "databases/..." in the 'AFFECTS:' line, utilities like 'pkg updating' can't automatically display those sections.
The postgresql sections in particular have information that would be useful for casual use of "pkg updating". One work-around, of course, is to use "pkg updating database/postgresql"
While here, also correct some more occurrences.
PR: 249881
Submitted by: rhurlin
Reported by: Keith White <kwhite@site.uottawa.ca>
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D26557
7.2 does not receive any bugfixes anymore. Also the security fixes will
end at 2020-11-30.
Since PHP 7.3 will only receive bugfixes for the next 2 month, we
switch directly to 7.4
PR: 248074
Sponsored by: Bounce Experts
Please refer to the 20200811 UPDATING entry when upgrading
dependent (*-emacs26-*) ports.
Port changes:
- depend on math/gmp
- match upstream by turning CAIRO, HARFBUZZ, and JSON options and on and
turning MAGICK off by default
- remove OPENMP check for graphics/ImageMagick as the openmp is now
included in base
- update EMACS_VER in Mk/Uses/emacs.mk
- bump USES=emacs ports or remove BROKEN for net-im/jabber.el and
deskutils/howm, which now build
Submitted by: HIROSE Yuuji <yuuji@gentei.org> (canna patch)
Reviewed by: ashish
Differential Revision: https://reviews.freebsd.org/D23966
HEADS UP: See UPDATING for changes affecting your upgrade.
New installs not affected.
This patch adds a new rc_variable: librenms_daemonflags
The -T option is gone as that will force a log to syslog, doubling up on log
entries.
A new APP_LOG setting has been added to the .env file. Please update and
move your logs. See UPDATING.
PR: 246598
Submitted by: Dries Michiels <driesm.michiels@gmail.com>
instead of from /etc.
Document this change in UPDATING and provide a migration strategy.
PR: 247934 (based on)
Submitted by: Michael Osipov <michael.osipov@siemens.com>
There are some reports about PHP crashes, when using php-imap
(especially with OpenSSL and TSL 1.3). All this problems went away,
when using the panda-cclient instead of the old cclient.
Therefore we make the panda-cclient the new default,
but still allow cclient in order to allow backwards compatibility.
Special thanks to bofh for figuring out the complex details and
the solution!
Special thanks to Jason for being patience and
helpful about so many months!
Reported by: Jason de Cordoba <jason@aventia.pw>
Reviewed by: bofh
Sponsored by: Bounce Experts
Give time to users to change their env
The new port is the successor, it supports milter feature and its
config file is in another path.
PR: 244424
Submitted by: Yasuhiro KIMURA <yasu@utahime.org> (maintainer)
Update converters/libiconv to 1.16.
This update removes the extra patches for CP932 and EUCJP-MS, as they are
not compatible with this release.
Add an UPDATING entry for this change.
ABI/API stable, no need to bump dependent ports:
https://abi-laboratory.pro/index.php?view=timeline&l=libiconv
PR: 240954
Submitted by: Yuichiro NAITO
Exp-run by: antoine
Approved by: maintainer timeout (gnome@)
PORTVERSIONs are the dates of the latest commits on the respective
stable branches.
Deprecate devel/libphutil, as all of its functionality has
been moved into arcanist and phabricator by upstream and
the library has been fully deprecated.
- Update to 0.0.20190416
- Make portclippy happy
- Provide instructions to prevent pidgin from being autoremoved during update
PR: 244924
Submitted by: tobias.rehbein@web.de
Approved by: mizhka@gmail.com (maintainer), ehaupt (mentor)
Two new options
* PYPOLLER - default, deprecated, needs Python 2.7
* PYSERVICE - Dispatcher service, recompile required
HEADS UP HEADS UP
Polling via cron job is now deprecated. Please use the Dispatcher.
LibreNMS will be dropping support for PHP 7.1 and Python 2 in the next release
expected May 31 2020. see https://community.librenms.org/t/dropping-support-for-php-7-1-and-python-2/11851
Your existing crontab entries for the PYPOLLER option will be going away.
You can migrate to the PYSERVICE option of LibreNMS now.
PR: 246105
Submitted by: Dries Michiels <driesm.michiels@gmail.com>
- Create sysutils/ansible28 from sysutils/ansible
- Set EXPIRATION_DATE to 20200530 for ansible23 ansible24 ansible25 and
ansible26 as they are no longer maintained by upstream
- Bump ansible23 ansible24 ansible25 ansible26 and ansible27 for CONFLICTS
with ansible28
PR: 241734
Submitted by: ncrogers@gmail.com
Approved by: portmgr (maintainer-timeout)
- Change LICENSE to BSD2CLAUSE from BSD4CLAUSE
- Utilizes UID and GID irrd for 252
- Take MAINTAINERSHIP
- Mentioned in UPDATING
- Both irrd-legacy and irrd can bes installed and run concurrently
Approved by: ume (private mail)
Fontconfig 2.13.1 generated .uuid files in the fonts directory which where
not properly registered to the packages. To clean them up, please execute the
following command:
find %%LOCALBASE%%/share/fonts -type f -name .uuid -delete
By switching to this RC, the dependency on libuuid can be droped again, and the
issue of registering uuid is moot.
PR: 239167
Exp-run by: antoine
Submitted by: lightside <lightside@gmx.com>
MFH: 2020Q2
x11/libxkbcommon was switched to use evdev rules in r528813, but FreeBSD 11
still needs the legacy rules. Switch back to the legacy rules, but only on
FreeBSD 11.
Adjust the UPDATING entry to indicate that the switch to evdev rules by
default is only on FreeBSD 12 and later, and that FreeBSD 11 still uses the
legacy rules.
- qca-2.3 drop support for OSSL<1.1
- copy devel/qca to devel/qca-legacy which is held at the current version
- update devel/qca to 2.3
- Add Uses/qca.mk which handles dependency on either of the ports depending on
the FreeBSD version
Users on FreeBSD11 must therefore change their pkg orign à la:
pkg set -o devel/qca:devel/qca-legacy
PR: 244682
Exp-run by: antoine
Reviewed by: arrowd
Differential Revision: https://reviews.freebsd.org/D24042
Switch x11/libxkbcommon to use evdev rules rather than legacy rules by
default, to improve support for keyboards when using evdev.
For users using the legacy configuration, or running xorg on FreeBSD 11,
please consult UPDATING for instructions in case of issues.
PR: 244354 [1]
Submitted by: jbeich (fix)
Reported by: Patricio Villar [1]
Differential Revision: https://reviews.freebsd.org/D23860
Change the default mesa configuration to use DRI3 rather than the older DRI2
interface. This should improve performance somewhat, and alleviates the need
for the FIXDRM option in x11-servers/xorg-server.
Remove the FIXDRM option from x11-servers/xorg-server.
Add an UPDATING entry for the change.
For users of graphics/drm-legacy-kmod or the base graphics drivers, this might
cause regressions. If you experience problems when running OpenGL applications
please force the use of the DRI2 backend by setting the LIBGL_DRI3_DISABLE
environment variable to 1 before starting any OpenGL application. This is
easiest done by adding it to your shell startup file or .xinitrc.
Add UPDATING entry for xorg-server, detailing the change of device
configuration backend.
PR: 196678, 244306 (for tracking)
- Use Lua 5.2 and drop support for the dead LuaJIT.
- Explicitly state all required configure options
as the "freebsd" preset has some of them wrong.
- Do not install the example certs as they clutter the
config directory and nobody should ever use them.
They can be recreated with prosodyctl if needed.
- Remove the broken "daemonize" option from the rc script,
handle all actions with "prosodyctl" instead.
- Change data directory from /usr/local/var/lib/prosody to
/var/db/prosody and include instructions in UPDATING
- Install the prosody migrator
- Use arc4random
PR: 241619
Submitted by: thomas@beingboiled.info
Reviewed by: lx (maintainer), Sascha Biberhofer <ports@skyforge.at>
Approved by: lx (maintainer timeout)
* Remove the "post-patch" target because the "requirements.txt" is only used
for installations via devel/py-pip.
Notable changes since 2.6.12:
* Bulk import of device components via CSV files
* External file storage support (FTP, S3, SFTP, etc.)
* Rack elevations rendered by SVG (= Scalable Vector Graphics)
* Separate configuration for Webhooks and Cache databases via Redis
* Add ability to clone objects (pre-populate form fields)
* Toggle config context display between JSON and YAML
* Add support for Redis Sentinel
* Further cable and port types
* Many other enhancements and bugfixes
https://github.com/netbox-community/netbox/blob/v2.7.7/docs/release-notes/version-2.7.md
Improve the xorg-server entry a bit, add a note about needing
xf86-input-libinput and x11/libinput, since they seem to not always be
installed when people have custom configs or options.
From jbeich:
This appeared after r78824 which failed to adjust do-install. Arch, Debian,
Gentoo, OpenBSD use include/nss/, Fedora uses include/nss3/, NetBSD/PkgSrc
uses include/nss/nss/.
PR: 243835
Reviewed by: jbeich
Differential Revision: https://reviews.freebsd.org/D23424
When python is built with DEBUG, vim fails to build. In fixing this
case, note that vim will now fail to build if python or vim is build
with DEBUG and the other isn't.
This also highlighted that python support is being kludged. The
PYTHON2 and PYTHON3 options have been combined into a single PYTHON
option that builds with the default python. Consequently, it is no
longer possible to build vim with both py2 and py3 support. I can't
name any modern high-usage python-based plugin that requires 2.7,
so hopefully this only messes up things for a very small minority.
Thanks to koobs for the prompt to combine these options. I've been
wanting to do this for a while now.
PR: 243606
Submitted by: novel
- The spc plugin was removed inflavor for the gsm plugin.
- Added in tree qt plugin.
Changelog: https://gstreamer.freedesktop.org/releases/1.16/#1.16.2
Update net-im/fractal to 4.2.2 to support GStreamer 1.16 (approved by maintainer)
Thanks to antoine@ for the exp-run.
PR: 239386
This update includes an Emacs major version change from 27.0.50 to 28.0.50.
Ports that may depend on editors/emacs-devel must chase this update
with a PORTREVISION bump.
Submitted by: ashish (maintainer)
Differential Revision: https://reviews.freebsd.org/D23012
From ChangeLog: https://freeshell.de/~mk/projects/dsbmd-relnotes.html
* The fuse daemon to mount MTP devices has been changed to sysutils/fusefs-jmtpfs
(Entry added in UPDATING)
* The environment variables DSBMD_USB_UNIT and DSBMD_USB_ADDR has been added which
can be used by commands in dsbmd.conf
PR: 242888
Submitted by: mk@nic-nac-project.org (maintainer)
* Convert the RUN_DEPENDS into separate OPTIONS as they are listed as extra
dependencies in setup.py. Also set those as default that contain the
previous RUN_DEPENDS to allow a clean transition.
* Remove the Python-specific version limitation for security/py-certifi
because it's required for all Python versions.
* Also remove the info about the broken IPv6 support of net/py-socks (was
broken in 1.5.7) and the relevant patch as both are obsolete.
* Update the TEST_DEPENDS and add a "do-test" target to make future QA easier.
Please note that a MFH won't be done as it didn't get an approval because
there are too much changes to make it work in the 2019Q4 branch. [1]
Notable changes since 1.22:
* Require and validate certificates by default when using HTTPS.
* Add mitigation for BPO-37428 affecting Python < 3.7.4 and OpenSSL 1.1.1+
which caused certificate verification to be enabled when using
"cert_reqs=CERT_NONE".
* Add TLSv1.3 support to CPython, pyOpenSSL and SecureTransport "SSLContext"
implementations.
https://github.com/urllib3/urllib3/blob/1.25.6/CHANGES.rst
Exp-run by: antoine
PR: 229322 [1]
Reported by: Patrice Clement <monsieurp@gentoo.org>
Security: 87270ba5-03d3-11ea-b81f-3085a9a95629
The biggest change is the removal of vmxnet from this package. This means you
*must* be using the vmx driver included in FreeBSD or your networking will fail
after this update. This is a danger for people who are running unsupported versions
of FreeBSD but could also affect people who are running custom kernels that have
removed vmx from them.
This update reduces our patchset by taking advantage of patches submitted upstream.
Sponsored by: Panzura
Under the hood runs Chromium 73.0.3683.105 with applied security fixes from
Chrome up to version 74.0.3729.157.
Most of the patches were synced with www/chromium 73.0.3683.103 (= r498089)
with some re-added/modified patches from r497877 and r499210 to get also
successful builds on aarch64. Some tweaking might still be needed to get
positive build results on the armv7 architecture.
Other notable changes:
* GN keywords "use_system_{libusb,libcxx}" aren't used anymore thus both
were removed from the FreeBSD specific qmake file "freebsd.pri".
* In various GN files the OS is now identified as "freebsd" (prior it was
"bsd") so "mkspecs/features/functions.prf" was changed accordingly.
* The hook up of the sandbox feature is no longer excluded which led to some
more patches (= patch-*crashpad* files)
* Add "xorg" to USES as using USE_XORG alone is deprecated.
Changelog:
https://code.qt.io/cgit/qt/qtwebengine.git/tree/dist/changes-5.13.0
Approved by: tcberner (kde)
Differential Revision: https://reviews.freebsd.org/D22095
Plasma 5.17 is the version where the desktop anticipates your needs. Night
Color, the color-grading system that relaxes your eyes when the sun sets, has
landed for X11. Your Plasma desktop also recognizes when you are giving a
presentation, and stops messages popping up in the middle of your slideshow. If
you are using Wayland, Plasma now comes with fractional scaling, which means
that you can adjust the size of all your desktop elements, windows, fonts and
panels perfectly to your HiDPI monitor.
The best part? All these improvements do not tax your hardware! Plasma 5.17 is
as lightweight and thrifty with resources as ever.
Important startup change:
With Plasma 5.17 the startup script has been renamed. People who use the
.xinitrc method to start Plasma have to call the new binary.
Previously:
exec ck-launch-session startkde
Change to:
exec ck-launch-session startplasma-x11
Announcement:
https://kde.org/announcements/plasma-5.17.0.php
- Update to 2.0
- Add upstream patches to fix crash due to constructors init order
- Remove sample configuration files as default configuration files are NOT intended for modification by users and SHOULD be overwritten on port upgrade.
- Remove NO_SHARED CMake flag as it is on by default
- Add notes to UPDATING
mail/rspamd-devel:
- Update to 2.1.a1.20191014
- Remove sample configuration files as default configuration files are NOT intended for modification by users and SHOULD be overwritten on port upgrade.
- Add notes to UPDATING
PR: 241204
Submitted by: Alexander Moisseev <moiseev at mezonplus.ru>
Reported by: Yasuhiro KIMURA <yasu at utahime.org>
Now that groff is required for manpages that are not supported by mandoc
the default dependency on X11 has become a big concern for many people.
From now the entire X11 option has been removed as it is only needed for
legacy part of groff that have little end user value.
The other part that was dragging in all the X11 dependencies was the ghostscript
dependency which is needed for 2 cases:
1. find the path of the urw fonts which is needed for pdf generation. the
configure script has been patched to stop using ghostscript to find that path,
but directly use the one provided.
2. the html driver which calls at runtime the gs binary along with some binaries
provided by the netpbm package. Given how little use it is, add a message to
tell the users to manually install ghostscript and netpbm as optional dependency
if they do need to use groff -Thtml.
Requested by: many
* Introduce EXAMPLES option which installs a sample rc script to the example
location. Using the script will eliminate the need for
sysutils/py-supervisor for those who run NetBox as a system service. [1]
If there's a lot of interest it can also be installed in near future as
regular rc script.
* Consolidate keywords in pkg-message to avoid accidental deletion of these.
Notable changes since 2.5.13:
* Improved performance via Caching through Redis
* Support for Power Panels and Feeds
* Introduction of view-only permissions
* Ability to create custom links under the admin UI
* Support for Prometheus metrics
* Many other enhancements and bug fixes
https://github.com/netbox-community/netbox/blob/v2.6.5/CHANGELOG.md
Submitted by: Thomas Kurschel (via private email) [1]
file disabled by default
- Modify name of program in .desktop file for xfce4-screensaver,
so that the UI does not show two identical lines when both it and
xscreensaver are installed
- Add UPDATING note and update xfce4-session pkg-message to explain
the issue to users
PR: 240804, 240810, 240811
Submitted by: John <jlmales@gmail.com>