oranglauncher
The pip installs are part of building the project from source using its own requirements and official tools (Nuitka, patchelf) in a local venv; the source is from the project's official GitHub repo and the installed packages are standard build dependencies.
Triggered rules
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-2507) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The pip installs are part of building the project from source using its own requirements and official tools (Nuitka, patchelf) in a local venv; the source is from the project's official GitHub repo and the installed packages are standard build dependencies.
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:31
build-venv/bin/pip install --upgrade pip wheel nuitka -
PKGBUILD:32
build-venv/bin/pip install -r requirements.txt -
PKGBUILD:36
build-venv/bin/pip install "patchelf==0.17.2.4"
PKGBUILD
3 offending line(s) highlightedpkgname=oranglauncher
pkgver=8.0.0
pkgrel=1
pkgdesc="Orange Launcher for Arch Linux (built from source with Nuitka)"
arch=(x86_64)
url="https://oranges.lt"
license=('MIT')
depends=(glibc tk webkit2gtk-4.1 gtk3 gobject-introspection-runtime)
makedepends=(python python-pip gcc
gobject-introspection gtk3 webkit2gtk-4.1 cairo pkgconf
python-setuptools python-wheel)
conflicts=(oranglauncher-bin)
source=("OrangLaunch-${pkgver}.tar.gz::https://github.com/Orang-Studio/OrangLaunch/archive/refs/tags/${pkgver}.tar.gz"
"oranglauncher.sh"
"oranglauncher.desktop"
"orange.png"
"LICENSE"
"oranglauncher-mime.xml")
sha256sums=('4713a085d8a3642f4601716c46a1d1cccb3c5d990ad651394c021608977ec4be'
'f9aca31c4c3e1e789c7047fed380019744cf13a1e03d7857ac0f7b488d8cc607'
'23d8bec255eee86f4843603b5e46d1dada47ce30b05efb79fa1dd0ec4e781df0'
'ddbe0ca155b67fcfc1fecdba1cbc6a3aac5a2011316bbb4a222e1f48f8987968'
'3c8133c78d2e468f22643e465f8abcf4404742dc1b80c5eb64742039d70c5afa'
'2d0cdbad857e3b7fe79c41f981a89ad1c595d54e43884b3fd5d89892ec0bf07c')
options=(!debug !strip !lto)
build() {
cd "$srcdir/OrangLaunch-${pkgver}"
python -m venv --system-site-packages build-venv
build-venv/bin/pip install --upgrade pip wheel nuitka
build-venv/bin/pip install -r requirements.txt
# Arch ships patchelf 0.18.0, which Nuitka refuses (known buggy release).
# pull a known-good patchelf into the venv and put it ahead of the system one.
build-venv/bin/pip install "patchelf==0.17.2.4"
export PATH="$srcdir/OrangLaunch-${pkgver}/build-venv/bin:$PATH"
build-venv/bin/python -m nuitka \
--standalone \
--assume-yes-for-downloads \
--enable-plugin=tk-inter \
--include-package=gi \
--include-data-dir=oranglauncher=oranglauncher \
--output-filename=launcher.bin \
--output-dir=build \
--remove-output \
launcher.py
}
package() {
cd "$srcdir/OrangLaunch-${pkgver}"
install -d "$pkgdir/usr/lib/oranglauncher"
cp -r build/launcher.dist/. "$pkgdir/usr/lib/oranglauncher/"
chmod -R a+rX "$pkgdir/usr/lib/oranglauncher"
find "$pkgdir/usr/lib/oranglauncher" -type d -exec chmod 0755 {} +
find "$pkgdir/usr/lib/oranglauncher" -type f -perm /111 -exec chmod 0755 {} +
find "$pkgdir/usr/lib/oranglauncher" -type f ! -perm /111 -exec chmod 0644 {} +
install -Dm755 "$srcdir/oranglauncher.sh" "$pkgdir/usr/bin/oranglauncher"
install -Dm644 "$srcdir/oranglauncher.desktop" "$pkgdir/usr/share/applications/oranglauncher.desktop"
sed -i "s|Exec=.*|Exec=/usr/bin/oranglauncher %f|g" "$pkgdir/usr/share/applications/oranglauncher.desktop"
sed -i "s|Icon=.*|Icon=/usr/share/icons/hicolor/256x256/apps/oranglauncher.png|g" "$pkgdir/usr/share/applications/oranglauncher.desktop"
install -Dm644 "$srcdir/orange.png" "$pkgdir/usr/share/icons/hicolor/256x256/apps/oranglauncher.png"
install -Dm644 "$srcdir/oranglauncher-mime.xml" "$pkgdir/usr/share/mime/packages/oranglauncher.xml"
install -Dm644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
Changes since previous scan
--- PKGBUILD @ 2026-09-16 00:03+++ PKGBUILD @ 2026-09-17 00:27@@ -1,5 +1,5 @@ pkgname=oranglauncher-pkgver=7.1.0+pkgver=8.0.0 pkgrel=1 pkgdesc="Orange Launcher for Arch Linux (built from source with Nuitka)" arch=(x86_64)@@ -16,7 +16,7 @@ "orange.png" "LICENSE" "oranglauncher-mime.xml")-sha256sums=('7e1f75d6a841734feb26bfeb8002663a727921b9da5375cf2f7434b3c824e1e6'+sha256sums=('4713a085d8a3642f4601716c46a1d1cccb3c5d990ad651394c021608977ec4be' 'f9aca31c4c3e1e789c7047fed380019744cf13a1e03d7857ac0f7b488d8cc607' '23d8bec255eee86f4843603b5e46d1dada47ce30b05efb79fa1dd0ec4e781df0' 'ddbe0ca155b67fcfc1fecdba1cbc6a3aac5a2011316bbb4a222e1f48f8987968'Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-17 00:27:14 | Low | 2 |
| 2026-09-16 15:22:50 | Medium | 1 |
| 2026-09-16 00:03:17 | Low | 2 |
| 2026-09-15 00:25:31 | Low | 2 |
| 2026-09-14 15:17:35 | Medium | 1 |
| 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 |