OpenBSD/ports K370JE2 — x11/py-superqt distinfo Makefile
update py-superqt to 0.8.1
| Version | Delta | File | |
|---|---|---|---|
| 1.5 | +2 | -2 | x11/py-superqt/distinfo |
| 1.7 | +1 | -1 | x11/py-superqt/Makefile |
| +3 | -3 | 2 files | |
update py-superqt to 0.8.1
| Version | Delta | File | |
|---|---|---|---|
| 1.5 | +2 | -2 | x11/py-superqt/distinfo |
| 1.7 | +1 | -1 | x11/py-superqt/Makefile |
| +3 | -3 | 2 files | |
update ipython to 9.12.0
| Version | Delta | File | |
|---|---|---|---|
| 1.57 | +2 | -2 | devel/ipython/distinfo |
| 1.103 | +1 | -1 | devel/ipython/Makefile |
| +3 | -3 | 2 files | |
Include crypto_assembly.h instead of manually ensuring _CET_ENDBR exists. ok kenjiro@ tb@
| Version | Delta | File | |
|---|---|---|---|
| 1.2 | +2 | -6 | lib/libcrypto/md5/md5_amd64_generic.S |
| 1.5 | +2 | -6 | lib/libcrypto/sha/sha1_amd64_generic.S |
| 1.4 | +2 | -6 | lib/libcrypto/sha/sha1_amd64_shani.S |
| 1.6 | +2 | -6 | lib/libcrypto/sha/sha256_amd64_generic.S |
| 1.4 | +2 | -6 | lib/libcrypto/sha/sha256_amd64_shani.S |
| 1.4 | +2 | -6 | lib/libcrypto/sha/sha512_amd64_generic.S |
| +12 | -36 | 6 files | |
Provide a crypto_assembly.h internal header. This will contain defines and macros that we need for assembly code, without polluting other headers that are primarily used for C code. For now, this just unconditionally provides _CET_ENDBR on amd64. ok kenjiro@ tb@
| Version | Delta | File | |
|---|---|---|---|
| 1.1 | +30 | -0 | lib/libcrypto/crypto_assembly.h |
| +30 | -0 | 1 files | |
Update to p5-Test-Unit-0.30.
| Version | Delta | File | |
|---|---|---|---|
| 1.6 | +2 | -2 | devel/p5-Test-Unit/distinfo |
| 1.16 | +1 | -1 | devel/p5-Test-Unit/Makefile |
| +3 | -3 | 2 files | |
Update to p5-Locale-Codes-3.88.
| Version | Delta | File | |
|---|---|---|---|
| 1.17 | +2 | -2 | devel/p5-Locale-Codes/distinfo |
| 1.19 | +1 | -1 | devel/p5-Locale-Codes/Makefile |
| +3 | -3 | 2 files | |
Update to duckdb-1.5.1.
| Version | Delta | File | |
|---|---|---|---|
| 1.5 | +2 | -2 | databases/duckdb/distinfo |
| 1.5 | +2 | -2 | databases/duckdb/Makefile |
| 1.4 | +2 | -0 | databases/duckdb/pkg/PLIST |
| +6 | -4 | 3 files | |
backport upstream fixes from 1.16.2
| Version | Delta | File | |
|---|---|---|---|
| 1.1 | +29 | -0 | x11/tigervnc/patches/patch-unix_xserver_hw_vnc_vncHooks_c |
| 1.1 | +23 | -0 | x11/tigervnc/patches/patch-unix_x0vncserver_Image_cxx |
| 1.32 | +1 | -1 | x11/tigervnc/Makefile |
| +53 | -1 | 3 files | |
update to freetds-1.5.15
| Version | Delta | File | |
|---|---|---|---|
| 1.110 | +2 | -2 | databases/freetds/distinfo |
| 1.176 | +1 | -1 | databases/freetds/Makefile |
| +3 | -3 | 2 files | |
update to libiconv-1.19, from Brad (maintainer)
| Version | Delta | File | |
|---|---|---|---|
| 1.9 | +4 | -4 | converters/libiconv/patches/patch-src_Makefile_in |
| 1.56 | +2 | -2 | converters/libiconv/Makefile |
| 1.13 | +2 | -2 | converters/libiconv/distinfo |
| 1.8 | +1 | -1 | converters/libiconv/patches/patch-libcharset_lib_localcharset_c |
| 1.6 | +0 | -0 | converters/libiconv/patches/patch-lib_relocatable_c |
| +9 | -9 | 5 files | |
libtls: const workarounds for X509_NAME in OCSP for OpenSSL 4 The API to look up a cert by subject or issuer name clearly only needs to do name comparisons in a collection of certs so should by all means take a const X509_NAME * as an argument. However, this isn't all that easy to do and hence it's only in OpenSSL 4 that this obvious step was reached. This means that there is no way around casting for older code. One could cast the return value of X509_get_issuer_name() or the argument passed to the two lookups by subject. jsing slightly prefers the second approach, so this is what we do here. ok djm jsing kenjiro
| Version | Delta | File | |
|---|---|---|---|
| 1.27 | +5 | -4 | lib/libtls/tls_ocsp.c |
| +5 | -4 | 1 files | |
update to icingadb-1.5.1, from Alvar Penning (maintainer)
| Version | Delta | File | |
|---|---|---|---|
| 1.1 | +87 | -0 | net/icinga/icingadb/patches/patch-cmd_icingadb_openbsd_go |
| 1.6 | +18 | -18 | net/icinga/icingadb/distinfo |
| 1.1 | +21 | -0 | net/icinga/icingadb/patches/patch-cmd_icingadb_main_go |
| 1.6 | +7 | -4 | net/icinga/icingadb/Makefile |
| 1.6 | +4 | -4 | net/icinga/icingadb/modules.inc |
| +137 | -26 | 5 files | |
libtls: simple cases of const for X509_NAME *
After the const sprinkling in OpenSSL 1.1, X509_get_{issuer,subject}_name()
still returned a non-const pointer for unclear reasons. In OpenSSL 4,
the return value also grew a const qualifier, so move the two "name" in
tls_conninfo.c and the "subject_name" in tls_verify.c to const. They are
only used for further processing by already const correct functions (at
least as far as X509_NAME is concerned).
ok djm jsing kenjiro
| Version | Delta | File | |
|---|---|---|---|
| 1.29 | +3 | -3 | lib/libtls/tls_conninfo.c |
| 1.33 | +3 | -3 | lib/libtls/tls_verify.c |
| +6 | -6 | 2 files | |
devel/codex: update to 0.117.0
| Version | Delta | File | |
|---|---|---|---|
| 1.12 | +56 | -20 | devel/codex/distinfo |
| 1.1 | +66 | -0 | devel/codex/patches/patch-codex-rs_core_src_tools_spec_rs |
| 1.10 | +44 | -4 | devel/codex/patches/patch-codex-rs_Cargo_toml |
| 1.5 | +33 | -14 | devel/codex/patches/patch-codex-rs_arg0_src_lib_rs |
| 1.1 | +43 | -0 | devel/codex/patches/patch-codex-rs_core_src_codex_rs |
| 1.1 | +40 | -0 | devel/codex/patches/patch-codex-rs_core_src_tools_router_rs |
| +282 | -38 | 14 files not shown | |
| +437 | -53 | 20 files | |
archivers/zpaqfranz: update to 64.7 From maintainer tux0r
| Version | Delta | File | |
|---|---|---|---|
| 1.39 | +2 | -2 | archivers/zpaqfranz/distinfo |
| 1.42 | +1 | -1 | archivers/zpaqfranz/Makefile |
| +3 | -3 | 2 files | |
Update to webkitgtk{41,60}-2.52.1.
| Version | Delta | File | |
|---|---|---|---|
| 1.144 | +2 | -2 | www/webkitgtk4/distinfo |
| 1.255 | +1 | -1 | www/webkitgtk4/Makefile |
| +3 | -3 | 2 files | |
Update to awscli-1.44.68.
| Version | Delta | File | |
|---|---|---|---|
| 1.27 | +2 | -2 | sysutils/awscli/v1/Makefile |
| 1.25 | +2 | -2 | sysutils/awscli/v1/distinfo |
| 1.11 | +1 | -0 | sysutils/awscli/v1/pkg/PLIST |
| +5 | -4 | 3 files | |
Update to py3-boto3-1.42.78.
| Version | Delta | File | |
|---|---|---|---|
| 1.643 | +2 | -2 | net/py-boto3/distinfo |
| 1.655 | +1 | -1 | net/py-boto3/Makefile |
| +3 | -3 | 2 files | |
Update to py3-botocore-1.42.78.
| Version | Delta | File | |
|---|---|---|---|
| 1.319 | +7 | -0 | net/py-botocore/pkg/PLIST |
| 1.860 | +2 | -2 | net/py-botocore/distinfo |
| 1.870 | +1 | -1 | net/py-botocore/Makefile |
| +10 | -3 | 3 files | |
Test that __pledge_open can bypass unveil.
| Version | Delta | File | |
|---|---|---|---|
| 1.2 | +11 | -3 | regress/sys/kern/pledge/open/open.c |
| 1.2 | +5 | -1 | regress/sys/kern/pledge/open/Makefile |
| +16 | -4 | 2 files | |
Update to amazon-ssm-agent-3.3.4121.0.
| Version | Delta | File | |
|---|---|---|---|
| 1.166 | +2 | -2 | sysutils/amazon-ssm-agent/distinfo |
| 1.180 | +1 | -1 | sysutils/amazon-ssm-agent/Makefile |
| +3 | -3 | 2 files | |
Update to libspectrum-1.6.0.
| Version | Delta | File | |
|---|---|---|---|
| 1.43 | +2 | -3 | devel/libspectrum/Makefile |
| 1.23 | +2 | -2 | devel/libspectrum/distinfo |
| +4 | -5 | 2 files | |
Unbreak p5-IO-Tty compilation on GCC, spotted by kmos@, thanks !
| Version | Delta | File | |
|---|---|---|---|
| 1.7 | +11 | -14 | devel/p5-IO-Tty/patches/patch-Tty_xs |
| 1.34 | +2 | -1 | devel/p5-IO-Tty/Makefile |
| +13 | -15 | 2 files | |
ensure c->local_window doesn't underflow during updates; similar to checks performed elsewhere. From Renaud Allard
| Version | Delta | File | |
|---|---|---|---|
| 1.458 | +5 | -2 | usr.bin/ssh/channels.c |
| +5 | -2 | 1 files | |
fix base16 parsing; currently unused. From Renaud Allard
| Version | Delta | File | |
|---|---|---|---|
| 1.23 | +2 | -2 | usr.bin/ssh/sshbuf-misc.c |
| +2 | -2 | 1 files | |
mention that RevokedKeys is read by the server at each authentication time and should only ever be replaced atomically.
| Version | Delta | File | |
|---|---|---|---|
| 1.397 | +7 | -2 | usr.bin/ssh/sshd_config.5 |
| +7 | -2 | 1 files | |
fix potential hang if /etc/moduli doesn't contain the requested DH group values; from 77c9ca, ok dtucker@, markus@
| Version | Delta | File | |
|---|---|---|---|
| 1.255 | +1 | -2 | usr.bin/ssh/monitor.c |
| +1 | -2 | 1 files | |
improve explanation of when it __pledge_open works
| Version | Delta | File | |
|---|---|---|---|
| 1.55 | +6 | -3 | lib/libc/sys/open.2 |
| +6 | -3 | 1 files | |
Update to Ruby 3.3.11 Fixes CVE-2026-27820: Buffer overflow vulnerability in Zlib::GzipReader One patch merged upstream.
| Version | Delta | File | |
|---|---|---|---|
| 1.11 | +9 | -8 | lang/ruby/3.3/pkg/PLIST-main |
| 1.8 | +0 | -8 | lang/ruby/3.3/pkg/PLIST-ri_docs |
| 1.3 | +2 | -2 | lang/ruby/3.3/patches/patch-template_Makefile_in |
| 1.12 | +2 | -2 | lang/ruby/3.3/distinfo |
| 1.22 | +1 | -2 | lang/ruby/3.3/Makefile |
| 1.9 | +1 | -1 | lang/ruby/3.3/patches/patch-configure |
| +15 | -23 | 2 files not shown | |
| +16 | -24 | 8 files | |
Drop maintainership.
| Version | Delta | File | |
|---|---|---|---|
| 1.27 | +1 | -3 | devel/binutils/Makefile |
| +1 | -3 | 1 files | |