patchy-image-editor-git
maintainer nvidiahater
· 0 votes
· scanned 2026-08-18 00:03:42.021799
LOW
View on AUR ↗
Why flagged
The package builds from the project's own Git repository with a SKIP'd checksum, which is common for -git packages; the source is not prebuilt and comes from the official project host, so the risk is low despite the unverifiable checksum.
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 Git repository with a SKIP'd checksum, which is common for -git packages; the source is not prebuilt and comes from the official project host, so the risk is low despite the unverifiable checksum.
PKGBUILD
1
pkgname=patchy-image-editor-git
2
pkgver=0.89.r890.g2ef0358
3
pkgrel=1
4
pkgdesc="PSD-oriented image editor built from the latest Git revision"
5
arch=('x86_64')
6
url="https://github.com/SethRobinson/Patchy"
7
license=('MIT')
8
depends=(
9
'qt6-base'
10
'qt6-declarative'
11
'qt6-imageformats'
12
'qt6-svg'
13
)
14
makedepends=(
15
'cmake'
16
'git'
17
'ninja'
18
'qt6-tools'
19
)
20
optdepends=(
21
'kimageformats: additional image formats, including HEIC/HEIF'
22
'libheif: HEIC/HEIF codec support'
23
)
24
provides=("patchy-image-editor=${pkgver}")
25
conflicts=('patchy-image-editor-bin')
26
options=('!debug')
27
source=('Patchy::git+https://github.com/SethRobinson/Patchy.git#branch=main')
28
sha256sums=('SKIP')
29
30
pkgver() {
31
cd Patchy
32
33
local version
34
version="$(sed -nE 's/^[[:space:]]*VERSION[[:space:]]+([0-9.]+).*$/\1/p' CMakeLists.txt | head -n1)"
35
printf '%s.r%s.g%s' \
36
"${version}" \
37
"$(git rev-list --count HEAD)" \
38
"$(git rev-parse --short=7 HEAD)"
39
}
40
41
build() {
42
cmake -S Patchy -B build -G Ninja \
43
-DCMAKE_BUILD_TYPE=Release \
44
-DCMAKE_INSTALL_PREFIX=/usr \
45
-DPATCHY_BUILD_TESTS=OFF
46
cmake --build build
47
}
48
49
package() {
50
DESTDIR="${pkgdir}" cmake --install build
51
install -Dm644 Patchy/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
52
}
53
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-18 00:03:42 | LOW | 2 |
| 2026-08-17 00:18:29 | LOW | 2 |
| 2026-08-16 11:32:23 | LOW | 2 |