lexis-git

LOW
maintainer clar 0 votes scanned 2026-09-17 00:27:14.276658
View on AUR
Why flagged

The package builds from a legitimate project source via git and uses pip to install only the project's own editable package and required build tools (pyinstaller), posing no supply-chain risk.

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 builds from a legitimate project source via git and uses pip to install only the project's own editable package and required build tools (pyinstaller), posing no supply-chain risk.

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:30 pip install --upgrade pip
  • PKGBUILD:32 pip install pyinstaller

PKGBUILD

2 offending line(s) highlighted
1# Maintainer: Adınız <email@adresiniz.com>
2pkgname=lexis-git
3pkgver=r1.gf406063
4pkgrel=1
5pkgdesc="Yabancı dil öğrenenler için yapay zeka destekli, modern masaüstü sözlük uygulaması"
6arch=('x86_64' 'aarch64')
7url="https://github.com/talhacaglar/Lexis"
8license=('MIT')
9depends=('glibc' 'zlib' 'libx11' 'libxcb' 'libxkbcommon' 'fontconfig' 'freetype2' 'dbus')
10makedepends=('git' 'python' 'python-pip' 'python-setuptools')
11provides=("${pkgname%-git}")
12conflicts=("${pkgname%-git}")
13source=("lexis::git+https://github.com/talhacaglar/lexis.git"
14 "lexis.desktop")
15md5sums=('SKIP'
16 'SKIP')
17
18pkgver() {
19 cd "$srcdir/lexis"
20 printf "r%s.g%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
21}
22
23build() {
24 cd "$srcdir/lexis"
25
26 # PyInstaller kullanarak temiz ortamda derle
27 python -m venv .venv
28 source .venv/bin/activate
29
30 pip install --upgrade pip
31 pip install -e .
32 pip install pyinstaller
33
34 pyinstaller --name="lexis" \
35 --windowed \
36 --onedir \
37 --noconfirm \
38 --hidden-import="lexis.ui.views" \
39 --hidden-import="lexis.ui.widgets" \
40 --hidden-import="lexis.workers" \
41 --clean \
42 lexis/main.py
43}
44
45package() {
46 cd "$srcdir/lexis"
47
48 # Derlenen pyinstaller çıktılarını /opt/lexis içine atıyoruz
49 install -dm755 "$pkgdir/opt/lexis"
50 cp -r dist/lexis/* "$pkgdir/opt/lexis/"
51
52 # Sembolik link (terminalden direkt çalışması için)
53 install -dm755 "$pkgdir/usr/bin"
54 ln -s /opt/lexis/lexis "$pkgdir/usr/bin/lexis"
55
56 # Desktop file
57 install -Dm644 "$srcdir/lexis.desktop" "$pkgdir/usr/share/applications/lexis.desktop"
58
59 # SVG icon
60 if [ -f "packaging/icons/lexis.svg" ]; then
61 install -Dm644 "packaging/icons/lexis.svg" "$pkgdir/usr/share/icons/hicolor/scalable/apps/lexis.svg"
62 fi
63}
64

Scan history

Scanned at (UTC)SeverityRules
2026-09-17 00:27:14 Low 2
2026-09-16 00:03:17 Low 2
2026-09-15 00:25:31 Low 2
2026-09-14 00:27:57 Low 2
2026-09-13 00:19:54 Low 2
2026-09-12 00:25:17 Low 2
2026-09-11 00:19:22 Low 2
2026-09-10 00:22:44 Low 2
2026-09-09 00:04:09 Low 2
2026-09-08 00:18:08 Low 2
2026-09-07 00:30:15 Low 2
2026-09-06 00:17:06 Low 2
2026-09-05 00:16:27 Low 2
2026-09-04 00:03:13 Low 2
2026-09-03 00:15:47 Low 2
2026-09-02 00:02:31 Low 2
2026-09-01 00:11:19 Low 2
2026-08-31 00:19:57 Low 2
2026-08-30 00:04:14 Low 2
2026-08-29 00:29:17 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