quvyta-focus-git
LOW
maintainer lmartinez-mirror
0 votes
scanned 2026-09-25 00:03:36.779685
Why flagged
Package builds from a legitimate project git repository, uses SKIP'd checksum which is common for git sources, and has few votes but no malicious patterns or remote code execution.
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.
Low
AI review
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 90%): Package builds from a legitimate project git repository, uses SKIP'd checksum which is common for git sources, and has few votes but no malicious patterns or remote code execution.
PKGBUILD
1
# Maintainer: Luis Martinez <luis dot martinez at disroot dot org>
2
3
pkgname=quvyta-focus-git
4
_pkgname="${pkgname%-git}"
5
pkgver=r15.543782b
6
pkgrel=1
7
pkgdesc="Productivity counter"
8
arch=(x86_64)
9
url="https://github.com/quvyta/focus"
10
license=(MIT)
11
depends=(glibc libgcc libgcc_s.so)
12
makedepends=(cargo git)
13
provides=(qfocus quvyta-focus)
14
conflicts=(quvyta-focus)
15
options=(!lto)
16
install=
17
changelog=
18
source=("$_pkgname::git+$url")
19
sha256sums=('SKIP')
20
21
pkgver() {
22
cd "$_pkgname"
23
( set -o pipefail
24
git describe --long --abbrev=7 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
25
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
26
)
27
}
28
29
prepare() {
30
export RUSTUP_TOOLCHAIN=stable
31
export CARGO_TARGET_DIR=target
32
33
cd "$_pkgname"
34
cargo fetch --locked --target host-tuple
35
}
36
37
build() {
38
export RUSTUP_TOOLCHAIN=stable
39
export CARGO_TARGET_DIR=target
40
41
cd "$_pkgname"
42
cargo build --frozen --release --all-features
43
}
44
45
# check() {
46
# export RUSTUP_TOOLCHAIN=stable
47
#
48
# cd "$_pkgname"
49
# cargo test --frozen --all-features
50
# }
51
52
package() {
53
cd "$_pkgname"
54
install -Dm755 "target/release/"{"$_pkgname",qfocus} -t "$pkgdir/usr/bin/"
55
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
56
install -Dm644 README.md -t "$pkgdir/usr/share/doc/$pkgname/"
57
}
58
59
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-25 00:03:36 | Low | 2 |
| 2026-09-24 21:44:41 | Low | 2 |