otr-git
MEDIUM
maintainer mipi
0 votes
scanned 2026-09-02 07:50:36.081104
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:18
source=("git+https://$_pkgorg/$_pkgname.git")
PKGBUILD
1 offending line(s) highlighted
1
# SPDX-FileCopyrightText: 2023-2026 Michael Picht <mipi@fsfe.org>
2
#
3
# SPDX-License-Identifier: GPL-3.0-or-later
4
5
# Maintainer: Michael Picht <mipi@fsfe.org>
6
7
_pkgorg=codeberg.org/mipi
8
_pkgname=otr
9
pkgname=${_pkgname}-git
10
pkgver=0.11.11
11
pkgrel=1
12
pkgdesc="Decode and cut video files from Online TV Recorder (OTR)"
13
arch=(
14
aarch64
15
x86_64
16
)
17
license=(GPL3)
18
source=("git+https://$_pkgorg/$_pkgname.git")
19
md5sums=('SKIP')
20
validpgpkeys=(11ECD6695134183B3E7AF1C2223AAA374A1D59CE) # Michael Picht <mipi@fsfe.org>
21
conflicts=(otr)
22
depends=(
23
ffmpeg
24
ffms2
25
)
26
makedepends=(
27
bash
28
cargo
29
git
30
make
31
)
32
options=(
33
!debug
34
)
35
36
pkgver() {
37
cd "$_pkgname" || return
38
(
39
set -o pipefail
40
git describe --tags --long 2>/dev/null |
41
sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//' |
42
tr -d '\n' ||
43
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
44
)
45
}
46
47
prepare() {
48
cd "$_pkgname" || return
49
export RUSTUP_TOOLCHAIN=stable
50
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
51
}
52
53
build() {
54
cd "$_pkgname" || return
55
export RUSTUP_TOOLCHAIN=stable
56
export CARGO_TARGET_DIR=target
57
make BUILD_FLAGS="--frozen"
58
}
59
60
package() {
61
cd "$_pkgname" || return
62
make DESTDIR="$pkgdir" install
63
install -Dm644 resources/otr.desktop "$pkgdir/usr/share/applications/otr.desktop"
64
install -Dm644 resources/otrkey_mime.xml "$pkgdir/usr/share/mime/packages/otrkey_mime.xml"
65
}
66
Changes since previous scan
--- PKGBUILD @ 2026-06-19 19:07+++ PKGBUILD @ 2026-09-02 07:50@@ -1,9 +1,13 @@+# SPDX-FileCopyrightText: 2023-2026 Michael Picht <mipi@fsfe.org>+#+# SPDX-License-Identifier: GPL-3.0-or-later+ # Maintainer: Michael Picht <mipi@fsfe.org> _pkgorg=codeberg.org/mipi _pkgname=otr pkgname=${_pkgname}-git-pkgver=0.11.7+pkgver=0.11.11 pkgrel=1 pkgdesc="Decode and cut video files from Online TV Recorder (OTR)" arch=(@@ -36,14 +40,14 @@ git describe --tags --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//' | tr -d '\n' ||- printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" + printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" ) } prepare() { cd "$_pkgname" || return export RUSTUP_TOOLCHAIN=stable- cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')" + cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')" } build() {Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-02 07:50:36 | Medium | 1 |
| 2026-06-19 19:07:35 | Clean | 2 |
| 2026-06-18 16:11:54 | Medium | 1 |