Commit graph

630076 commits

Author SHA1 Message Date
Po-Chuan Hsieh
6a807d45ee
databases/mydumper: Update to 0.15.1-2
Changes:	https://github.com/mydumper/mydumper/releases
2023-08-17 02:25:09 +08:00
Po-Chuan Hsieh
12092ad379
astro/cfitsio: Update to 4.3.0
Changes:	https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt
2023-08-17 02:25:09 +08:00
Po-Chuan Hsieh
f7b14f154d
archivers/unrar: Update to 6.23
Changes:	https://www.rarlab.com/rarnew.htm
2023-08-17 02:25:08 +08:00
Po-Chuan Hsieh
e295bcb3b8
archivers/rar: Update to 6.23
Changes:	https://www.rarlab.com/rarnew.htm
2023-08-17 02:25:08 +08:00
Po-Chuan Hsieh
98e22207f8
net/rubygem-octokit6: Add rubygem-octokit6 6.1.1 (copied from rubygem-octokit)
- Add PORTSCOUT
2023-08-17 02:25:08 +08:00
Po-Chuan Hsieh
4ba37973ad
devel/rubygem-aws-sdk-medicalimaging: Add rubygem-aws-sdk-medicalimaging 1.0.0
Official AWS Ruby gem for AWS Health Imaging.
2023-08-17 02:25:08 +08:00
Po-Chuan Hsieh
d85a33280a
devel/rubygem-aws-sdk-managedblockchainquery: Add rubygem-aws-sdk-managedblockchainquery 1.0.0
Official AWS Ruby gem for Amazon Managed Blockchain Query.
2023-08-17 02:25:07 +08:00
Po-Chuan Hsieh
5c76aaca48
devel/rubygem-aws-sdk-entityresolution: Add rubygem-aws-sdk-entityresolution 1.0.0
Official AWS Ruby gem for AWS Entity Resolution (AWSEntityResolution).
2023-08-17 02:25:07 +08:00
Po-Chuan Hsieh
3a4d59df3d
textproc/py-interegular: Add py-interegular 0.3.2
Interegular is a library to check a subset of python regexes for intersections.
Based on grennery by @qntm. Adapted for lark-parser.

The primary difference with grennery library is that interegular is focused on
speed and compatibility with python re syntax, whereas grennery has a way to
reconstruct a regex from a FSM, which interegular lacks.
2023-08-17 02:25:07 +08:00
Po-Chuan Hsieh
a5abdadcbd
security/py-truststore: Add py-truststore 0.7.0
Truststore is a library which exposes native system certificate stores (ie
"trust stores") through an ssl.SSLContext-like API. This means that Python
applications no longer need to rely on certifi as a root certificate store.
Native system certificate stores have many helpful features compared to a static
certificate bundle like certifi:
- Automatically update certificates as new CAs are created and removed
- Fetch missing intermediate certificates
- Check certificates against certificate revocation lists (CRLs) to avoid
  monster-in-the-middle (MITM) attacks
- Managed per-system rather than per-application by a operations/IT team
- PyPI is no longer a CA distribution channel

Right now truststore is a stand-alone library that can be installed globally in
your application to immediately take advantage of the benefits in Python 3.10+.
Truststore has also been integrated into pip as an opt-in method for verifying
HTTPS certificates with truststore instead of certifi.

Long-term the hope is to make truststore the default way to verify HTTPS
certificates in pip and to add this functionality into Python itself. Wish us
luck!
2023-08-17 02:25:07 +08:00
Po-Chuan Hsieh
96195f8763
security/py-service-identity: Add py-service-identity 23.1.0
Use this package if:
- you want to verify that a PyCA cryptography certificate is valid for a certain
  hostname or IP address,
- or if you use pyOpenSSL and don’t want to be MITMed,
- or if you want to inspect certificates from either for service IDs.

service-identity aspires to give you all the tools you need for verifying
whether a certificate is valid for the intended purposes. In the simplest case,
this means host name verification. However, service-identity implements RFC 6125
fully.
2023-08-17 02:25:07 +08:00
Po-Chuan Hsieh
964dc98687
math/py-awkward-cpp: Add py-awkward-cpp 21
awkward-cpp provides precompiled routines for the awkward package. It is not
useful on its own, only as a dependency for awkward .
2023-08-17 02:25:06 +08:00
Po-Chuan Hsieh
94a9bb3114
math/py-awkward: Add py-awkward 2.3.1
Awkward Array is a library for nested, variable-sized data, including
arbitrary-length lists, records, mixed types, and missing data, using NumPy-like
idioms.

Arrays are dynamically typed, but operations on them are compiled and fast.
Their behavior coincides with NumPy when array dimensions are regular and
generalizes when they're not.
2023-08-17 02:25:06 +08:00
Po-Chuan Hsieh
dd4c723cf2
devel/py-simple-parsing: Add py-simple-parsing 0.1.3
simple-parsing allows you to transform your ugly argparse scripts into
beautifully structured, strongly typed little works of art. This isn't a fancy,
complicated new command-line tool either, this simply adds new features to
plain-old argparse! Using dataclasses, simple-parsing makes it easier to share
and reuse command-line arguments - no more copy pasting!

