chronodash
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
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)
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# Maintainer: Overl1te Overl1teGithub@yandex.ru
pkgname=chronodash
pkgver=2.2.7_beta
pkgrel=1
pkgdesc="Transparent always-on-top desktop widgets (clocks, weather etc)"
arch=('x86_64')
url="https://github.com/Overl1te/ChronoDash"
license=('GPL3')
depends=('python' 'qt6-base' 'qt6-svg' 'libx11' 'tk' 'glibc')
makedepends=('git' 'python-pip' 'python-wheel' 'python-setuptools')
provides=('chronodash')
conflicts=('chronodash-bin' 'chronodash-git')
source=("git+https://github.com/Overl1te/ChronoDash.git")
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/ChronoDash"
local count=$(git rev-list --count HEAD 2>/dev/null || echo 0)
local hash=$(git rev-parse --short HEAD 2>/dev/null || echo unknown)
printf "2.2.5.7_beta.r%s.%s" "$count" "$hash"
}
prepare() {
cd "${srcdir}/ChronoDash"
python -m venv venv
source venv/bin/activate
pip install --no-cache-dir --upgrade pip
pip install --no-cache-dir -r requirements.txt || { echo "Pip install failed!"; exit 1; }
deactivate
}
build() {
cd "${srcdir}/ChronoDash"
source venv/bin/activate
bash build_arch.sh || { echo "build_arch.sh failed! Check logs."; exit 1; }
deactivate
}
package() {
cd "${srcdir}/ChronoDash"
install -dm755 "$pkgdir/opt/chronodash"
if [[ -d "dist/ChronoDash" ]]; then
cp -r dist/ChronoDash/* "$pkgdir/opt/chronodash/"
elif [[ -d "dist" && -n "$(ls dist/ 2>/dev/null)" ]]; then
cp -r dist/* "$pkgdir/opt/chronodash/"
else
echo "Error: dist/ not found after build!"
exit 1
fi
install -dm755 "$pkgdir/usr/bin"
cat > "$pkgdir/usr/bin/chronodash" << 'EOF'
#!/bin/bash
export LD_LIBRARY_PATH=/opt/chronodash/lib:$LD_LIBRARY_PATH
exec /opt/chronodash/ChronoDash "$@"
EOF
chmod +x "$pkgdir/usr/bin/chronodash"
# Иконка
install -dm755 "$pkgdir/usr/share/icons/hicolor/64x64/apps"
for icon in assets/icons/{chronodash,logo,app,icon}.png; do
if [[ -f "$icon" ]]; then
install -Dm644 "$icon" "$pkgdir/usr/share/icons/hicolor/64x64/apps/chronodash.png"
break
fi
done
install -Dm644 /dev/stdin "$pkgdir/usr/share/applications/chronodash.desktop" << EOF
[Desktop Entry]
Type=Application
Version=1.5
Name=ChronoDash
GenericName=Desktop Widgets
Comment=Modern, customizable desktop widgets
Exec=chronodash
TryExec=chronodash
Icon=chronodash
Terminal=false
StartupNotify=true
Categories=Utility;System;
EOF
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
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 |