sakura-launcher-gui
The pip install is from the project's own requirements.txt within the checked-out Git repository, which is a normal part of building the application from source; the dependencies are not from an external or untrusted origin in a supply-chain sense.
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 is from the project's own requirements.txt within the checked-out Git repository, which is a normal part of building the application from source; the dependencies are not from an external or untrusted origin in a supply-chain sense.
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:61
pip install -r requirements.txt
PKGBUILD
1 offending line(s) highlighted# Maintainer: ResRipper <resripper at connective dot link>
# shellcheck disable=SC2034,SC2148,SC2154
pkgname=sakura-launcher-gui
pkgver=v1.2.0_beta
pkgrel=5
pkgdesc="A simple SakuraLLM launcher"
arch=(x86_64)
url='https://github.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI'
license=('GPL-3.0-only')
options=(!debug)
makedepends=(
git
python-pip
# Lib
at-spi2-core
cairo
freetype2
gdk-pixbuf2
gtk3
harfbuzz
libx11
libxcb
libxkbcommon
libxkbcommon-x11
pango
xcb-util
xcb-util-cursor
xcb-util-image
xcb-util-keysyms
xcb-util-renderutil
xcb-util-wm
)
source=(
"$pkgname::git+https://github.com/PiDanShouRouZhouXD/Sakura_Launcher_GUI#tag=${pkgver/_/-}"
main.spec
sakura-launcher-gui.desktop
sakura-launcher-gui.png
)
sha256sums=(
fef9109ecf0a0b9effd98a816d805dd20dde5763beea03cf11fb434ee55542cf
3471e9b6f5c99f683fc5f60da965d708f396302dfce224138352cd457f4fdb96
dc4ecb769e489538a308c6626a305b173c01216f97d570ff52828532cee6f3be
307a4a88fcc2c62b11e7ca8cf9310ed0f755d8a5f8f4820d76c5874a980ba3d9
)
build() {
cd "$pkgname" || exit
# Create build environment
python -m venv .venv
source .venv/bin/activate
# Install dependencies
echo "$(sed 's/^wmi$//' requirements.txt)" > requirements.txt # Remove WMI
pip install -r requirements.txt
# Build
mv -f "$srcdir/main.spec" ./
pyinstaller main.spec
# Clean-up
rm -rf .venv
}
package() {
cd "$pkgdir" || exit
# Icon
install -dm0755 "$pkgdir/usr/share/icons/hicolor/256x256/apps/"
cp "$srcdir/sakura-launcher-gui.png" "$pkgdir/usr/share/icons/hicolor/256x256/apps/"
chmod 644 "$pkgdir/usr/share/icons/hicolor/256x256/apps/sakura-launcher-gui.png"
# Desktop file
install -dm0755 "$pkgdir/usr/share/applications"
cp "$srcdir/sakura-launcher-gui.desktop" "$pkgdir/usr/share/applications/"
chmod 644 "$pkgdir/usr/share/applications/sakura-launcher-gui.desktop"
# Install app
# TODO: switch to 755 once customized data path is supported
install -dm777 "$pkgdir/opt/sakura-launcher-gui"
cp "$srcdir/$pkgname/dist/sakura_launcher" "$pkgdir/opt/sakura-launcher-gui/"
}
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 |