libvirt-vnc
maintainer orphaned
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The source is a tarball from libvirt.org, the project's official site, which is a standard and trusted host for the software; building from official project sources is normal for AUR packages and poses minimal risk.
Triggered rules
LOW
AI review downgraded a static finding
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-07-25) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The source is a tarball from libvirt.org, the project's official site, which is a standard and trusted host for the software; building from official project sources is normal for AUR packages and poses minimal risk.
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:29
"https://libvirt.org/sources/libvirt-${pkgver}.tar.xz"{,.asc}
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: s3rj1k <evasive dot gyron at gmail dot com>
2
# Do not forget to run `makepkg --printsrcinfo > .SRCINFO`
3
4
pkgname=libvirt-vnc
5
pkgver=8.10.0
6
pkgrel=2
7
pkgdesc='Libvirt runtime libraries and headers exclusively for VNC support.'
8
arch=('x86_64')
9
url="https://gitlab.com/libvirt/libvirt"
10
license=(
11
'LGPL2.1'
12
)
13
depends=(
14
'gnutls'
15
'libxml2'
16
)
17
makedepends=(
18
'intltool'
19
'libxslt'
20
'meson'
21
'python'
22
'python-docutils'
23
'rpcsvc-proto'
24
)
25
conflicts=(
26
'libvirt'
27
)
28
source=(
29
"https://libvirt.org/sources/libvirt-${pkgver}.tar.xz"{,.asc}
30
"minimize.patch"
31
)
32
sha256sums=(
33
'bb07b7b00f08f826dd4f623f8b233e4e8b221b8859bb5937ff45355f0ae29952'
34
'SKIP'
35
'32359d73eb958a50e50478d7eca406c69fad0a48cc923ca3118474ebdb81463c'
36
)
37
validpgpkeys=(
38
'453B65310595562855471199CA68BE8010084C9C' # Jiří Denemark <jdenemar@redhat.com>
39
'DAF3A6FDB26B62912D0E8E3FBE86EBB415104FDF' # Daniel P. Berrange <dan@berrange.com>
40
)
41
42
prepare() {
43
cd "${srcdir}/libvirt-${pkgver}"
44
patch -p1 < "${srcdir}/minimize.patch"
45
}
46
47
build() {
48
cd "${srcdir}/libvirt-${pkgver}"
49
50
arch-meson build \
51
--buildtype=plain \
52
--libexecdir=lib/libvirt \
53
--auto-features disabled \
54
-Dapparmor=disabled \
55
-Dapparmor_profiles=disabled \
56
-Dattr=disabled \
57
-Daudit=disabled \
58
-Dbash_completion=disabled \
59
-Dblkid=disabled \
60
-Dcapng=disabled \
61
-Dcurl=disabled \
62
-Ddocs=enabled \
63
-Ddriver_bhyve=disabled \
64
-Ddriver_ch=disabled \
65
-Ddriver_esx=disabled \
66
-Ddriver_hyperv=disabled \
67
-Ddriver_interface=disabled \
68
-Ddriver_libvirtd=disabled \
69
-Ddriver_libxl=disabled \
70
-Ddriver_lxc=disabled \
71
-Ddriver_network=disabled \
72
-Ddriver_openvz=disabled \
73
-Ddriver_qemu=disabled \
74
-Ddriver_remote=enabled \
75
-Ddriver_secrets=disabled \
76
-Ddriver_test=disabled \
77
-Ddriver_vbox=disabled \
78
-Ddriver_vmware=disabled \
79
-Ddriver_vz=disabled \
80
-Ddtrace=disabled \
81
-Dfirewalld=disabled \
82
-Dfirewalld_zone=disabled \
83
-Dfuse=disabled \
84
-Dglusterfs=disabled \
85
-Dhost_validate=disabled \
86
-Dlibiscsi=disabled \
87
-Dlibnl=disabled \
88
-Dlibpcap=disabled \
89
-Dlibssh2=disabled \
90
-Dlibssh=disabled \
91
-Dlogin_shell=disabled \
92
-Dnetcf=disabled \
93
-Dnls=disabled \
94
-Dnss=disabled \
95
-Dnumactl=disabled \
96
-Dnumad=disabled \
97
-Dopenwsman=disabled \
98
-Dpciaccess=disabled \
99
-Dpm_utils=disabled \
100
-Dpolkit=disabled \
101
-Drunstatedir=/run \
102
-Dsanlock=disabled \
103
-Dsasl=disabled \
104
-Dsecdriver_apparmor=disabled \
105
-Dsecdriver_selinux=disabled \
106
-Dselinux=disabled \
107
-Dstorage_dir=disabled \
108
-Dstorage_disk=disabled \
109
-Dstorage_fs=disabled \
110
-Dstorage_gluster=disabled \
111
-Dstorage_iscsi=disabled \
112
-Dstorage_iscsi_direct=disabled \
113
-Dstorage_lvm=disabled \
114
-Dstorage_mpath=disabled \
115
-Dstorage_rbd=disabled \
116
-Dstorage_scsi=disabled \
117
-Dstorage_vstorage=disabled \
118
-Dstorage_zfs=disabled \
119
-Dsysctl_config=disabled \
120
-Dtests=disabled \
121
-Dudev=disabled \
122
-Dwireshark_dissector=disabled \
123
-Dyajl=disabled
124
125
ninja -C build
126
}
127
128
package() {
129
cd "${srcdir}/libvirt-${pkgver}"
130
DESTDIR="${pkgdir}" ninja -C build install
131
132
rm -vrf \
133
"${pkgdir}/etc" \
134
"${pkgdir}/usr/share/doc" \
135
"${pkgdir}/usr/share/libvirt/api/libvirt-admin-api.xml" \
136
"${pkgdir}/usr/share/libvirt/cpu_map" \
137
"${pkgdir}/usr/share/libvirt/schemas" \
138
"${pkgdir}/usr/share/man" \
139
"${pkgdir}/var"
140
}
141
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 | 2 |
| 2026-07-27 00:24:32 | LOW | 2 |
| 2026-07-26 00:07:32 | LOW | 2 |
| 2026-07-25 00:13:44 | LOW | 2 |
| 2026-07-24 00:02:28 | LOW | 2 |
| 2026-07-23 00:14:47 | LOW | 2 |
| 2026-07-22 00:29:32 | LOW | 2 |
| 2026-07-21 00:24:15 | LOW | 2 |
| 2026-07-20 00:19:49 | LOW | 2 |
| 2026-07-19 00:17:08 | LOW | 2 |
| 2026-07-18 00:14:48 | LOW | 2 |
| 2026-07-17 00:06:16 | LOW | 2 |
| 2026-07-16 00:05:41 | LOW | 2 |
| 2026-07-15 00:09:25 | LOW | 2 |