pushin-cli-bin
LOW
maintainer benvp
0 votes
scanned 2026-09-08 07:16:32.151301
Why flagged
The package builds from a source tarball hosted on the project's own domain, which is normal for AUR packages; the low severity is due to few votes and recent upload, not malicious content.
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 a source tarball hosted on the project's own domain, which is normal for AUR packages; the low severity is due to few votes and recent upload, not malicious content.
PKGBUILD
1
# Maintainer: Benjamin von Polheim <ben at vp dot solutions>
2
3
pkgname=pushin-cli-bin
4
_pkgname=pushin-cli
5
pkgver=0.2.8
6
pkgrel=1
7
pkgdesc="CLI for the pushin.eu API (pun), mirroring the gh GitHub CLI's noun-verb shape"
8
arch=('x86_64' 'aarch64')
9
url="https://pushin.eu/pjullrich/pushin-cli"
10
license=('MIT')
11
provides=('pun' 'pushin-cli')
12
conflicts=('pushin-cli')
13
options=('!strip')
14
source=("${_pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
15
sha256sums=('c9970a9ca0ef9afa57cbca21854adcfaa6ac3c6641ab071c5b917c9c186e9e7f')
16
17
package() {
18
cd "${_pkgname}-v${pkgver}"
19
20
case "${CARCH}" in
21
x86_64) _platform=linux-x86_64 ;;
22
aarch64) _platform=linux-arm64 ;;
23
esac
24
25
install -Dm755 "dist/${_platform}/pun" "${pkgdir}/usr/bin/pun"
26
27
# Keep the build offline: pun does an update check on every invocation
28
export PUN_NO_UPDATE_CHECK=1
29
30
local _pun="${pkgdir}/usr/bin/pun"
31
32
install -dm755 "${pkgdir}/usr/share/bash-completion/completions"
33
install -dm755 "${pkgdir}/usr/share/zsh/site-functions"
34
install -dm755 "${pkgdir}/usr/share/fish/vendor_completions.d"
35
36
"${_pun}" completion bash > "${pkgdir}/usr/share/bash-completion/completions/pun"
37
"${_pun}" completion zsh > "${pkgdir}/usr/share/zsh/site-functions/_pun"
38
"${_pun}" completion fish > "${pkgdir}/usr/share/fish/vendor_completions.d/pun.fish"
39
40
install -Dm644 README.md "${pkgdir}/usr/share/doc/${_pkgname}/README.md"
41
}
42
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-08 07:16:32 | Low | 2 |