cdev-mcp
maintainer jkolo
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
Both sources are git clones from the maintainer's own self-hosted Gitea instance (git.kolosowscy.pl), building the project from source; the non-whitelisted host is plausibly the project's own infrastructure, no prebuilt binaries are downloaded, and the submodule redirect is a standard AUR workaround for relative submodule URLs — the only mild concern is that the host is personal/unverifiable.
Triggered rules
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 70%): Both sources are git clones from the maintainer's own self-hosted Gitea instance (git.kolosowscy.pl), building the project from source; the non-whitelisted host is plausibly the project's own infrastructure, no prebuilt binaries are downloaded, and the submodule redirect is a standard AUR workaround for relative submodule URLs — the only mild concern is that the host is personal/unverifiable.
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:15
source=("git+https://git.kolosowscy.pl/cdev/desktop.git#tag=v$pkgver"
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Jerzy Kołosowski <jerzy@kolosowscy.pl>
2
pkgname=cdev-mcp
3
pkgver=0.1.1
4
pkgrel=1
5
pkgdesc="Claude DevContainer MCP Gateway (desktop daemon)"
6
arch=('x86_64' 'aarch64')
7
url="https://git.kolosowscy.pl/cdev/desktop"
8
license=('GPL-3.0-or-later')
9
depends=('qt6-base' 'qt6-declarative' 'qt6-websockets' 'kirigami'
10
'knotifications' 'kstatusnotifieritem' 'libslirp' 'qrencode' 'libsodium')
11
makedepends=('cmake' 'ninja' 'extra-cmake-modules' 'qt6-tools' 'pkgconf' 'git')
12
# The protocol library is a git submodule linked statically into cdev-mcp. AUR
13
# does not resolve the relative submodule URL (../protocol.git), so fetch it as
14
# a second source and re-point the submodule at it in prepare().
15
source=("git+https://git.kolosowscy.pl/cdev/desktop.git#tag=v$pkgver"
16
"git+https://git.kolosowscy.pl/cdev/protocol.git")
17
sha256sums=('892613d6de7ae19d2b54dcd3bee9acaf348e6bff056d66a31900d1c630e8de6a'
18
'SKIP')
19
20
prepare() {
21
cd "$srcdir/desktop"
22
git submodule init
23
git config submodule.src/protocol.url "$srcdir/protocol"
24
git -c protocol.file.allow=always submodule update
25
}
26
27
build() {
28
cd "$srcdir/desktop"
29
cmake -B build -S . -GNinja \
30
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
31
-DCMAKE_INSTALL_PREFIX=/usr \
32
-DCDEV_INSTALL_SYSTEMD=OFF
33
cmake --build build
34
}
35
36
check() {
37
cd "$srcdir/desktop/build"
38
QT_QPA_PLATFORM=offscreen ctest --output-on-failure
39
}
40
41
package() {
42
cd "$srcdir/desktop"
43
DESTDIR="$pkgdir" cmake --install build
44
# systemd user units at the packaged location, with ExecStart pointing at the
45
# packaged binary (the in-repo unit uses the per-user dev path).
46
install -Dm644 cdev-mcp.service "$pkgdir/usr/lib/systemd/user/cdev-mcp.service"
47
install -Dm644 cdev-mcp.socket "$pkgdir/usr/lib/systemd/user/cdev-mcp.socket"
48
sed -i 's#%h/.local/bin/cdev-mcp#/usr/bin/cdev-mcp#' \
49
"$pkgdir/usr/lib/systemd/user/cdev-mcp.service"
50
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
51
}
52
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 00:11:18 | LOW | 2 |
| 2026-07-31 00:14:10 | LOW | 2 |
| 2026-07-30 00:17:23 | LOW | 2 |
| 2026-07-29 00:25:53 | LOW | 2 |
| 2026-07-28 00:07:28 | LOW | 3 |
| 2026-07-27 00:24:32 | LOW | 3 |
| 2026-07-26 00:07:32 | LOW | 3 |
| 2026-07-25 00:13:44 | LOW | 3 |
| 2026-07-24 00:02:28 | LOW | 3 |
| 2026-07-23 00:14:47 | LOW | 3 |
| 2026-07-22 00:29:32 | LOW | 3 |
| 2026-07-21 00:24:15 | LOW | 3 |
| 2026-07-20 00:19:49 | LOW | 3 |
| 2026-07-19 00:17:08 | LOW | 3 |
| 2026-07-18 00:14:48 | LOW | 3 |
| 2026-07-17 00:06:16 | LOW | 3 |
| 2026-07-16 00:05:41 | LOW | 3 |
| 2026-07-15 00:09:25 | LOW | 3 |