chronodash

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

The pip install is used to install dependencies from a requirements.txt file within a local venv during prepare(), which is a normal part of building the project from its own source; the source is from the project's official GitHub repo, and no untrusted external packages are dynamically fetched.

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 install is used to install dependencies from a requirements.txt file within a local venv during prepare(), which is a normal part of building the project from its own source; the source is from the project's official GitHub repo, and no untrusted external packages are dynamically fetched.

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:28 pip install --no-cache-dir --upgrade pip
  • PKGBUILD:29 pip install --no-cache-dir -r requirements.txt || { echo "Pip install failed!"; exit 1; }

PKGBUILD

2 offending line(s) highlighted
1# Maintainer: Overl1te Overl1teGithub@yandex.ru
2
3pkgname=chronodash
4pkgver=2.2.7_beta
5pkgrel=1
6pkgdesc="Transparent always-on-top desktop widgets (clocks, weather etc)"
7arch=('x86_64')
8url="https://github.com/Overl1te/ChronoDash"
9license=('GPL3')
10depends=('python' 'qt6-base' 'qt6-svg' 'libx11' 'tk' 'glibc')
11makedepends=('git' 'python-pip' 'python-wheel' 'python-setuptools')
12provides=('chronodash')
13conflicts=('chronodash-bin' 'chronodash-git')
14source=("git+https://github.com/Overl1te/ChronoDash.git")
15sha256sums=('SKIP')
16
17pkgver() {
18 cd "${srcdir}/ChronoDash"
19 local count=$(git rev-list --count HEAD 2>/dev/null || echo 0)
20 local hash=$(git rev-parse --short HEAD 2>/dev/null || echo unknown)
21 printf "2.2.5.7_beta.r%s.%s" "$count" "$hash"
22}
23
24prepare() {
25 cd "${srcdir}/ChronoDash"
26 python -m venv venv
27 source venv/bin/activate
28 pip install --no-cache-dir --upgrade pip
29 pip install --no-cache-dir -r requirements.txt || { echo "Pip install failed!"; exit 1; }
30 deactivate
31}
32
33build() {
34 cd "${srcdir}/ChronoDash"
35 source venv/bin/activate
36 bash build_arch.sh || { echo "build_arch.sh failed! Check logs."; exit 1; }
37 deactivate
38}
39
40package() {
41 cd "${srcdir}/ChronoDash"
42
43 install -dm755 "$pkgdir/opt/chronodash"
44 if [[ -d "dist/ChronoDash" ]]; then
45 cp -r dist/ChronoDash/* "$pkgdir/opt/chronodash/"
46 elif [[ -d "dist" && -n "$(ls dist/ 2>/dev/null)" ]]; then
47 cp -r dist/* "$pkgdir/opt/chronodash/"
48 else
49 echo "Error: dist/ not found after build!"
50 exit 1
51 fi
52
53 install -dm755 "$pkgdir/usr/bin"
54 cat > "$pkgdir/usr/bin/chronodash" << 'EOF'
55#!/bin/bash
56export LD_LIBRARY_PATH=/opt/chronodash/lib:$LD_LIBRARY_PATH
57exec /opt/chronodash/ChronoDash "$@"
58EOF
59 chmod +x "$pkgdir/usr/bin/chronodash"
60
61 # Иконка
62 install -dm755 "$pkgdir/usr/share/icons/hicolor/64x64/apps"
63 for icon in assets/icons/{chronodash,logo,app,icon}.png; do
64 if [[ -f "$icon" ]]; then
65 install -Dm644 "$icon" "$pkgdir/usr/share/icons/hicolor/64x64/apps/chronodash.png"
66 break
67 fi
68 done
69
70 install -Dm644 /dev/stdin "$pkgdir/usr/share/applications/chronodash.desktop" << EOF
71[Desktop Entry]
72Type=Application
73Version=1.5
74Name=ChronoDash
75GenericName=Desktop Widgets
76Comment=Modern, customizable desktop widgets
77Exec=chronodash
78TryExec=chronodash
79Icon=chronodash
80Terminal=false
81StartupNotify=true
82Categories=Utility;System;
83EOF
84
85 install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
86}
87

Scan history

Scanned at (UTC)SeverityRules
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

Report a package

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

0 / 4000
Your suggestion