oranglauncher

LOW
maintainer adasjusk 1 votes scanned 2026-09-17 00:27:14.276658
View on AUR
Why flagged

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

Low AI review downgraded a static finding 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)
Medium pip install of an external package 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) highlighted
1pkgname=oranglauncher
2pkgver=8.0.0
3pkgrel=1
4pkgdesc="Orange Launcher for Arch Linux (built from source with Nuitka)"
5arch=(x86_64)
6url="https://oranges.lt"
7license=('MIT')
8depends=(glibc tk webkit2gtk-4.1 gtk3 gobject-introspection-runtime)
9makedepends=(python python-pip gcc
10 gobject-introspection gtk3 webkit2gtk-4.1 cairo pkgconf
11 python-setuptools python-wheel)
12conflicts=(oranglauncher-bin)
13source=("OrangLaunch-${pkgver}.tar.gz::https://github.com/Orang-Studio/OrangLaunch/archive/refs/tags/${pkgver}.tar.gz"
14 "oranglauncher.sh"
15 "oranglauncher.desktop"
16 "orange.png"
17 "LICENSE"
18 "oranglauncher-mime.xml")
19sha256sums=('4713a085d8a3642f4601716c46a1d1cccb3c5d990ad651394c021608977ec4be'
20 'f9aca31c4c3e1e789c7047fed380019744cf13a1e03d7857ac0f7b488d8cc607'
21 '23d8bec255eee86f4843603b5e46d1dada47ce30b05efb79fa1dd0ec4e781df0'
22 'ddbe0ca155b67fcfc1fecdba1cbc6a3aac5a2011316bbb4a222e1f48f8987968'
23 '3c8133c78d2e468f22643e465f8abcf4404742dc1b80c5eb64742039d70c5afa'
24 '2d0cdbad857e3b7fe79c41f981a89ad1c595d54e43884b3fd5d89892ec0bf07c')
25
26options=(!debug !strip !lto)
27
28build() {
29 cd "$srcdir/OrangLaunch-${pkgver}"
30 python -m venv --system-site-packages build-venv
31 build-venv/bin/pip install --upgrade pip wheel nuitka
32 build-venv/bin/pip install -r requirements.txt
33
34 # Arch ships patchelf 0.18.0, which Nuitka refuses (known buggy release).
35 # pull a known-good patchelf into the venv and put it ahead of the system one.
36 build-venv/bin/pip install "patchelf==0.17.2.4"
37 export PATH="$srcdir/OrangLaunch-${pkgver}/build-venv/bin:$PATH"
38
39 build-venv/bin/python -m nuitka \
40 --standalone \
41 --assume-yes-for-downloads \
42 --enable-plugin=tk-inter \
43 --include-package=gi \
44 --include-data-dir=oranglauncher=oranglauncher \
45 --output-filename=launcher.bin \
46 --output-dir=build \
47 --remove-output \
48 launcher.py
49}
50
51package() {
52 cd "$srcdir/OrangLaunch-${pkgver}"
53 install -d "$pkgdir/usr/lib/oranglauncher"
54 cp -r build/launcher.dist/. "$pkgdir/usr/lib/oranglauncher/"
55 chmod -R a+rX "$pkgdir/usr/lib/oranglauncher"
56 find "$pkgdir/usr/lib/oranglauncher" -type d -exec chmod 0755 {} +
57 find "$pkgdir/usr/lib/oranglauncher" -type f -perm /111 -exec chmod 0755 {} +
58 find "$pkgdir/usr/lib/oranglauncher" -type f ! -perm /111 -exec chmod 0644 {} +
59
60 install -Dm755 "$srcdir/oranglauncher.sh" "$pkgdir/usr/bin/oranglauncher"
61 install -Dm644 "$srcdir/oranglauncher.desktop" "$pkgdir/usr/share/applications/oranglauncher.desktop"
62 sed -i "s|Exec=.*|Exec=/usr/bin/oranglauncher %f|g" "$pkgdir/usr/share/applications/oranglauncher.desktop"
63 sed -i "s|Icon=.*|Icon=/usr/share/icons/hicolor/256x256/apps/oranglauncher.png|g" "$pkgdir/usr/share/applications/oranglauncher.desktop"
64 install -Dm644 "$srcdir/orange.png" "$pkgdir/usr/share/icons/hicolor/256x256/apps/oranglauncher.png"
65 install -Dm644 "$srcdir/oranglauncher-mime.xml" "$pkgdir/usr/share/mime/packages/oranglauncher.xml"
66 install -Dm644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
67}
68

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)SeverityRules
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

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion