Commit graph

619561 commits

Author SHA1 Message Date
Jan Beich
e83c39ced1 x11-wm/swayfx: update to 0.3
Changes:	https://github.com/WillPower3309/swayfx/releases/tag/0.3
Reported by:	GitHub (watch releases)
2023-05-21 05:32:46 +00:00
Vanilla I. Shu
8dee6f574b www/janus: update to 1.1.4, also add option for MQTT event handler. 2023-05-21 12:04:44 +08:00
Vanilla I. Shu
5d79ce3efa devel/pecl-swoole: update to 5.0.3. 2023-05-21 12:04:43 +08:00
Stephen Montgomery-Smith
4909d17c70 math/octave-forge-fileio: Fix DESCRIPTION in source.
Required so that the octave package manager works properly.

Bump portrevision.
2023-05-20 22:24:35 -05:00
Jan Beich
506f67ea20 graphics/libplacebo: unbreak GLSLANG=on after 1801dc29ce
compiler.find_library(static: true) ignores LDFLAGS and LIBRARY_PATH
as Meson uses --print-search-dirs instead of trying to link.

src/glsl/meson.build:34:4: ERROR: C++ static library 'SPIRV' not found
src/glsl/meson.build:45:12: ERROR: C++ static library 'MachineIndependent' not found

PR:		270221
Reported by:	Philipp Ost
Regressed by:	https://code.videolan.org/videolan/libplacebo/-/commit/980f2574aa0f
2023-05-21 03:13:27 +00:00
Stephen Montgomery-Smith
18f2a22035 math/octave-forge-statistics-bootstrap: Update to 5.2.7. 2023-05-20 22:10:29 -05:00
Yuri Victorovich
eccdd49cd2 science/psi4: Update 1.7 → 1.8
Reported by:	portscout
2023-05-20 18:33:53 -07:00
Yuri Victorovich
f5f13c11af science/libint2-psi4: Update 0.1 → 0.1-${VERSION}
Reported by:	portscout
2023-05-20 18:33:53 -07:00
Yuri Victorovich
07e26ad275 audio/mamba: Update 2.3 → 2.5
Reported by:	portscout
2023-05-20 18:33:52 -07:00
Jan Beich
f193d564f0 multimedia/lebiniou: drop unused variable after 2c672a4de9
Reported by:	portscan, portlint
2023-05-21 01:03:57 +00:00
Jan Beich
0d2a9462e1 irc/hexchat: drop unused variable after 2c672a4de9
Reported by:	portscan, portlint
2023-05-21 01:03:57 +00:00
Jan Beich
166e84223a graphics/blender-lts29: drop unused variable after 2c672a4de9
Reported by:	portscan, portlint
2023-05-21 01:03:57 +00:00
Jan Beich
662a3422ef databases/spatialite_gui: drop unused variable after 2c672a4de9
Reported by:	portscan, portlint
2023-05-21 01:03:56 +00:00
Jan Beich
22b34ee4bd cad/solvespace: drop unused variable after 2c672a4de9
Reported by:	portscan, portlint
2023-05-21 01:03:56 +00:00
Jan Beich
6c779413be multimedia/gstreamer1-plugins: drop unused variables after e3b732b479
Reported by:	portscan
2023-05-21 00:56:33 +00:00
Jan Beich
4c578e0454 graphics/exiftags: drop unused variable after e913f119d8
Reported by:	portscan
2023-05-21 00:56:33 +00:00
Jan Beich
5cb66ecdf1 emulators/rpcs3: update to 0.0.27.15035
Changes:	e1744ceab2...73dba6d6e0
2023-05-21 00:32:56 +00:00
Lasse Bang Mikkelsen
453bce37fc devel/rubygem-asetus: Update to 0.4.0
PR:		271542
Approved by:	Nick Hilliard (maintainer)
Closes: https://github.com/freebsd/freebsd-ports/pull/178
2023-05-20 23:59:30 +00:00
Danilo G. Baio
9b42e25d7e devel: Fix index after 7436596
The recent port added was py-azure-mgmt-appcontainers and not
py-azure-appcontainers.

