feat: add missing KF6 framework recipes

This commit is contained in:
2026-05-07 07:53:26 +01:00
parent d8d498f831
commit a69f479b52
2374 changed files with 2610246 additions and 0 deletions
@@ -0,0 +1,23 @@
#!/usr/bin/env python
from __future__ import print_function
tokens = []
with open("makensiscmdhelp.output") as f: # output from `makensis /cmdhelp`
for line in f:
if line.startswith(" "):
continue # line continuation
tokens.append(line.split()[0])
keywords = [x[1:] for x in tokens if x.startswith("!")]
basefuncs = [x for x in tokens if not x.startswith("!")]
print("KEYWORDS")
for keyword in keywords:
print("<item> %s </item>" % keyword)
print()
print("BASEFUNCS")
for basefunc in basefuncs:
print("<item> %s </item>" % basefunc)