logdiag-git
MEDIUM
maintainer premysl
0 votes
scanned 2026-08-21 13:15:20.063848
Why flagged
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
Triggered rules
Medium
source=() URL on a non-standard host
source_untrusted_domain
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
-
PKGBUILD:15
source=("git+https://git.janouch.name/p/$_pkgname.git")
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Přemysl Eric Janouch <p@janouch.name>
2
pkgname=logdiag-git
3
_pkgname=logdiag
4
pkgver=v0.2.0.r5.g8815d72
5
pkgrel=1
6
pkgdesc="Schematic editor"
7
url="https://git.janouch.name/p/logdiag"
8
arch=('i686' 'x86_64')
9
license=('custom:0BSD')
10
options=(zipman)
11
conflicts=('logdiag')
12
provides=('logdiag')
13
makedepends=('cmake' 'pkg-config' 'git' 'glib2-devel')
14
depends=('gtk3' 'lua' 'json-glib')
15
source=("git+https://git.janouch.name/p/$_pkgname.git")
16
md5sums=('SKIP')
17
18
pkgver() {
19
cd "$srcdir/$_pkgname"
20
( set -o pipefail
21
git describe --long --tags 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' ||
22
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
23
)
24
}
25
26
build() {
27
rm -rf "$srcdir/$_pkgname-build"
28
mkdir "$srcdir/$_pkgname-build"
29
cd "$srcdir/$_pkgname-build"
30
cmake "$srcdir/$_pkgname" -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=None
31
make
32
}
33
34
package() {
35
cd "$srcdir/$_pkgname-build"
36
make install DESTDIR=$pkgdir
37
}
38
Changes since previous scan
--- PKGBUILD @ 2026-06-19 19:07+++ PKGBUILD @ 2026-08-21 13:15@@ -6,11 +6,11 @@ pkgdesc="Schematic editor" url="https://git.janouch.name/p/logdiag" arch=('i686' 'x86_64')-license=('BSD')+license=('custom:0BSD') options=(zipman) conflicts=('logdiag') provides=('logdiag')-makedepends=('cmake' 'pkg-config' 'git')+makedepends=('cmake' 'pkg-config' 'git' 'glib2-devel') depends=('gtk3' 'lua' 'json-glib') source=("git+https://git.janouch.name/p/$_pkgname.git") md5sums=('SKIP')Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-21 13:15:20 | Medium | 1 |
| 2026-06-19 19:07:35 | Clean | 2 |
| 2026-06-18 16:11:54 | Medium | 1 |