aardwolfgui-git
MEDIUM
maintainer dreieck
0 votes
scanned 2026-09-05 16:00:23.828148
Why flagged
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
Triggered rules
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:48
"${_pkgname}::git+https://${_githost}/${_gituser}/${_pyname}.git"
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: dreieck (https://aur.archlinux.org/account/dreieck)
2
3
_pyname="aardwolfgui"
4
_pkgname="${_pyname}"
5
pkgname="${_pkgname}-git"
6
pkgver=0.0.8+4.r32.20260620.61b1da9
7
pkgrel=1
8
pkgdesc="Asynchronous RDP protocol implementation for python: GUI."
9
arch=(
10
'any'
11
)
12
_githost='github.com'
13
_gituser='skelsec'
14
url="https://${_githost}/${_gituser}/${_pyname}"
15
license=("MIT")
16
depends=(
17
'python>=3.8'
18
'python-aardwolf>=0.2.7'
19
'python-pillow'
20
'python-pyperclip'
21
'python-pyqt6'
22
#'python-pyqt6-sip'
23
)
24
makedepends=(
25
'git'
26
'python-build'
27
'python-installer'
28
'python-setuptools>=61.0.0'
29
'python-wheel'
30
)
31
optdepends=(
32
'python-pysimplegui'
33
)
34
checkdepends=()
35
provides=(
36
"ardpclient=${pkgver}"
37
"${_pkgname}=${pkgver}"
38
"python-${_pkgname}=${pkgver}"
39
"python-${_pkgname}-git=${pkgver}"
40
)
41
conflicts=(
42
"ardpclient"
43
"${_pkgname}"
44
"python-${_pkgname}"
45
)
46
47
source=(
48
"${_pkgname}::git+https://${_githost}/${_gituser}/${_pyname}.git"
49
)
50
sha256sums=(
51
'SKIP'
52
)
53
54
prepare() {
55
cd "${srcdir}/${_pkgname}"
56
git log > "${srcdir}/git.log"
57
}
58
59
pkgver() {
60
cd "${srcdir}/${_pkgname}"
61
62
_ver="$(git describe --tags | sed -E -e 's|^[vV]||' -e 's|\-g[0-9a-f]*$||' | tr '-' '+')"
63
_rev="$(git rev-list --count HEAD)"
64
_date="$(git log -1 --date=format:"%Y%m%d" --format="%ad")"
65
_hash="$(git rev-parse --short HEAD)"
66
67
if [ -z "${_ver}" ]; then
68
error "Version could not be determined."
69
return 1
70
else
71
printf '%s' "${_ver}.r${_rev}.${_date}.${_hash}"
72
fi
73
}
74
75
build() {
76
cd "${srcdir}/${_pkgname}"
77
printf '%s\n' " --> building ..."
78
python -m build --wheel --no-isolation
79
}
80
81
package() {
82
cd "${srcdir}/${_pkgname}"
83
printf '%s\n' " --> installing ..."
84
python -m installer --destdir="$pkgdir" --compile-bytecode=2 dist/*.whl
85
86
_docfiles=(
87
"${srcdir}/git.log"
88
README.md
89
)
90
_docdirs=()
91
_manfiles=()
92
_infofiles=()
93
_licensefiles=(
94
LICENSE
95
)
96
printf '%s\n' " --> installing documentation ..."
97
for _docfile in "${_docfiles[@]}"; do
98
install -D -v -m644 "${_docfile}" "${pkgdir}/usr/share/doc/${_pkgname}/$(basename "${_docfile}")"
99
done
100
for _docdir in "${_docdirs[@]}"; do
101
cp -rv "${_docdir}" "${pkgdir}/usr/share/doc/${_pkgname}/$(basename "${_docdir}")"
102
done
103
for _manfile in "${_manfiles[@]}"; do
104
_section="$(basename "${_manfile}" .gz | sed -E -e 's|^.*\.([^.]*)$|\1|')"
105
install -D -v -m644 "docs/build/man/${_manfile}" "${pkgdir}/usr/share/man/man${_section}/$(basename "${_manfile}")"
106
done
107
for _infofile in "${_infofiles[@]}"; do
108
install -D -v -m644 "${_infofile}" "${pkgdir}/usr/share/info/$(basename "${_infofile}")"
109
done
110
printf '%s\n' " --> installing license ..."
111
for _licensefile in "${_licensefiles[@]}"; do
112
install -D -v -m644 "${_licensefile[@]}" "${pkgdir}/usr/share/licenses/${pkgname}/$(basename "${_licensefile}")"
113
ln -svr "${pkgdir}/usr/share/licenses/${pkgname}/$(basename "${_licensefile}")" "${pkgdir}/usr/share/doc/${_pkgname}/$(basename "${_licensefile}")"
114
done
115
}
116
117
Changes since previous scan
--- PKGBUILD @ 2026-06-19 19:07+++ PKGBUILD @ 2026-09-05 16:00@@ -1,9 +1,9 @@-# Maintainer: dreieck (https://aur.archlinux.org/account/dreieck)+# Maintainer: dreieck (https://aur.archlinux.org/account/dreieck) _pyname="aardwolfgui" _pkgname="${_pyname}" pkgname="${_pkgname}-git"-pkgver=0.0.8+3.r31.20250101.8741a77+pkgver=0.0.8+4.r32.20260620.61b1da9 pkgrel=1 pkgdesc="Asynchronous RDP protocol implementation for python: GUI." arch=(@@ -109,7 +109,7 @@ done printf '%s\n' " --> installing license ..." for _licensefile in "${_licensefiles[@]}"; do- install -D -v -m644 "${_licensefile}" "${pkgdir}/usr/share/licenses/${pkgname}/$(basename "${_licensefile}")"+ install -D -v -m644 "${_licensefile[@]}" "${pkgdir}/usr/share/licenses/${pkgname}/$(basename "${_licensefile}")" ln -svr "${pkgdir}/usr/share/licenses/${pkgname}/$(basename "${_licensefile}")" "${pkgdir}/usr/share/doc/${_pkgname}/$(basename "${_licensefile}")" done }Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-05 16:00:23 | Medium | 1 |
| 2026-06-19 19:07:35 | Clean | 2 |
| 2026-06-18 16:11:54 | Medium | 1 |