openseeface-git

maintainer davispuh · 0 votes · scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged The pip install is used to install a wheel built locally from the project's own source via poetry build; it does not install external packages at runtime.

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 pip install is used to install a wheel built locally from the project's own source via poetry build; it does not install external packages at runtime.

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:51 pip install --root-user-action ignore --ignore-installed --upgrade --root "${pkgdir}"/ $WHEEL_PACKAGE --no-dependencies

PKGBUILD

1 offending line(s) highlighted
1
2pkgname=openseeface-git
3pkgver=1.20.4.r57.gdee5bb7
4pkgrel=1
5pkgdesc='OpenSeeFace - Robust realtime face and facial landmark tracking on CPU with Unity integration. (Includes facetracker)'
6url="https://github.com/emilianavt/OpenSeeFace"
7license=('BSD-2')
8arch=('x86_64')
9depends=('python-poetry' 'python-numpy' 'python-flatbuffers' 'python-onnxruntime'
10 'python-opencv' 'python-pillow' 'python-protobuf')
11makedepends=('git' 'python-pip' 'python-wheel' 'python-setuptools')
12optdepends=('python-opencv-cuda: for CUDA optimizations'
13 'onnxruntime-opt: for AVX2 CPU optimizations'
14 'onnxruntime-opt-rocm: for ROCm and AVX2 CPU optimizations'
15 'onnxruntime-rocm: for ROCm')
16source=("git+https://github.com/emilianavt/OpenSeeFace.git")
17md5sums=('SKIP')
18
19pkgver() {
20 cd "${srcdir}/OpenSeeFace"
21 git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
22}
23
24prepare() {
25 cd "${srcdir}/OpenSeeFace"
26 sed -i '/^python =/d' pyproject.toml
27 mkdir -p openseeface
28 touch openseeface/__init__.py
29 cp *.py openseeface/
30 cp -R models openseeface/
31 sed -i 's|from input_reader|from .input_reader|' openseeface/facetracker.py
32 sed -i 's|from tracker|from .tracker|' openseeface/facetracker.py
33 sed -i 's|import escapi|from .escapi import *|' openseeface/input_reader.py
34 sed -i 's|import dshowcapture|from .dshowcapture import *|' openseeface/input_reader.py
35 sed -i 's|from similaritytransform|from .similaritytransform|' openseeface/tracker.py
36 sed -i 's|from retinaface|from .retinaface|' openseeface/tracker.py
37 sed -i 's|from remedian|from .remedian|' openseeface/tracker.py
38}
39
40build() {
41 cd "${srcdir}/OpenSeeFace"
42 poetry build
43 mkdir -p "${srcdir}/bin"
44 echo "#!/usr/bin/env python" > "${srcdir}/bin/facetracker"
45 echo "import openseeface.facetracker" >> "${srcdir}/bin/facetracker"
46 chmod +x "${srcdir}/bin/facetracker"
47}
48
49package() {
50 WHEEL_PACKAGE=$(find "${srcdir}"/$1 -name "*.whl")
51 pip install --root-user-action ignore --ignore-installed --upgrade --root "${pkgdir}"/ $WHEEL_PACKAGE --no-dependencies
52 cp -R "${srcdir}/bin" "${pkgdir}/usr/"
53}
54
55

Scan history

Scanned at (UTC)SeverityRules
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

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion