quotracker-bin
MEDIUM
maintainer oioi555
0 votes
scanned 2026-09-15 15:19:57.334228
Why flagged
The package downloads a prebuilt .deb binary from a GitHub release without source verification, posing a supply-chain risk if the release asset were swapped.
Triggered rules
Low
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
Medium
AI review of an ambiguous pattern
llm_review
The static rules found a suspicious pattern they could not resolve, so an AI model (qwen/qwen3-235b-a22b-2507) reviewed it and judged it MEDIUM (confidence 90%): The package downloads a prebuilt .deb binary from a GitHub release without source verification, posing a supply-chain risk if the release asset were swapped.
PKGBUILD
1
# Maintainer: oioi555 <oioi555x@gmail.com>
2
# AUR package: unpacks the GitHub Release .deb.
3
# Local source builds use ../PKGBUILD (quotracker-git), not this file.
4
5
pkgname=quotracker-bin
6
pkgver=0.1.1
7
pkgrel=1
8
pkgdesc="Linux desktop app for planning AI coding quotas around the 5-hour window"
9
arch=('x86_64')
10
url="https://github.com/oioi555/quotracker"
11
license=('MIT')
12
provides=('quotracker')
13
conflicts=('quotracker')
14
depends=('webkit2gtk-4.1' 'gtk3')
15
options=('!strip' '!debug')
16
source=("https://github.com/oioi555/quotracker/releases/download/v0.1.1/Quotracker_0.1.1_amd64.deb")
17
sha256sums=('339311d9a17b08428a2968767960a7a4fe1aed23887ae44a6ca914777058e622')
18
noextract=("${source[0]##*/}")
19
20
package() {
21
local data_archive
22
bsdtar -xf "${srcdir}"/*.deb
23
data_archive="$(printf '%s\n' data.tar.* | head -n 1)"
24
if [[ ! -f "${data_archive}" ]]; then
25
echo "data.tar archive not found in .deb" >&2
26
return 1
27
fi
28
bsdtar -xf "${data_archive}" -C "${pkgdir}"
29
}
30
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-15 15:19:57 | Medium | 2 |