oranglauncher

maintainer adasjusk · 1 votes · scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged The pip installs are part of building the project from source using its own requirements and tools; the source is from the official GitHub repository, and no untrusted executables or data exfiltration are present.

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-07-25) 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 tools; the source is from the official GitHub repository, and no untrusted executables or data exfiltration are present.

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=6.1.7
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=('5fbceeb1b1034a1569834c112d7bee8020d392dd5c4ed3eec0e341bf59a7c167'
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

Scan history

Scanned at (UTC)SeverityRules
2026-08-03 00:08:14 LOW 2
2026-08-02 00:16:08 LOW 2
2026-08-01 00:11:18 LOW 2
2026-07-31 00:14:10 LOW 2
2026-07-30 00:17:23 LOW 2
2026-07-29 00:25:53 LOW 2
2026-07-28 00:07:28 LOW 2
2026-07-27 00:24:32 LOW 2
2026-07-26 00:07:32 LOW 2
2026-07-25 00:13:44 LOW 2
2026-07-24 00:02:28 LOW 2
2026-07-23 00:14:47 LOW 2
2026-07-22 00:29:32 LOW 2
2026-07-21 00:24:15 LOW 2
2026-07-20 00:19:49 LOW 2
2026-07-19 00:17:08 LOW 2
2026-07-18 00:14:48 LOW 2
2026-07-17 00:06:16 LOW 2
2026-07-16 00:05:41 LOW 2
2026-07-15 00:09:25 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