Supports inheritance, nesting, easy serialization to json/yaml, automatic help
strings from comments, and much more!
2023-08-17 02:25:06 +08:00
Po-Chuan Hsieh
f484396210
devel/py-pycocotools: Add py-pycocotools 2.0.6
pycocotools is a fork of the original cocoapi, with bug fixes and packaging
improvements.

Changes in this fork include:
- Add CircleCI tests
- Support pip-installation correctly
- Support windows
- Don't import matplotlib unless needed
- Close file handle after openning
- Fix a small bug in rleToBbox
- Fix a segfault in RLE decoding
- Fix deprecated usage of other libraries

For compatibility, we will not make any API changes or non-bug behavior changes
to the existing APIs of the official cocoapi.
2023-08-17 02:25:06 +08:00
Po-Chuan Hsieh
29f25e627e
devel/py-pybind11210: Add py-pybind11210 2.10.4
pybind11 is a lightweight header-only library that exposes C++ types in Python
and vice versa, mainly to create Python bindings of existing C++ code. Its goals
and syntax are similar to the excellent Boost.Python library by David Abrahams:
to minimize boilerplate code in traditional extension modules by inferring type
information using compile-time introspection.
2023-08-17 02:25:05 +08:00
Po-Chuan Hsieh
9b4992baf6
devel/py-dataclass-array: Add py-dataclass-array 1.5.0
DataclassArray are dataclasses which behave like numpy-like arrays (can be
batched, reshaped, sliced,...), compatible with Jax, TensorFlow, and numpy (with
torch support planned).

This reduce boilerplate and improve readability.
2023-08-17 02:25:05 +08:00
Po-Chuan Hsieh
b4ec23b97c
devel/p5-Module-Build-Prereqs-FromCPANfile: Add p5-Module-Build-Prereqs-FromCPANfile 0.02
Module::Build::Prereqs::FromCPANfile reads cpanfile and converts its content
into valid prereq parameters for new() method of Module::Build.
2023-08-17 02:25:05 +08:00
Po-Chuan Hsieh
cdd6d1dad1
devel/p5-AnyEvent-Connector: Add p5-AnyEvent-Connector 0.03
AnyEvent::Connector object has tcp_connect method compatible with that from
AnyEvent::Socket, and it handles proxy settings transparently.
2023-08-17 02:25:05 +08:00
Kevin Bowling
a66e549aa1 x11/nvidia-driver, x11/linux-nvidia-libs: update to 535.98
PR:		273110
Approved by:	danfe
2023-08-16 11:23:32 -07:00
Krešimir Jozić
f523e58dac devel/wasmer: Add new port
Wasmer is a fast and secure WebAssembly runtime that enables super lightweight
containers to run anywhere: from Desktop to the Cloud, Edge and IoT devices.

