project.conf, py-topdir.mk: Fix check target for Kali
"make check" fails on Kali Linux, because the machinery lacks pieces:
- Add mypy, yapf3, python3-pyright to project.conf for Debian. The pyright package is not in upstream Kali, but is now supplied by the jw-foss repo.- ifdef ruff out from "make check" in py-topdir.mk, because it's too much work to get that to work from packages on Kali Linux for now.project.conf, py-topdir.mk: Make Kali work
Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
d0621f5c57
commit
f1456f1d46
2 changed files with 20 additions and 6 deletions
|
|
@ -21,7 +21,7 @@ devel = jw-pkg-run = VERSION-REVISION
|
|||
run = bash, python3
|
||||
build = make, time, xdg-utils, coreutils, cpio, xdg-utils, git-core
|
||||
devel = sudo, gawk, pkg-config
|
||||
release = python3-isort, python3-yapf, python3-ruff, python3-pyright
|
||||
release = mypy, python3-isort, python3-yapf, python3-pyright
|
||||
|
||||
[pkg.requires.centos]
|
||||
run = hostname, python
|
||||
|
|
@ -36,11 +36,11 @@ build = realpath
|
|||
|
||||
[pkg.requires.suse]
|
||||
run = python3
|
||||
release = rpmbuild, python3-base
|
||||
release = rpmbuild, python3-base, python3-yapf
|
||||
|
||||
[pkg.requires.debian]
|
||||
run = python3
|
||||
release = devscripts, debhelper, dput, libparse-debcontrol-perl, fakeroot, build-essential:native
|
||||
release = devscripts, debhelper, dput, libparse-debcontrol-perl, fakeroot, build-essential:native, yapf3
|
||||
|
||||
[pkg.requires.yocto]
|
||||
run = python3-core
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue