whatsv-git
LOW
maintainer megapoliss
0 votes
scanned 2026-08-24 13:22:51.972535
Why flagged
The package builds from the project's own git repository, which is a normal AUR practice; the low severity is due to few votes and recent upload, but the source is trustworthy and no malicious behavior is present.
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 the project's own git repository, which is a normal AUR practice; the low severity is due to few votes and recent upload, but the source is trustworthy and no malicious behavior is present.
PKGBUILD
1
# Maintainer: Sergii Fesenko <sergii_f@outlook.com>
2
3
pkgname=whatsv-git
4
pkgver=v0.2.0.r1.gf6c4bae
5
pkgrel=1
6
pkgdesc="Simple GTK WhatsApp Web Client"
7
arch=('x86_64')
8
url="https://github.com/sfesenko/whatsv"
9
license=('MIT')
10
depends=('gtk4' 'webkitgtk-6.0' 'hicolor-icon-theme')
11
makedepends=('git' 'meson' 'vala' 'glib2')
12
provides=("${pkgname%-git}")
13
conflicts=("${pkgname%-git}")
14
source=("${pkgname}::git+https://github.com/sfesenko/whatsv.git")
15
sha256sums=('SKIP')
16
pkgver() {
17
cd "${pkgname}"
18
# Prefer git describe if tags exist, fallback to commit date
19
if git describe --long --tags >/dev/null 2>&1; then
20
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
21
else
22
git log -1 --format='%cs' | tr '-' '.'
23
fi
24
}
25
26
build() {
27
meson setup --prefix /usr build "${pkgname}"
28
meson compile -C build
29
}
30
31
package() {
32
meson install -C build --destdir "${pkgdir}"
33
install -Dm644 "${pkgname}/COPYING" "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
34
}
35
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-24 13:22:51 | Low | 2 |