backlog.md-git
LOW
maintainer 5unekku
0 votes
scanned 2026-09-25 05:10:30.358237
Why flagged
The package builds from the project's own GitHub repository and a local shell script; the only concern is the SKIP'd checksum for the git source, which is common for -git packages but reduces verifiability.
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 GitHub repository and a local shell script; the only concern is the SKIP'd checksum for the git source, which is common for -git packages but reduces verifiability.
PKGBUILD
1
# Maintainer: Jimmy <jimmy.bungalo8@gmail.com>
2
pkgname=backlog.md-git
3
pkgver=1.53.0.r1.c310b708
4
pkgrel=1
5
pkgdesc="Markdown-based task management CLI with a Kanban board, git-integrated"
6
arch=('any')
7
url="https://backlog.md"
8
license=('MIT')
9
depends=('bun')
10
makedepends=('git')
11
optdepends=(
12
'bash-completion: bash completion support'
13
'zsh: zsh completion support'
14
'fish: fish completion support'
15
)
16
provides=('backlog')
17
conflicts=('backlog')
18
source=("$pkgname::git+https://github.com/MrLesk/Backlog.md.git" 'backlog.sh')
19
sha256sums=('SKIP' 'bf4a644f0fb9580d5883a3507bb96e864cf05c1f06abb5a9a84b0e14c129f023')
20
21
pkgver() {
22
cd "$srcdir/$pkgname"
23
git describe --long --tags | sed 's/^v//;s/\([^-]*-\)g/r\1/;s/-/./g'
24
}
25
26
build() {
27
cd "$srcdir/$pkgname"
28
bun install --frozen-lockfile
29
BACKLOG_BUILD_VERSION="$pkgver" BACKLOG_BUILD_OUTDIR=dist bun scripts/build.ts
30
}
31
32
package() {
33
cd "$srcdir/$pkgname"
34
install -d "$pkgdir/usr/lib/backlog"
35
cp -R dist/. "$pkgdir/usr/lib/backlog/"
36
37
install -Dm755 "$srcdir/backlog.sh" "$pkgdir/usr/bin/backlog"
38
39
install -Dm644 completions/backlog.bash "$pkgdir/usr/share/bash-completion/completions/backlog"
40
install -Dm644 completions/_backlog "$pkgdir/usr/share/zsh/site-functions/_backlog"
41
install -Dm644 completions/backlog.fish "$pkgdir/usr/share/fish/vendor_completions.d/backlog.fish"
42
43
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
44
}
45
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-25 05:10:30 | Low | 2 |