hinoirisetr
maintainer a-catgirl
· 0 votes
· scanned 2026-08-18 00:03:42.021799
LOW
View on AUR ↗
Why flagged
Builds the project's own source from a personal Gitea instance via git+https; the non-whitelisted host is plausibly the project's own forge, the binary is compiled from source (not a prebuilt), and SKIP on a git source is normal AUR practice — low risk, just unverifiable if the host were compromised.
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 downgraded a static finding
llm_review
The static rules flagged this MEDIUM, but an AI model (anthropic/claude-sonnet-4.6) reviewed the full PKGBUILD and judged it LOW (confidence 80%): Builds the project's own source from a personal Gitea instance via git+https; the non-whitelisted host is plausibly the project's own forge, the binary is compiled from source (not a prebuilt), and SKIP on a git source is normal AUR practice — low risk, just unverifiable if the host were compromised.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
source=() URL on a non-standard host
source_untrusted_domain
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
-
PKGBUILD:16
source=("git+https://git.vavakado.xyz/me/hinoirisetr.git")
PKGBUILD
1 offending line(s) highlighted
1
# SPDX-License-Identifier: 0BSD
2
# Maintainer: a-catgirl <paws@a-catgirl.dev>
3
4
# pulls in `pandoc-cli` as a makedepend
5
: "${_generate_manual_page:=no}"
6
7
pkgname=hinoirisetr
8
pkgver=1.6.3
9
_pkgver=1.6.3
10
pkgrel=2
11
pkgdesc="A lightweight daemon that automatically adjusts your screen's color temperature and gamma based on the time of day"
12
arch=("i686" "x86_64" "aarch64")
13
url="https://git.vavakado.xyz/me/hinoirisetr.git"
14
license=("MIT")
15
makedepends=("cargo" "git")
16
source=("git+https://git.vavakado.xyz/me/hinoirisetr.git")
17
optdepends=(
18
"ddcutil: ddcutil backend support"
19
"hyprsunset: hyprland backend support"
20
"wayland"
21
"xsct: xsct backend support"
22
"libnotify: desktop notifications support")
23
sha256sums=("SKIP")
24
25
if [[ $_generate_manual_page == "yes" ]]; then
26
makedepends+=("pandoc-cli")
27
fi
28
29
prepare() {
30
cd "$pkgname"
31
git config --local advice.detachedHead false
32
git checkout tags/v${_pkgver}
33
}
34
35
build() {
36
cd "$pkgname"
37
cargo build --release
38
39
if [[ $_generate_manual_page == "yes" ]]; then
40
pandoc manpages/hinoirisetr.1.md -s -t man -o manpages/hinoirisetr.1
41
fi
42
}
43
44
package() {
45
cd "$pkgname"
46
install -Dm755 "target/release/hinoirisetr" "$pkgdir/usr/bin/hinoirisetr"
47
if [[ $_generate_manual_page == "yes" ]]; then
48
install -Dm644 "manpages/hinoirisetr.1" "$pkgdir/usr/share/man/man1/hinoirisetr.1"
49
fi
50
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/${pkgname}/LICENSE-MIT"
51
}
52
53
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-18 00:03:42 | LOW | 3 |
| 2026-08-17 00:18:29 | LOW | 3 |
| 2026-08-16 01:36:12 | LOW | 3 |
| 2026-08-16 01:31:50 | MEDIUM | 2 |