gnome-backup
MEDIUM
maintainer mipi
0 votes
scanned 2026-09-16 13:22:46.391962
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:17
source=("https://${_pkgorg}/${pkgname}/archive/${pkgver}.tar.gz")
PKGBUILD
1 offending line(s) highlighted
1
# SPDX-FileCopyrightText: 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=gnome-backup
9
pkgver=0.2.0
10
pkgrel=1
11
pkgdesc="Backup and restore GNOME settings and shell extensions"
12
arch=(
13
x86_64
14
)
15
url="https://${_pkgorg}/${pkgname}/"
16
license=(GPL-3.0-or-later)
17
source=("https://${_pkgorg}/${pkgname}/archive/${pkgver}.tar.gz")
18
sha256sums=('d5bc5c271ad1efc7b20c667eaeb4aaa68f87c1b9d0e2bd82d0ccdc2cccfbf1bf')
19
depends=(
20
dconf
21
)
22
makedepends=(
23
bash
24
cargo
25
git
26
make
27
perl
28
)
29
options=(
30
!debug
31
!lto
32
)
33
34
prepare() {
35
cd "${pkgname}" || return
36
export RUSTUP_TOOLCHAIN=stable
37
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
38
}
39
40
build() {
41
cd "${pkgname}" || return
42
export RUSTUP_TOOLCHAIN=stable
43
export CARGO_TARGET_DIR=target
44
make BUILD_FLAGS="--frozen"
45
}
46
47
package() {
48
cd "${pkgname}" || return
49
make DESTDIR="$pkgdir" install
50
}
51
Changes since previous scan
--- PKGBUILD @ 2026-06-19 19:07+++ PKGBUILD @ 2026-09-16 13:22@@ -6,16 +6,16 @@ _pkgorg=codeberg.org/mipi pkgname=gnome-backup-pkgver=0.1.0-pkgrel=3+pkgver=0.2.0+pkgrel=1 pkgdesc="Backup and restore GNOME settings and shell extensions" arch=( x86_64 )-license=(GPL3)+url="https://${_pkgorg}/${pkgname}/"+license=(GPL-3.0-or-later) source=("https://${_pkgorg}/${pkgname}/archive/${pkgver}.tar.gz")-sha256sums=('ec82348c57af9d9085e1cabc031b40446baef1db7ef93ff423d066c80a1d834a')-validpgpkeys=(11ECD6695134183B3E7AF1C2223AAA374A1D59CE) # Michael Picht <mipi@fsfe.org>+sha256sums=('d5bc5c271ad1efc7b20c667eaeb4aaa68f87c1b9d0e2bd82d0ccdc2cccfbf1bf') depends=( dconf )@@ -34,7 +34,7 @@ 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-16 13:22:46 | Medium | 1 |
| 2026-06-19 19:07:35 | Clean | 2 |
| 2026-06-18 16:11:54 | Medium | 1 |