alise-git
Builds from the project's own Codeberg git repository (codeberg.org/mipi/alise), which is a normal VCS source for an AUR -git package; SKIP on a git clone is standard practice and poses no meaningful supply-chain risk beyond the usual trust in the upstream repo.
Triggered rules
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
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 85%): Builds from the project's own Codeberg git repository (codeberg.org/mipi/alise), which is a normal VCS source for an AUR -git package; SKIP on a git clone is standard practice and poses no meaningful supply-chain risk beyond the usual trust in the upstream repo.
1 higher static finding superseded - not the current verdict (shown for transparency)
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://$_pkgorg/$_pkgname.git")
PKGBUILD
1 offending line(s) highlighted# SPDX-FileCopyrightText: 2026 Michael Picht <mipi@fsfe.org>
#
# SPDX-License-Identifier: GPL-3.0-or-later
# Maintainer: Michael Picht <mipi@fsfe.org>
_pkgorg=codeberg.org/mipi
_pkgname=alise
pkgname=${_pkgname}-git
pkgver=0.1.0.r0.gb2e0f6d
pkgrel=1
pkgdesc="Declarative Arch Linux installer in Guile Scheme"
arch=(any)
url="https://${_pkgorg}/${_pkgname}/"
license=(GPL-3.0-or-later)
source=("git+https://$_pkgorg/$_pkgname.git")
md5sums=('SKIP')
provides=(alise)
conflicts=(alise)
depends=(
guile
guile-ssh
)
makedepends=(
git
make
)
pkgver() {
cd "$_pkgname" || return
(
set -o pipefail
git describe --tags --long 2>/dev/null |
sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//' |
tr -d '\n' ||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
)
}
package() {
cd "$_pkgname" || return
make DESTDIR="$pkgdir" install
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-22 07:39:05 | Low | 3 |
| 2026-09-22 07:37:25 | Medium | 2 |