gitmount
LOW
maintainer z3475
0 votes
scanned 2026-09-25 17:12:25.570634
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: z3475 <z3475@users.noreply.github.com>
2
pkgname=gitmount
3
pkgver=0.0.1
4
pkgrel=1
5
pkgdesc='Read-only FUSE filesystem for git: every branch, tag and commit as plain directories'
6
arch=(x86_64)
7
url='https://github.com/OrbitZore/gitmount'
8
license=(GPL-3.0-or-later)
9
depends=(fuse3 libgit2 gcc-libs)
10
makedepends=(cmake ninja catch2)
11
checkdepends=(git python)
12
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
13
sha256sums=('6dcb831775cd3d218dc7df1d09e916d19b77be9911879028b0da17b151593da3')
14
15
# Unit tests always run; the integration suite performs real FUSE mounts
16
# and self-skips when /dev/fuse or fusermount3 is unavailable (clean
17
# build chroots), per RFC 0000 §5.
18
19
build() {
20
cmake -B build -S "$pkgname-$pkgver" -G Ninja \
21
-DCMAKE_BUILD_TYPE=Release \
22
-DCMAKE_INSTALL_PREFIX=/usr \
23
-DCMAKE_INSTALL_SBINDIR=bin \
24
-DGITMOUNT_BUILD_TESTS=ON \
25
-DGITMOUNT_WERROR=ON
26
cmake --build build
27
}
28
29
check() {
30
ctest --test-dir build --output-on-failure
31
}
32
33
package() {
34
DESTDIR="$pkgdir" cmake --install build
35
}
36
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-25 17:12:25 | Low | 1 |
| 2026-09-25 15:12:17 | Low | 1 |