python-wpiformat-git
The pip installs in check() and package() are for clang-format and clang-tidy, which are legitimate dependencies; they are not obfuscated or malicious, and the package builds from a trusted project-owned git repository.
Triggered rules
pip_install_external
`pip install <package>` fetches an unpinned package from PyPI at build time, outside source=() and makepkg's checksums. Severity reduced: python-* packages routinely use pip.
-
PKGBUILD:42
test-env/bin/pip install clang-format clang-tidy -
PKGBUILD:49
pip install clang-format clang-tidy --no-deps --root ${pkgdir} --ignore-installed
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The pip installs in check() and package() are for clang-format and clang-tidy, which are legitimate dependencies; they are not obfuscated or malicious, and the package builds from a trusted project-owned git repository.
PKGBUILD
2 offending line(s) highlighted# Maintainer: Tyler Veness <calcmogul at gmail dot com>
pkgname=python-wpiformat-git
pkgver=2026.67
pkgrel=1
pkgdesc="Linters and formatters for ensuring WPILib's source code conforms to its style guide"
arch=('i686' 'x86_64')
url="https://github.com/wpilibsuite/styleguide"
license=('BSD-3-Clause')
depends=('clang'
'python-cpplint'
'python-gersemi'
'python-ruff')
makedepends=('python-build'
'python-installer'
'python-pytest'
'python-setuptools-git-versioning')
provides=('python-wpiformat')
conflicts=('python-wpiformat')
source=(git+https://github.com/wpilibsuite/styleguide)
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/styleguide"
year=$(date +%Y)
echo $year.$(git rev-list --count --after="main@{$(($year - 1))-01-01}" main)
}
prepare() {
cd "${srcdir}/styleguide/wpiformat"
sed -i 's/==[0-9]\+\.[0-9]\+\.[0-9]\+//' pyproject.toml
}
build() {
cd "${srcdir}/styleguide/wpiformat"
python -m build --wheel
}
check() {
cd "${srcdir}/styleguide/wpiformat"
python -m venv --system-site-packages test-env
test-env/bin/pip install clang-format clang-tidy
test-env/bin/pip install dist/*.whl --no-deps
test-env/bin/python -P -m pytest
}
package() {
cd "${srcdir}/styleguide/wpiformat"
pip install clang-format clang-tidy --no-deps --root ${pkgdir} --ignore-installed
python -m installer --destdir="$pkgdir" dist/*.whl
# Remove binaries already provided by clang package
cd "${pkgdir}/usr/bin"
find . -type f -not -name wpiformat -delete
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-17 00:27:14 | Low | 2 |
| 2026-09-16 00:03:17 | Low | 2 |
| 2026-09-15 00:25:31 | Low | 2 |
| 2026-09-14 00:27:57 | Low | 2 |
| 2026-09-13 00:19:54 | Low | 2 |
| 2026-09-12 00:25:17 | Low | 2 |
| 2026-09-11 00:19:22 | Low | 2 |
| 2026-09-10 00:22:44 | Low | 2 |
| 2026-09-09 00:04:09 | Low | 2 |
| 2026-09-08 00:18:08 | Low | 2 |
| 2026-09-07 00:30:15 | Low | 2 |
| 2026-09-06 00:17:06 | Low | 2 |
| 2026-09-05 00:16:27 | Low | 2 |
| 2026-09-04 00:03:13 | Low | 2 |
| 2026-09-03 00:15:47 | Low | 2 |
| 2026-09-02 00:02:31 | Low | 2 |
| 2026-09-01 00:11:19 | Low | 2 |
| 2026-08-31 00:19:57 | Low | 2 |
| 2026-08-30 00:04:14 | Low | 2 |
| 2026-08-29 00:29:17 | Low | 2 |