Reported by:	Bob Vesterman
2023-05-20 19:12:58 -03:00
Dimitry Andric
26bc5ce8ba net/libfabric: fix build with clang 16
Clang 16 has a new error about incompatible function types, which shows
up when building net/libfabric (on i386):

  prov/hook/src/hook_domain.c:124:12: error: incompatible function pointer types passing 'ssize_t (struct fid_ep *, size_t)' (aka 'int (struct fid_ep *, unsigned int)') to parameter of type 'ssize_t (*)(struct fid_ep *, uint64_t)' (aka 'int (*)(struct fid_ep *, unsigned long long)') [-Wincompatible-function-pointer-types]
                                                       hook_credit_handler);
                                                       ^~~~~~~~~~~~~~~~~~~
  prov/hook/src/hook_domain.c:150:17: error: incompatible function pointer types initializing 'void (*)(struct fid_ep *, uint64_t)' (aka 'void (*)(struct fid_ep *, unsigned long long)') with an expression of type 'void (struct fid_ep *, size_t)' (aka 'void (struct fid_ep *, unsigned int)') [-Wincompatible-function-pointer-types]
          .add_credits = hook_add_credits,
                         ^~~~~~~~~~~~~~~~
  prov/hook/src/hook_domain.c:152:22: error: incompatible function pointer types initializing 'void (*)(struct fid_domain *, ssize_t (*)(struct fid_ep *, uint64_t))' (aka 'void (*)(struct fid_domain *, int (*)(struct fid_ep *, unsigned long long))') with an expression of type 'void (struct fid_domain *, ssize_t (*)(struct fid_ep *, size_t))' (aka 'void (struct fid_domain *, int (*)(struct fid_ep *, unsigned int))') [-Wincompatible-function-pointer-types]
          .set_send_handler = hook_set_send_handler,
                              ^~~~~~~~~~~~~~~~~~~~~

The problem is that the 'credits' parameter used in these functions is
size_t in some cases, but uint64_t in other cases. On LP64 architectures
this does not result in any errors, but on e.g. i386 you get the above.

Make the 'credits' parameter uint64_t everywhere to fix this issue.

PR:		271537
Approved by:	yuri (maintainer)
MFH:		2023Q2
2023-05-20 22:02:45 +02:00
Danilo G. Baio
fcec8e9a59 devel/py-azure-mgmt-network: Update to 23.0.1
Changelog:      https://pypi.org/project/azure-mgmt-network/23.0.1/
2023-05-20 15:30:54 -03:00
Danilo G. Baio
b3ecb67d4b sysutils/py-azure-cli: Update to 2.48.1
Changelog:	https://github.com/Azure/azure-cli/blob/azure-cli-2.48.1/src/azure-cli/HISTORY.rst
2023-05-20 15:30:54 -03:00
Danilo G. Baio
bc5678920d sysutils/py-azure-cli-core: Update to 2.48.1
Changelog:	https://github.com/Azure/azure-cli/blob/azure-cli-2.48.1/src/azure-cli-core/HISTORY.rst
2023-05-20 15:30:54 -03:00
Danilo G. Baio
7436596e32 Add port: devel/py-azure-mgmt-appcontainers
This is the Microsoft Azure Appcontainers Management Client Library.

Azure Resource Manager (ARM) is the next generation of management APIs that
replace the old Azure Service Management (ASM).

