whatisit-git
LOW
maintainer SCDevel
0 votes
scanned 2026-09-06 07:10:31.945140
Why flagged
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
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.
PKGBUILD
1
# Maintainer: SCDevel <root@scevel.net>
2
3
pkgname=whatisit-git
4
pkgver=r180.gf9c3e79
5
pkgrel=1
6
pkgdesc="Local natural-language-to-shell command generator"
7
arch=('any')
8
url="https://github.com/ThorOdinson246/whatisit-nl2sh"
9
license=('Apache-2.0')
10
11
depends=(
12
'python'
13
)
14
15
optdepends=(
16
'llama-cpp: local LLM inference backend'
17
)
18
19
makedepends=(
20
'git'
21
'python-build'
22
'python-installer'
23
'python-setuptools'
24
'python-wheel'
25
)
26
27
provides=('whatisit')
28
conflicts=('whatisit')
29
30
source=("git+$url.git")
31
sha256sums=('SKIP')
32
33
pkgver() {
34
cd "$srcdir/whatisit-nl2sh"
35
36
printf "r%s.g%s" \
37
"$(git rev-list --count HEAD)" \
38
"$(git rev-parse --short=7 HEAD)"
39
}
40
41
build() {
42
cd "$srcdir/whatisit-nl2sh/whatisit_pkg"
43
44
python -m build --wheel --no-isolation
45
}
46
47
package() {
48
cd "$srcdir/whatisit-nl2sh/whatisit_pkg"
49
50
python -m installer \
51
--destdir="$pkgdir" \
52
dist/*.whl
53
54
install -d "$pkgdir/usr/bin"
55
ln -s whatisit "$pkgdir/usr/bin/wit"
56
57
install -Dm644 \
58
"$srcdir/whatisit-nl2sh/LICENSE" \
59
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
60
61
install -Dm644 \
62
"$srcdir/whatisit-nl2sh/NOTICE" \
63
"$pkgdir/usr/share/licenses/$pkgname/NOTICE"
64
}
65
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-06 07:10:31 | Low | 1 |