editors/with-editor: Update to 3.4.9
Also, do not byte-compile Elisp since .elc files are no longer packaged.
This means we can remove BUILD_DEPENDS and MAKE_JOBS_UNSAFE.
Sponsored by: The FreeBSD Foundation
devel/llama.el: Update to 1.0.4
Also, do not byte-compile Elisp since .elc files are no longer packaged.
This means we can remove BUILD_DEPENDS and MAKE_JOBS_UNSAFE.
Sponsored by: The FreeBSD Foundation
devel/ghub: Update to 5.1.0
Also, do not byte-compile Elisp since .elc files are no longer packaged.
This means we can remove BUILD_DEPENDS and MAKE_JOBS_UNSAFE.
Sponsored by: The FreeBSD Foundation
graphics/feh: Update to 3.12.1
Upstream changes since last port update:
v3.12.1
- Update tests to reflect the %f/%F changes implemented in v3.12
v3.12
- Disallow %f and %n format specifiers in --action and --info strings; abort
with an error message if those are encountered. Use %F and %N instead.
Rationale: %f and %n do not escape shell-specific syntax and are thus a
security risk when passing untrusted file names to feh. %F and %N, which have
been available since v2.3 (Feb 2012), do escape shell-specific syntax.
Migration path: Replace %f (or '%f') and %n (or '%n') with %F and %N (without
'') in --action and --info commands.
v3.11.4
- Fix formatting in man page for groff 1.23.0+ (patch by Keith Thompson)
- Do not skip URLs when --sort mtime or similar are used (patch by elig0n)
[3 lines not shown]
mail/notmuch: PORTREVISION must be set with ?=
Set PORTREVISION with ?= so the values in slave ports are not
overwritten.
Sponsored by: The FreeBSD Foundation
[clang][LoongArch] Check target features in CheckLoongArchBuiltinFunctionCall (#191811)
Add target features check in `CheckLoongArchBuiltinFunctionCall`, thus
we could through an error
when pass the `-mno-lsx` to clang while using the builtin LSX intrinsics
for global variables instead of
trigger an ICE.
Minimal Example:
```
// clang-20 --march=loongarch64 -mno-lsx -S -o - "x.cc"
__attribute__((__vector_size__(16))) long foo = __builtin_lsx_vinsgr2vr_w(foo, 0, 0);
```
and the compiler will output
```
x.cc:1:49: error: builtin needs target feature lsx
1 | __attribute__((__vector_size__(16))) long foo = __builtin_lsx_vinsgr2vr_w(foo, 0, 0);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
[2 lines not shown]
[Driver] Gnu: Move -s/-t/-u emission to match GCC order (#192883)
GCC places -s, -t, and -u sym in one contiguous group just before
Scrt1.o / crt1.o, with -L paths after the CRT files.
Match that ordering by dropping the early `push_back("-s")` and rolling
-s, -t, and -u into one addAllArgs call placed immediately after -o
output. This keeps -Wl,... after -s/-t/-u so that user overrides like
-Wl,--strip-debug still take precedence. Update linux-ld-args.c to
-T remains at the end so earlier -L paths take precedence.
[MLIR][Vector] Fix `scf.for` block-argument yields in warp distribution (#192247)
Teach WarpOpScfForOp to remap yielded `scf.for` body block arguments
through `argMapping` before creating the replacement `gpu.yield`.
Handle yielded loop-carried values and other `scf.for` body block
arguments when moving the loop body into the new inner warp op, instead
of reusing the pre-merge values.
Add a regression test for yielding a loop-carried block argument during
warp distribution.
Fix #186573