https://pypi.org/project/azure-mgmt-appcontainers/
2023-05-20 15:30:54 -03:00
Danilo G. Baio
2fde300e5a devel/py-azure-data-tables: Update to 12.4.2
Changelog:	https://pypi.org/project/azure-data-tables/12.4.2/
2023-05-20 15:30:53 -03:00
Danilo G. Baio
86632bff1d devel/py-azure-datalake-store: Update to 0.0.53
Changelog:	https://pypi.org/project/azure-datalake-store/0.0.53/
2023-05-20 15:30:53 -03:00
Danilo G. Baio
61031b5622 devel/py-azure-loganalytics: Update to 0.1.1
Changelog:	https://pypi.org/project/azure-loganalytics/0.1.1/
2023-05-20 15:30:53 -03:00
Danilo G. Baio
245d33f10c devel/py-azure-mgmt-appconfiguration: Update to 3.0.0
Changelog:	https://pypi.org/project/azure-mgmt-appconfiguration/3.0.0/
2023-05-20 15:30:52 -03:00
Danilo G. Baio
e718999e96 devel/py-azure-mgmt-containerservice: Update to 22.0.0
Changelog:	https://pypi.org/project/azure-mgmt-containerservice/22.0.0/
2023-05-20 15:30:52 -03:00
Danilo G. Baio
a99ea570b6 devel/py-azure-mgmt-keyvault: Update to 10.2.1
Changelog:	https://pypi.org/project/azure-mgmt-keyvault/10.2.1/
2023-05-20 15:30:52 -03:00
Danilo G. Baio
9a3a5264b3 devel/py-azure-mgmt-rdbms: Update to 10.2.0b7
Changelog:	https://pypi.org/project/azure-mgmt-rdbms/10.2.0b7/
2023-05-20 15:30:52 -03:00
Danilo G. Baio
79982e55af devel/py-azure-mgmt-resource: Update to 22.0.0
Changelog:	https://pypi.org/project/azure-mgmt-resource/22.0.0/
2023-05-20 15:30:51 -03:00
Danilo G. Baio
a128e5c6b7 devel/py-azure-mgmt-search: Update to 9.0.0
Changelog:	https://pypi.org/project/azure-mgmt-search/9.0.0/
2023-05-20 15:30:51 -03:00
Danilo G. Baio
1da5d81bce devel/py-azure-mgmt-sql: Update to 4.0.0b10
Changelog:	https://pypi.org/project/azure-mgmt-sql/4.0.0b10/
2023-05-20 15:30:51 -03:00
Danilo G. Baio
ee042436f9 devel/py-azure-multiapi-storage: Update to 1.1.0
Changelog:	https://pypi.org/project/azure-multiapi-storage/1.1.0/
2023-05-20 15:30:50 -03:00
Robert Nagy
4037de3aa7 www/iridium: unbreak build after a previous bad merge
PR:		271483
Approved by:	rene (mentor, implicit)
2023-05-20 20:23:20 +02:00
Charlie Li
32e521bbe0
comms/chirp: add forgotten wheel 2023-05-20 13:32:01 -04:00
Roman Bogorodskiy
f7847519b9 misc/osinfo-db: update to 20230518 2023-05-20 19:16:45 +02:00
Charlie Li
0ceb67a27a
comms/chirp: welcome back
Project now in Python 3 and uses wxPython for GUI.

Event: BSDCan 2023
2023-05-20 13:13:59 -04:00
Vladimir Druzenko
cd194f5dd2 www/tomcat{85,101}: Updated to 8.5.89, 10.1.9
https://tomcat.apache.org/tomcat-8.5-doc/changelog.html#Tomcat_8.5.89_(schultz)
https://tomcat.apache.org/tomcat-10.1-doc/changelog.html#Tomcat_10.1.9_(schultz)

Approved by:		tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D40181
2023-05-20 19:44:24 +03:00
Stephen Montgomery-Smith
adf94172b3 math/octave-forge-control: Update to 3.6.0. 2023-05-20 11:43:10 -05:00
Thierry Thomas
4ea93dc69f math/eclib: upgrade to 20230424
Release notes at
	<https://github.com/JohnCremona/eclib/releases/tag/v20230424>.
2023-05-20 18:34:29 +02:00
Rene Ladan
e4fee285e6 Mk/Uses/python.mk: update version numbers in some examples 2023-05-20 17:51:18 +02:00
Thierry Thomas
e5d1a03f74 textproc/py-wordcloud: upgrade to 1.9.2 2023-05-20 16:51:06 +02:00
Lorenzo Salvadore
6ac0d1f7f5
lang/gcc12-devel: Update to 12.3.1.s20230519 2023-05-20 16:17:41 +02:00
Lorenzo Salvadore
779e8ab260
lang/gcc12-devel: Fix enable init_array patch
Add an error line that was missing in case _FreeBSD_version < 1000010.

Reported by:    gnikl@users.sourceforge.net
Fixes:  8c2a479977 lang/gcc12-devel: Enable support for .init_array and .fini_array
2023-05-20 16:17:36 +02:00
Adam Weinberger
6b83e78072 sysutils/dust: Update to 0.8.6 and take maintainership
Also: add manpage, completion files, and sample config. Rewrite
pkg-descr to say what it actually does. And, take maintainership
after multiple maintainer timeouts (the last we've heard from
the outgoing maintainer was when they filed a PR to take
maintainership).

PR:		271268
Approved by:	maintainer timeout
2023-05-20 10:16:22 -04:00
Adam Weinberger
281906652b sysutils/bottom: Name bash completion file correctly 2023-05-20 10:16:21 -04:00
Robert Nagy
adb115316f www/ungoogled-chromium: update to 113.0.5672.126
Approved by:	rene (mentor, implicit)
Security:	https://vuxml.freebsd.org/freebsd/bea52545-f4a7-11ed-8290-a8a1599412c6.html
2023-05-20 15:18:58 +02:00
Baptiste Daroussin
722062778e mail/neomutt: update to 20230517 2023-05-20 15:14:10 +02:00