dxconvert
maintainer SpotlightKid
· 1 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package downloads a source zip from the project's own domain for building; the host is not whitelisted but is plausibly official, and the content is source code, not an unverifiable binary.
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 package downloads a source zip from the project's own domain for building; the host is not whitelisted but is plausibly official, and the content is source code, not an unverifiable binary.
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:22
source=("https://dxconvert.martintarenskeen.nl/$_name-$pkgver.zip")
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: OSAMC <https://github.com/osam-cologne/archlinux-proaudio>
2
# Contributor: Christopher Arndt <aur -at- chrisarndt -dot- de>
3
4
_name=DXconvert
5
pkgname=${_name,,}
6
pkgver=3.2.4
7
pkgrel=2
8
pkgdesc='A file conversion and manipulation toolkit for Yamaha FM synth patches'
9
arch=(any)
10
url='https://dxconvert.martintarenskeen.nl/'
11
license=(GPL-3.0-only)
12
depends=(python)
13
optdepends=(
14
# We can't package castools for our repo, since it has neither a source dist
15
# nor a git tag for a current release.
16
#'castools: convert Cassette Interface data (DX100/27/21, DX9, TX81Z)'
17
'tk: dxconvert and txconvert GUI'
18
'zbar: convert patches from QR codes to SysEx'
19
'python-qrcode: convert patches from SysEx to QR codes'
20
)
21
groups=(pro-audio)
22
source=("https://dxconvert.martintarenskeen.nl/$_name-$pkgver.zip")
23
sha256sums=('43507dc2370007e1a0b2c092e907c56d865d5b1c94e969e40aacc3a2a07f6f06')
24
25
prepare() {
26
cd $_name-$pkgver
27
# Fix broken shebang
28
sed -i -e 's|#!/env|#!/usr/bin/env|' dxconvert-gui.py
29
}
30
31
package() {
32
cd $_name-$pkgver
33
local py_major_ver="$(python -c 'import sys; print("%i.%i" % sys.version_info[:2])')"
34
35
# install Python package
36
install -Dm644 $_name/*.{gif,help,py} \
37
-t "$pkgdir"/usr/lib/python$py_major_ver/site-packages/$_name
38
python -m compileall -s "$pkgdir" \
39
"$pkgdir"/usr/lib/python$py_major_ver/site-packages/$_name
40
41
# install scripts in root dir
42
for py in *.py; do
43
install -Dm755 "$py" "$pkgdir"/usr/bin/${py%.py}
44
done
45
46
# install scripts in Tools dir
47
for tool in Tools/*.py; do
48
bn="${tool##*/}"
49
install -Dm755 "$tool" "$pkgdir"/usr/bin/$pkgname-${bn%.py}
50
done
51
52
# Install documentation
53
install -Dm644 CHANGES.txt FORMATS.txt README*.txt Tools/README-Tools.txt \
54
-t "$pkgdir"/usr/share/doc/$pkgname
55
}
56
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 |