Features:
 - Secure by default. No file, network, or environment access, unless explicitly
   enabled.
 - Supports WASIX, WASI and Emscripten out of the box.
 - Fast. Run WebAssembly at near-native speeds.
 - Embeddable in multiple programming languages
 - Compliant with latest WebAssembly Proposals (SIMD, Reference Types, Threads,

PR:		272195
2023-08-16 19:10:41 +02:00
Joseph Mingrone
bc7829212d
sysutils/cpu-microcode-*: Reorganize CPU microcode ports
Prior to this update, sysutils/devcpu-data, which only contained an RC
script, had run dependencies on the AMD and Intel microcode ports.  This
made it cumbersome to have just the AMD or just the Intel microcode
ports installed.  With this change, the microcode ports now depend on
the RC script.

Other changes:

- Use more intuitive port names: cpu-microcode, cpu-microcode-amd,
  cpu-microcode-intel, and cpu-microcode-rc.
- Add the metaport, cpu-microcode, which pulls in all related ports.
- Pet portclippy/portfmt

Reviewed by:	lwhsu, markj
Approved by:	sbruno (maintainer)
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D41406
2023-08-16 14:06:40 -03:00
Ashish SHUKLA
9d00475d7c
security/tailscale: Update to 1.48.0
- Add dependency on Go 1.21
2023-08-16 17:05:10 +00:00
Yuri Victorovich
b5143c4509 deskutils/just: Add COMPLETIONS option, ON by default
PR:		273158
Requested by:	Michael Adler <therisen06@gmail.com>
2023-08-16 09:26:52 -07:00
Jan Beich
3487a7e544 x11-servers/xwayland-devel: update to 21.0.99.1.511
Changes:	295fb7165...8128a2155
2023-08-16 17:48:00 +02:00
Piotr Kubaj
248d433746 sysutils/intel-nvmupdate-100g: update to 4.3 2023-08-16 16:55:47 +02:00
Piotr Kubaj
236ef6a0f2 net/intel-ice-kmod: update to 1.38.16 2023-08-16 16:49:23 +02:00
Piotr Kubaj
d77be96f02 net/intel-ix-kmod: update to 3.3.35 2023-08-16 16:49:23 +02:00
Piotr Kubaj
396f5690db net/intel-ixl-kmod: update to 1.13.4
Also enable on aarch64 and riscv64, no reason to limit just to powerpc64* and amd64.
2023-08-16 16:49:22 +02:00
Piotr Kubaj
3ac7b85d80 net/intel-iavf-kmod: update to 3.0.32 2023-08-16 16:49:22 +02:00
Piotr Kubaj
33075b9b73 net/intel-irdma-kmod: update to 1.2.17 2023-08-16 16:49:22 +02:00
Piotr Kubaj
549a1a2ebf net/intel-ixv-kmod: update to 1.5.34 2023-08-16 16:49:21 +02:00
Piotr Kubaj
7e52e3b779 net/intel-igb-kmod: update to 2.5.28 2023-08-16 16:49:21 +02:00
Piotr Kubaj
b891ab14a6 sysutils/intel-epct: update to 1.39.56.9 2023-08-16 16:49:20 +02:00
Piotr Kubaj
becce67e6f sysutils/intel-nvmupdate-40g: update to 9.3 2023-08-16 16:49:20 +02:00
Cy Schubert
8522ddedb8 security/krb5-121: Update to 1.21.2
Major changes in 1.21.2 (2023-08-14)
====================================

This is a bug fix release.

* Fix double-free in KDC TGS processing [CVE-2023-39975].

MFH:	2023Q3
2023-08-16 07:11:13 -07:00
Rodrigo Osorio
7418bfa0e6 sysutils/screen: Add session creation time when list active sessions
Reimplement Debian patches to display screen session creation time and
sort the list of sessions by date.

Output example for 'screen -ls' command
---------------------------------------
There is a screen on:
        14059.pts-7.1302amd64-head      (08/15/23 10:02:52)     (Attached)
1 Socket in /tmp/screens/S-root.

Reviewed by:  cy
Differential Revision: https://reviews.freebsd.org/D41469
2023-08-16 15:52:05 +02:00
Tobias C. Berner
f733f4069b x11/plasma-wayland-protocols: remove run depend on self
- reducing unnecessary run-time dependencies will make it easier
  to add ports for KDE Plasma 6 & Co.
2023-08-16 15:30:47 +02:00
Ruslan Makhmatkhanov
590db982a0 net/py-zope.proxy: update to 4.6.1 2023-08-16 15:21:11 +03:00
Jan Beich
bc389cb805 x11/waybar: update to 0.9.22
Changes:	https://github.com/Alexays/Waybar/releases/tag/0.9.22
Reported by:	GitHub (watch releases)
2023-08-16 13:48:46 +02:00
Alexander Vereeken
a26844393b emulators/wine: Add dependency on alsa-plugins
When using the ALSA option (which is not the default) audio did not
worke - no audio device appeared for playing and recording and the
following message appeared:

  ALSA lib dlmisc.c:285:(snd_dlobj_cache_get0) Cannot open shared
  library /usr/local/lib/alsa-lib/libasound_module_pcm_oss.so

Providing alsa-plugins at run time addresses this.

Bump PORTREVSION accordingly.

PR:		273137
2023-08-16 11:17:32 +00:00
Adam Weinberger
f074c2c1bc math/calc: Update to 2.14.3.4 2023-08-16 07:00:59 -04:00
Guido Falsi
0e75924986 mail/mailpit: Update to 1.8.2 2023-08-16 12:35:12 +02:00
Oleksii Samorukov
07f4bfef61 security/acmetool: remove specific golang version requirment 2023-08-16 10:08:56 +02:00
Emanuel Haupt
ac23c86af2 net/py-shodan: Update to 1.30.0 2023-08-16 10:03:43 +02:00
Matthew Seaman
42e570a18e security/pam_ssh_agent_auth: Fix typo
PR:		272220
Reported by:	Freshports, Trond Endrestol
2023-08-16 08:36:52 +01:00
Alexey Dokuchaev
5dfddf9a00 lang/algol68g: update Algol 68 Genie to the latest version 3.3.0
Apart from usual minor fixes, this release adds WWW/cURL support and
a number of new procedures: "https content", "puts", "gets", "putsf",
"getsf", "string", "stringf".

Reported by:	portscout
2023-08-16 07:16:44 +00:00
Li-Wen Hsu
59decf399c
security/keepassxc: Update to 2.7.6 2023-08-16 15:06:28 +08:00
Yuri Victorovich
de80b67966 audio/py-soxr: Update 0.3.5 → 0.3.6
Reported by:	portscout
2023-08-15 23:48:18 -07:00
Yuri Victorovich
eb23d47557 devel/mrc: Update 1.3.9 → 1.3.10
Reported by:	portscout
2023-08-15 23:48:18 -07:00