tmpfiles.d config doesn't match default configuration anymore

pkgver=11.0.1
pkgrel=1

These lines in tmpfiles.conf:

d /var/lib/forgejo 0750
d /var/lib/forgejo/attachments 0750
d /var/lib/forgejo/data 0750
d /var/lib/forgejo/indexers 0750
d /var/lib/forgejo/repos 0750
d /var/lib/forgejo/tmp 0750

Should be:

d /var/lib/forgejo 0750
d /var/lib/forgejo/data 0750
d /var/lib/forgejo/data/attachments 0750
d /var/lib/forgejo/data/forgejo-repositories 0750
d /var/lib/forgejo/data/indexers 0750
d /var/lib/forgejo/data/tmp 0750

And this line:

d /var/log/forgejo 0750 forgejo forgejo

Seems to be incorrect, as the default configuration uses /var/lib/forgejo/log instead (perhaps this should be overridden in the PKGBUILD, similar to the WorkPath setting)

Some of this can be verified on a clean installation with an empty app.ini using sudo -u forgejo forgejo -c /etc/forgejo/app.ini doctor check paths.