pdn2ora-git
maintainer marvin1099
· 0 votes
· scanned 2026-08-18 00:03:42.021799
LOW
View on AUR ↗
Why flagged
The package installs pypdn and pyora from PyPI using pip with --no-deps, which are legitimate Python libraries for the stated purpose, but they come from an external registry without checksum verification; the main source is the maintainer's own Codeberg repo built normally, and no obfuscation or exfiltration is present.
Triggered rules
LOW
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
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%): The package installs pypdn and pyora from PyPI using pip with --no-deps, which are legitimate Python libraries for the stated purpose, but they come from an external registry without checksum verification; the main source is the maintainer's own Codeberg repo built normally, and no obfuscation or exfiltration is present.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
pip install of an external package
pip_install_external
`pip install <package>` fetches an unpinned package from PyPI at build time, outside source=() and makepkg's checksums.
-
PKGBUILD:24
python -m pip install --root="$pkgdir" --prefix=/usr --no-deps pypdn pyora
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Marvin1099
2
pkgname=pdn2ora-git
3
pkgver=0.1.1.r0.g3a2888f
4
pkgrel=1
5
pkgdesc="Convert Paint.NET (.pdn) files to OpenRaster (.ora) format (bundles python-pypdn and python-pyora)"
6
arch=('any')
7
url="https://codeberg.org/marvin1099/pdn2ora"
8
license=('AGPL3')
9
depends=('python' 'python-pillow' 'python-numpy' 'python-defusedxml' 'python-aenum')
10
makedepends=('git' 'python-pip')
11
source=("git+https://codeberg.org/marvin1099/pdn2ora.git")
12
sha256sums=('SKIP')
13
14
pkgver() {
15
cd "$srcdir/pdn2ora"
16
git describe --long --tags --abbrev=7 2>/dev/null | \
17
sed 's/^v//;s/-/.r/;s/-/./' || \
18
printf "r%s.g%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
19
}
20
21
package() {
22
cd "$srcdir/pdn2ora"
23
python -m pip install --root="$pkgdir" --prefix=/usr --no-build-isolation --no-deps .
24
python -m pip install --root="$pkgdir" --prefix=/usr --no-deps pypdn pyora
25
find "$pkgdir" -type d -name __pycache__ -exec rm -rf {} +
26
find "$pkgdir" -type f -name direct_url.json -delete
27
rm -rf "$pkgdir"/usr/lib/python*/site-packages/tests
28
}
29
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-18 00:03:42 | LOW | 3 |
| 2026-08-17 00:18:29 | LOW | 3 |
| 2026-08-16 00:03:42 | LOW | 3 |
| 2026-08-15 00:26:13 | LOW | 3 |
| 2026-08-14 00:03:41 | LOW | 3 |
| 2026-08-13 15:32:42 | LOW | 3 |
| 2026-08-13 15:26:23 | MEDIUM | 2 |