OpenBSD/ports X2vkL8i — comms Makefile
hook up cubicsdr
| Version | Delta | File | |
|---|---|---|---|
| 1.96 | +1 | -0 | comms/Makefile |
| +1 | -0 | 1 files | |
hook up cubicsdr
| Version | Delta | File | |
|---|---|---|---|
| 1.96 | +1 | -0 | comms/Makefile |
| +1 | -0 | 1 files | |
Initial revision
| Version | Delta | File | |
|---|---|---|---|
| 1.1 | +35 | -0 | comms/cubicsdr/Makefile |
| 1.1 | +28 | -0 | comms/cubicsdr/pkg/PLIST |
| 1.1 | +13 | -0 | comms/cubicsdr/patches/patch-external_rtaudio_RtAudio_cpp |
| 1.1 | +12 | -0 | comms/cubicsdr/patches/patch-CMakeLists_txt |
| 1.1 | +9 | -0 | comms/cubicsdr/pkg/DESCR |
| 1.1 | +2 | -0 | comms/cubicsdr/distinfo |
| +99 | -0 | 6 files not shown | |
| +99 | -0 | 12 files | |
Rmeove extra spaces
| Version | Delta | File | |
|---|---|---|---|
| 1.11 | +5 | -6 | sys/dev/pci/if_mwx.c |
| +5 | -6 | 1 files | |
Add pane_x, y, z format variables and show in list-panes.
| Version | Delta | File | |
|---|---|---|---|
| 1.369 | +48 | -0 | usr.bin/tmux/format.c |
| 1.40 | +11 | -5 | usr.bin/tmux/cmd-list-panes.c |
| 1.1060 | +5 | -2 | usr.bin/tmux/tmux.1 |
| +64 | -7 | 3 files | |
Add some more DECRQM responses, from Ayman Bagabas in GitHub issue 5118.
| Version | Delta | File | |
|---|---|---|---|
| 1.259 | +66 | -18 | usr.bin/tmux/input.c |
| +66 | -18 | 1 files | |
Replace the existing SHA-1 implementation in libc. This leverages some of the recent code in libcrypto while retaining the existing API and reusing SHA1_CTX definitions. The implementation uses static inline functions instead of macros and spells out the full variable rotations to follow the specification, rather than trying to outsmart the compiler. A performance gain is seen across most architectures. This also gives us a basis to provide per-architecture accelerated assembly implementations, based on those in libcrypto. With input from naddy@ ok naddy@ tb@
| Version | Delta | File | |
|---|---|---|---|
| 1.29 | +417 | -137 | lib/libc/hash/sha1.c |
| 1.2 | +7 | -2 | lib/libc/hidden/sha1.h |
| +424 | -139 | 2 files | |
ntpd: use the usual error check for timegm(3). Straightforward change. The code could use some refactoring to avoid two consecutive timegm(3) calls on tm_tls. The layering is a bit strange here. ok deraadt henning job
| Version | Delta | File | |
|---|---|---|---|
| 1.61 | +9 | -3 | usr.sbin/ntpd/constraint.c |
| +9 | -3 | 1 files | |
Update to exsmail 2.9 from maintainer/upstream Laurence Tratt
| Version | Delta | File | |
|---|---|---|---|
| 1.17 | +2 | -2 | mail/extsmail/distinfo |
| 1.24 | +1 | -1 | mail/extsmail/Makefile |
| +3 | -3 | 2 files | |
Do not try to use pane if there isn't one when redrawing wide characters, GitHub issues 5145 and 5139.
| Version | Delta | File | |
|---|---|---|---|
| 1.262 | +2 | -2 | usr.bin/tmux/screen-write.c |
| +2 | -2 | 1 files | |
+plutosvg
| Version | Delta | File | |
|---|---|---|---|
| 1.656 | +1 | -0 | graphics/Makefile |
| +1 | -0 | 1 files | |
Initial revision
| Version | Delta | File | |
|---|---|---|---|
| 1.1 | +22 | -0 | graphics/plutosvg/Makefile |
| 1.1 | +10 | -0 | graphics/plutosvg/pkg/PLIST |
| 1.1 | +5 | -0 | graphics/plutosvg/pkg/DESCR |
| 1.1 | +2 | -0 | graphics/plutosvg/distinfo |
| 1.1.1.1 | +0 | -0 | graphics/plutosvg/distinfo |
| 1.1.1.1 | +0 | -0 | graphics/plutosvg/pkg/DESCR |
| +39 | -0 | 2 files not shown | |
| +39 | -0 | 8 files | |
misc/llama.cpp: update to b9409
| Version | Delta | File | |
|---|---|---|---|
| 1.17 | +10 | -10 | misc/llama.cpp/distinfo |
| 1.24 | +4 | -4 | misc/llama.cpp/Makefile |
| +14 | -14 | 2 files | |
devel/libggml: update to 0.13.1
| Version | Delta | File | |
|---|---|---|---|
| 1.17 | +3 | -3 | devel/libggml/Makefile |
| 1.14 | +2 | -2 | devel/libggml/distinfo |
| +5 | -5 | 2 files | |
Fix uploads using chunked transfer-encoding The current code is broken so rework server_read_httpchunks() to properly implement chunked transfer-encoding. Chunked uploads only matter for fastcgi handlers, so adjust them to operate with chunked uploads. The problem is that the CGI spec mandates that CONTENT_LENGTH is set but for chunked transfers the content-length header is actually not allowed. Both fastcgi and cgi don't really need CONTENT_LENGTH since the data is passed via FCGI_STDIN messages or a pipe and in both cases EOF can be signaled just fine. Still some cgi/fastcgi handlers depend on the presence of CONTENT_LENGTH and so those fail to process such chunked uploads. For this reason add a config option to opt-in for chunked uploads but by default any upload with transfer-encoding chunked will result in a HTTP 400 error. OK kirill@ rsadowski@
| Version | Delta | File | |
|---|---|---|---|
| 1.163 | +35 | -40 | usr.sbin/httpd/server_http.c |
| 1.131 | +11 | -2 | usr.sbin/httpd/httpd.conf.5 |
| 1.135 | +11 | -1 | usr.sbin/httpd/parse.y |
| 1.101 | +6 | -6 | usr.sbin/httpd/server_fcgi.c |
| 1.173 | +5 | -3 | usr.sbin/httpd/httpd.h |
| +68 | -52 | 5 files | |
geo/qgis: fix build with llvm 22 - use -O0 on textrenderer/qgsfontmanager.cpp otherwise c++ spins forever - set SKIP_PRECOMPILE_HEADERS ON on qgsexpression_texts.cpp otherwise llvm errors with "OptimizationLevel differs in precompiled file vs. current file" joint work with tb@, thanks!
| Version | Delta | File | |
|---|---|---|---|
| 1.29 | +17 | -1 | geo/qgis/patches/patch-src_core_CMakeLists_txt |
| +17 | -1 | 1 files | |
Update to dnsdist 2.0.6
| Version | Delta | File | |
|---|---|---|---|
| 1.35 | +2 | -2 | net/dnsdist/distinfo |
| 1.66 | +1 | -1 | net/dnsdist/Makefile |
| 1.4 | +0 | -0 | net/dnsdist/patches/patch-dnsdist-lua_cc |
| +3 | -3 | 3 files | |
Update to PowerDNS Authoritative Server 5.0.5
| Version | Delta | File | |
|---|---|---|---|
| 1.60 | +2 | -2 | net/powerdns/distinfo |
| 1.115 | +1 | -1 | net/powerdns/Makefile |
| +3 | -3 | 2 files | |
Update for Nextcloud to 32.0.10 https://nextcloud.com/changelog/#latest32 OK sthen@
| Version | Delta | File | |
|---|---|---|---|
| 1.10 | +563 | -637 | www/nextcloud/32/pkg/PLIST |
| 1.9 | +2 | -2 | www/nextcloud/32/distinfo |
| 1.13 | +1 | -1 | www/nextcloud/32/Makefile |
| +566 | -640 | 3 files | |
update to tomcat-11.0.22
| Version | Delta | File | |
|---|---|---|---|
| 1.17.2.1 | +4 | -4 | www/tomcat/v11/distinfo |
| 1.17.2.1 | +1 | -1 | www/tomcat/v11/Makefile |
| 1.14.2.1 | +1 | -1 | www/tomcat/v11/pkg/PLIST-examples |
| +6 | -6 | 3 files | |
update to tomcat-10.1.55
| Version | Delta | File | |
|---|---|---|---|
| 1.41.2.1 | +4 | -4 | www/tomcat/v10/distinfo |
| 1.35.2.1 | +1 | -1 | www/tomcat/v10/pkg/PLIST-examples |
| 1.48.2.1 | +1 | -1 | www/tomcat/v10/Makefile |
| +6 | -6 | 3 files | |
update to tomcat-9.0.118
| Version | Delta | File | |
|---|---|---|---|
| 1.53.2.1 | +4 | -4 | www/tomcat/v9/distinfo |
| 1.46.2.1 | +1 | -1 | www/tomcat/v9/pkg/PLIST-examples |
| 1.61.2.1 | +1 | -1 | www/tomcat/v9/Makefile |
| +6 | -6 | 3 files | |
update to tomcat-10.1.55
| Version | Delta | File | |
|---|---|---|---|
| 1.42 | +4 | -4 | www/tomcat/v10/distinfo |
| 1.49 | +1 | -1 | www/tomcat/v10/Makefile |
| 1.36 | +1 | -1 | www/tomcat/v10/pkg/PLIST-examples |
| +6 | -6 | 3 files | |
textproc/trdsql: update to 1.2.3
| Version | Delta | File | |
|---|---|---|---|
| 1.4 | +2 | -2 | textproc/trdsql/distinfo |
| 1.4 | +1 | -1 | textproc/trdsql/Makefile |
| +3 | -3 | 2 files | |
Allow run-shell arguments after a shell command to be expanded as #1, #2 and so on. From Rasmus Thystrup Karstensen in GitHub issue 5121.
| Version | Delta | File | |
|---|---|---|---|
| 1.91 | +15 | -6 | usr.bin/tmux/cmd-run-shell.c |
| 1.1059 | +17 | -3 | usr.bin/tmux/tmux.1 |
| 1.368 | +9 | -2 | usr.bin/tmux/format.c |
| +41 | -11 | 3 files | |
differentiate between execution failures and subsystem not found when logging why a subsystem failed to start; GHPR#637 from cuiweixie
| Version | Delta | File | |
|---|---|---|---|
| 1.349 | +27 | -24 | usr.bin/ssh/session.c |
| +27 | -24 | 1 files | |
Update to sameboy-1.0.3.
| Version | Delta | File | |
|---|---|---|---|
| 1.18 | +3 | -3 | emulators/sameboy/Makefile |
| 1.13 | +2 | -2 | emulators/sameboy/distinfo |
| 1.13 | +2 | -2 | emulators/sameboy/patches/patch-Makefile |
| +7 | -7 | 3 files | |
Update to rgbds-1.0.1.
| Version | Delta | File | |
|---|---|---|---|
| 1.13 | +2 | -2 | devel/rgbds/distinfo |
| 1.19 | +1 | -1 | devel/rgbds/Makefile |
| 1.4 | +1 | -1 | devel/rgbds/patches/patch-src_asm_main_cpp |
| 1.4 | +1 | -1 | devel/rgbds/patches/patch-src_fix_main_cpp |
| 1.5 | +1 | -1 | devel/rgbds/patches/patch-src_gfx_main_cpp |
| 1.4 | +1 | -1 | devel/rgbds/patches/patch-src_link_main_cpp |
| +7 | -7 | 6 files | |
Update to cyberchef-11.0.0.
| Version | Delta | File | |
|---|---|---|---|
| 1.4 | +4 | -6 | security/cyberchef/Makefile |
| 1.4 | +2 | -2 | security/cyberchef/distinfo |
| 1.3 | +1 | -1 | security/cyberchef/pkg/PLIST |
| +7 | -9 | 3 files | |
Update to vnu-26.5.29.
| Version | Delta | File | |
|---|---|---|---|
| 1.22 | +3 | -3 | www/vnu/Makefile |
| 1.13 | +2 | -2 | www/vnu/distinfo |
| +5 | -5 | 2 files | |
audio/gmpc-plugins: add some GTK_MACRO casts to fix build with llvm 22
| Version | Delta | File | |
|---|---|---|---|
| 1.4 | +28 | -2 | audio/gmpc-plugins/patches/patch-gmpc-shout_src_plugin_c |
| +28 | -2 | 1 files | |