axicli
The non-standard host (cdn.evilmadscientist.com) hosts a source archive for a legitimate project; the file is verified by a matching checksum, and the package builds from source, posing no active supply-chain risk.
Triggered rules
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 non-standard host (cdn.evilmadscientist.com) hosts a source archive for a legitimate project; the file is verified by a matching checksum, and the package builds from source, posing no active supply-chain risk.
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:35
'https://cdn.evilmadscientist.com/dl/ad/public/AxiDraw_API.zip'
PKGBUILD
1 offending line(s) highlighted# PKGBUILD
# Maintainer: Bernardo Kuri <aur+axicli@bkuri.com>
pkgname=axicli
pkgver=3.9.6
pkgrel=4
pkgdesc="AxiDraw CLI and Python API for controlling AxiDraw pen plotters (bundles plotink & ink_extensions)"
url="https://axidraw.com/doc/cli_api"
arch=('any')
license=('custom')
install=axicli.install
# Vendor these versions from PyPI (adjust as desired)
_pink_ver=1.9.0
_inkext_ver=2.0.0
depends=(
'python>=3.8'
'python-lxml'
'python-mpmath'
'python-pyserial'
'python-requests'
)
makedepends=(
'python-build'
'python-installer'
'unzip'
)
optdepends=(
'python-numpy: enhanced math operations'
'python-pillow: image processing'
)
source=(
'https://cdn.evilmadscientist.com/dl/ad/public/AxiDraw_API.zip'
"https://files.pythonhosted.org/packages/source/p/plotink/plotink-${_pink_ver}.tar.gz"
"https://files.pythonhosted.org/packages/source/i/ink_extensions/ink_extensions-${_inkext_ver}.tar.gz"
)
sha256sums=('c29ef0792dc8a2006a3a4abcb306e8d7fa5b93f8ce83c0c781eed226d7eeca24'
'5b6778073da34c6fafb5bd5f2a5e23ace9887dd29d6a9edaa41ce661083c7ba1'
'68ac72552b589e5b8bb569af1c22eb8030f7c1485e9bf86f539f2cc1f2e4ee88')
_get_srcdir() { ls -d "$srcdir"/AxiDraw_API_* 2>/dev/null | head -n1; }
prepare() {
cd "$srcdir"
unzip -o AxiDraw_API.zip
tar -xf "plotink-${_pink_ver}.tar.gz"
tar -xf "ink_extensions-${_inkext_ver}.tar.gz"
}
build() {
export PYTHONNOUSERSITE=1
unset PYTHONUSERBASE
# Build vendored deps first (offline)
cd "$srcdir/plotink-${_pink_ver}"
python -m build --wheel --no-isolation
cd "$srcdir/ink_extensions-${_inkext_ver}"
python -m build --wheel --no-isolation
# Build EMSL package(s)
local s=$(_get_srcdir)
cd "$s"
python -m build --wheel --no-isolation
ls dist/*.whl >/dev/null 2>&1 || { echo "ERROR: no wheel produced"; return 1; }
}
package() {
export PYTHONNOUSERSITE=1
unset PYTHONUSERBASE
# 1) vendored deps
python -m pip install --root="$pkgdir" --prefix=/usr --no-deps --no-warn-script-location --force-reinstall "$srcdir/plotink-${_pink_ver}"/dist/*.whl
python -m pip install --root="$pkgdir" --prefix=/usr --no-deps --no-warn-script-location --force-reinstall "$srcdir/ink_extensions-${_inkext_ver}"/dist/*.whl
# 2) bundled third-party wheels (axidrawinternal, etc.)
local s=$(_get_srcdir)
cd "$s"
# Install prebuilt dependencies if they exist
if [ -d "prebuilt_dependencies" ] && [ "$(ls -A prebuilt_dependencies/*.whl 2>/dev/null)" ]; then
python -m pip install --root="$pkgdir" --prefix=/usr --no-deps --no-warn-script-location --force-reinstall prebuilt_dependencies/*.whl
fi
# 3) axicli + pyaxidraw
python -m pip install --root="$pkgdir" --prefix=/usr --no-deps --no-warn-script-location --force-reinstall dist/*.whl
# license (best-effort)
if [ -f "pyaxidraw/LICENSE.txt" ]; then
install -Dm644 pyaxidraw/LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
elif [ -f "LICENSE" ]; then
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
fi
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-17 00:27:14 | Low | 2 |
| 2026-09-16 00:03:17 | Low | 2 |
| 2026-09-15 00:25:31 | Low | 2 |
| 2026-09-14 00:27:57 | Low | 2 |
| 2026-09-13 00:19:54 | Low | 2 |
| 2026-09-12 00:25:17 | Low | 2 |
| 2026-09-11 00:19:22 | Low | 2 |
| 2026-09-10 00:22:44 | Low | 2 |
| 2026-09-09 00:04:09 | Low | 2 |
| 2026-09-08 00:18:08 | Low | 2 |
| 2026-09-07 00:30:15 | Low | 2 |
| 2026-09-06 00:17:06 | Low | 2 |
| 2026-09-05 00:16:27 | Low | 2 |
| 2026-09-04 00:03:13 | Low | 2 |
| 2026-09-03 00:15:47 | Low | 2 |
| 2026-09-02 00:02:31 | Low | 2 |
| 2026-09-01 00:11:19 | Low | 2 |
| 2026-08-31 00:19:57 | Low | 2 |
| 2026-08-30 00:04:14 | Low | 2 |
| 2026-08-29 00:29:17 | Low | 2 |