wadptr: Update to 3.8
- Remove existing pkgsrc patch (merged upstream)
- Add pkgsrc patch for tolower() parameter of type char
- Add pkgsrc patch to install files with desired permissions
- Force C standard to C99
- Enable testsuite
- Take maintainership
* The `-u` ("uncompress") option was renamed to `-d` ("decompress", the
usual terminology used by almost every other compression tool).
* A bug was fixed that made the Windows version for the previous release not
work properly; a dependency was unintentionally added on the pthreads API,
the DLL for which was not included in the release. That dependency has now
been removed. Thanks to Anonysussy and happygreenfairy for the bug report.
* A special sector tag range (9700-9799) is now recognized for special
effects. There are some cases where level authors may deliberately want
sidedefs to be merged even when they are attached to special lines, and
this allows that. Thanks to kitchen-ace for the suggestion.
[16 lines not shown]
[Dexter] Enable after_hit_count for state nodes (#203846)
The after_hit_count attribute for a state node causes it to become
active only after it would have become active N times. This uses the
existing logic for incrementing hit counts, i.e. after the node becomes
"active", we will not add another hit count until it stops being active
for at least one step. Since state nodes with after_hit_count do not
become active before reaching the required hit count, this requires us
to keep track of an "early" set of state nodes, meaning nodes that would
be active if not for their after_hit_count.
dns/powerdns: Update 5.1.2 => 5.1.3
While here:
- Update options' descriptions.
- Drop the backported patch, it's made into release.
Changelog:
https://doc.powerdns.com/authoritative/changelog/5.1.html#change-5.1.3
PR: 296400
Reported by: Jordan Ostreff <jordan at ostreff.info>
Approved by: Ralf van der Enden <tremere at cainites.net> (maintainer)
Approved by: osa, vvd (Mentors, implicit)
MFH: 2026Q2
(cherry picked from commit 27d147dd421dd767d40e0d069b413b55650fd095)
dns/powerdns: Update 5.1.2 => 5.1.3
While here:
- Update options' descriptions.
- Drop the backported patch, it's made into release.
Changelog:
https://doc.powerdns.com/authoritative/changelog/5.1.html#change-5.1.3
PR: 296400
Reported by: Jordan Ostreff <jordan at ostreff.info>
Approved by: Ralf van der Enden <tremere at cainites.net> (maintainer)
Approved by: osa, vvd (Mentors, implicit)
MFH: 2026Q2
[mlir][affine] Add trip count check for affine-pipeline-data-transfer pass (#206755)
Fix `affine-pipeline-data-transfer` to skip loops with a constant trip
count ≤0, avoiding invalid DMA generation that leads to wrong code.
[Dexter] Update lldb-based dexter-tests to use script-mode
This patch replaces uses of heuristic-mode Dexter in the dexter-tests suite
with uses of the script-mode, for tests that use DAP (via lldb-dap). The
updates are largely straightforward but occasionally non-trivial, and in
some cases some slight modifications have been made to keep the "spirit" of
the test intact.
[Dexter] Switch to using script-mode by default
This patch changes the default mode of Dexter from heuristic-mode to
script-mode. The --use-script argument is replaced with --use-heuristic,
some comments/docs/error messages are updated accordingly, and tests have
their flags switched accordingly.
[Dexter] Document the structured script model
This patch adds documentation for the script model to the Dexter README,
shunting heuristic-mode information into a separate doc, creating a new
doc for script-mode, and linking to both (with a brief summary of the
differences) from the base README.
[Dexter] Add ability to check float values within a range
Adds a new node type, !float, which can be used to match debugger ouptut as
float values rather than as strings, optionally allowing a range to be
specified for inexact matches. This new node allows a list of values to be
given, effectively a shorthand for a list of individual !float nodes.