pdf-guru-anki-git
maintainer zxp19821005
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The pip install is part of building the project from its own source in a local venv using requirements.txt from the git repository, which is a normal build step for Python components; the source is from the project's own repo and not an untrusted external package.
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 part of building the project from its own source in a local venv using requirements.txt from the git repository, which is a normal build step for Python components; the source is from the project's own repo and not an untrusted external package.
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:85
./bin/pip install -r requirements.txt
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: zxp19821005 <zxp19821005 at 163 dot com>
2
pkgname=pdf-guru-anki-git
3
_pkgname='PDF Guru'
4
pkgver=latest.r8.gf67a40f
5
_nodeversion=20
6
pkgrel=1
7
pkgdesc="A PDF-centric multi-functional office learning toolbox software, including four major functions: PDF practical toolbox, Anki card creation artifact, Anki strongest assistant, video note artifact."
8
arch=('any')
9
url="https://guru.kevin2li.top/"
10
_ghurl="https://github.com/kevin2li/PDF-Guru"
11
license=('AGPL-3.0-only')
12
conflicts=("${pkgname%-git}")
13
provides=("${pkgname%-git}=${pkgver%.r*}")
14
depends=(
15
'python'
16
'pandoc-cli'
17
'tesseract'
18
'python-pymupdf'
19
'python-pillow'
20
'python-tqdm'
21
)
22
makedepends=(
23
'gendesk'
24
'npm'
25
'nvm'
26
'git'
27
'curl'
28
'go'
29
'python-pip'
30
'wails'
31
'pyinstaller'
32
'upx'
33
)
34
source=(
35
"${pkgname%-git}.git::git+${_ghurl}"
36
)
37
sha256sums=('SKIP')
38
pkgver() {
39
cd "${srcdir}/${pkgname%-git}.git"
40
set -o pipefail
41
git describe --long --tags --abbrev=7 | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/v//g' ||
42
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
43
}
44
_ensure_local_nvm() {
45
local NVM_DIR="${srcdir}/.nvm"
46
source /usr/share/nvm/init-nvm.sh || [[ $? != 1 ]]
47
nvm install "${_nodeversion}"
48
nvm use "${_nodeversion}"
49
}
50
prepare() {
51
cd "${srcdir}/${pkgname%-git}.git"
52
_ensure_local_nvm
53
gendesk -q -f -n \
54
--pkgname="${pkgname%-git}" \
55
--pkgdesc="${pkgdesc}" \
56
--categories="Office" \
57
--name="${_pkgname}" \
58
--exec="${pkgname%-git}"
59
install -dm755 build/bin
60
export CGO_ENABLED=1
61
export GO111MODULE=on
62
export GOOS=linux
63
export GOCACHE="${srcdir}/go-build"
64
export GOMODCACHE="${srcdir}/go/pkg/mod"
65
if [[ "$(curl -s ipinfo.io/country)" == *"CN"* ]]; then
66
export GOPROXY=https://goproxy.cn,direct
67
fi
68
go mod tidy
69
cd "${srcdir}/${pkgname%-git}.git/frontend"
70
HOME="${srcdir}/.electron-gyp"
71
{
72
echo -e '\n'
73
#echo 'build_from_source=true'
74
echo "cache=${srcdir}/.npm_cache"
75
} >> .npmrc
76
if [[ "$(curl -s ipinfo.io/country)" == *"CN"* ]]; then
77
{
78
echo 'registry=https://registry.npmmirror.com'
79
} >> .npmrc
80
find ./ -type f -name "package-lock.json" -exec sed -i "s/registry.npmjs.org/registry.npmmirror.com/g" {} +
81
fi
82
NODE_ENV=development npm install --legacy-peer-deps
83
cd "${srcdir}/${pkgname%-git}.git/thirdparty"
84
python -m venv ./
85
./bin/pip install -r requirements.txt
86
pyinstaller -F -w pdf.py
87
cp dist/pdf "${srcdir}/${pkgname%-git}.git/build/bin/"
88
cp ocr.py "${srcdir}/${pkgname%-git}.git/build/bin/"
89
}
90
build() {
91
cd "${srcdir}/${pkgname%-git}.git"
92
sed -i "/frontend:install/d" wails.json
93
wails build -upx -ldflags "-s -w"
94
}
95
package() {
96
install -Dm755 "${srcdir}/${pkgname%-git}.git/build/bin/"{pdf,"${_pkgname}"} -t "${pkgdir}/usr/lib/${pkgname%-git}"
97
install -Dm644 "${srcdir}/${pkgname%-git}.git/build/bin/ocr.py" -t "${pkgdir}/usr/lib/${pkgname%-git}"
98
install -dm755 "${pkgdir}/usr/bin"
99
ln -sf "/usr/lib/${pkgname%-git}/${_pkgname}" "${pkgdir}/usr/bin/${pkgname%-git}"
100
touch "${pkgdir}/usr/lib/${pkgname%-git}/config.json"
101
chmod 666 "${pkgdir}/usr/lib/${pkgname%-git}/config.json"
102
install -Dm644 "${srcdir}/${pkgname%-git}.git/${pkgname%-git}.desktop" -t "${pkgdir}/usr/share/applications"
103
install -Dm644 "${srcdir}/${pkgname%-git}.git/assets/logo.png" "${pkgdir}/usr/share/pixmaps/${pkgname%-git}.png"
104
install -Dm644 "${srcdir}/${pkgname%-git}.git/LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}"
105
}
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 |