openplc-editor-git
The pip install commands are part of building the project's own environment using pinned, declared dependencies from PyPI; this is normal for Python-based applications and does not involve untrusted or obfuscated code execution.
Triggered rules
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-07-25) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The pip install commands are part of building the project's own environment using pinned, declared dependencies from PyPI; this is normal for Python-based applications and does not involve untrusted or obfuscated code execution.
1 higher static finding superseded - not the current verdict (shown for transparency)
pip_install_external
`pip install <package>` fetches an unpinned package from PyPI at build time, outside source=() and makepkg's checksums.
-
PKGBUILD:33
"${srcdir}/OpenPLC_Editor/.venv/bin/python" -m pip install --upgrade pip -
PKGBUILD:34
"${srcdir}/OpenPLC_Editor/.venv/bin/python" -m pip install wheel jinja2 lxml==4.6.2 future matplotlib zeroconf pyserial pypubsub pyro5 attrdict3 -
PKGBUILD:35
"${srcdir}/OpenPLC_Editor/.venv/bin/python" -m pip install wxPython==4.2.0
PKGBUILD
3 offending line(s) highlighted# Maintainer: watasuke <watasuke102@gmail.com>
_pkgname=openplc-editor
pkgname="${_pkgname}-git"
pkgver=r479.5e4f443
pkgrel=4
pkgdesc="OpenPLC editor"
arch=("x86_64")
url="https://github.com/thiagoralves/OpenPLC_Editor"
source=("git+${url}.git")
license=("GPL2")
md5sums=("SKIP")
makedepends=("git")
depends=("python39")
pkgver() {
cd "${srcdir}/OpenPLC_Editor"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "${srcdir}/OpenPLC_Editor"
git submodule update --init --recursive
cd matiec
autoreconf -i
./configure --prefix="${pkgdir}" CXXFLAGS="-std=c++03"
make -s
cp ./iec2c ../editor/arduino/bin/
}
prepare() {
mkdir -p "${srcdir}/OpenPLC_Editor/.venv"
python3.9 -m venv "${srcdir}/OpenPLC_Editor/.venv"
"${srcdir}/OpenPLC_Editor/.venv/bin/python" -m pip install --upgrade pip
"${srcdir}/OpenPLC_Editor/.venv/bin/python" -m pip install wheel jinja2 lxml==4.6.2 future matplotlib zeroconf pyserial pypubsub pyro5 attrdict3
"${srcdir}/OpenPLC_Editor/.venv/bin/python" -m pip install wxPython==4.2.0
cat << END > OpenPLC_Editor.desktop
[Desktop Entry]
Name=OpenPLC Editor
Categories=Development;
Exec="/opt/OpenPLC_Editor/openplc_editor.sh"
Icon=/opt/OpenPLC_Editor/editor/images/brz.png
Type=Application
Terminal=false
END
cd "${srcdir}/OpenPLC_Editor"
cat << END > openplc_editor.sh
#!/bin/bash
cd "/opt/OpenPLC_Editor"
if [ -d "./new_editor" ]; then
rm -Rf editor
rm -Rf ./matiec/lib
mv ./new_editor ./editor
mv ./new_lib ./matiec/lib
fi
source ".venv/bin/activate"
export GDK_BACKEND=x11
./.venv/bin/python3 ./editor/Beremiz.py
END
chmod +x openplc_editor.sh
}
package() {
install -dm755 "$pkgdir/opt"
cp -r "${srcdir}/OpenPLC_Editor" "$pkgdir/opt/OpenPLC_Editor"
install -Dm644 "OpenPLC_Editor.desktop" "${pkgdir}/usr/share/applications/OpenPLC_Editor.desktop"
}
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 |