python3-dracopy
maintainer Floofy
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from source hosted on official project repositories (GitHub), with minor build tweaks; the unverifiable submodules and skipped checksums are a quality issue but the source is legitimate and no remote code execution occurs.
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
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package builds from source hosted on official project repositories (GitHub), with minor build tweaks; the unverifiable submodules and skipped checksums are a quality issue but the source is legitimate and no remote code execution occurs.
PKGBUILD
1
# Maintainer: Floofy <floofyiv9@proton.me>
2
pkgname=python3-dracopy
3
pkgver=2.0.0
4
pkgrel=1
5
pkgdesc="Python wrapper for Google's Draco 3D mesh compression library"
6
arch=('x86_64')
7
url="https://github.com/seung-lab/DracoPy"
8
license=('Apache-2.0')
9
depends=('python' 'python-numpy')
10
makedepends=('python-build' 'python-installer' 'python-setuptools' 'python-wheel' 'cmake' 'python-scikit-build' 'cython' 'python-scikit-build-core' 'git')
11
options=(!strip)
12
source=(
13
"git+https://github.com/seung-lab/DracoPy.git#tag=${pkgver}"
14
"draco::git+https://github.com/google/draco.git#commit=7d2af85eb76906b0b485a0644675e4827e4571f5"
15
)
16
sha256sums=('SKIP' 'SKIP')
17
18
prepare() {
19
cd "DracoPy"
20
git submodule init
21
git config submodule.draco.url "$srcdir/draco"
22
git -c protocol.file.allow=always submodule update
23
24
sed -i "s|'-std=c++11','-O3'|'-std=c++11', '-O3', '-fno-lto'|" setup.py
25
sed -i "s|f'-l:{lib}' for lib in ('libdraco.a',)|'-Wl,--whole-archive', '-l:libdraco.a', '-Wl,--no-whole-archive'|" setup.py
26
}
27
28
build() {
29
cd "DracoPy"
30
python -m setup bdist_wheel
31
}
32
33
package() {
34
cd "DracoPy"
35
python -m installer --destdir="$pkgdir" dist/*.whl
36
}
37
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 01:17:03 | LOW | 2 |