1password-secret-service-git
The package builds from a public Git repository with a SKIP'd checksum, but it is the project's own source code, not a prebuilt binary, and no malicious behavior is evident; the low severity reflects the unverifiable source and newness, not active danger.
Triggered rules
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package builds from a public Git repository with a SKIP'd checksum, but it is the project's own source code, not a prebuilt binary, and no malicious behavior is evident; the low severity reflects the unverifiable source and newness, not active danger.
PKGBUILD
# Maintainer: Alex Indigo <ai@aegis.one>
pkgname=1password-secret-service-git
_projname=1password-secret-service
_release_ver=0.1.0.r0
pkgver=0.1.0.r2.g56a2fe0
pkgrel=1
pkgdesc="Freedesktop Secret Service (org.freedesktop.secrets) provider backed by 1Password (git version)"
arch=('x86_64' 'aarch64')
url="https://github.com/alexindigo/1password-secret-service"
license=('GPL-3.0-or-later')
depends=('1password' 'sqlite' 'glibc')
makedepends=('go' 'git')
provides=('1password-secret-service')
conflicts=('1password-secret-service')
# Go's debug split produces broken build-id symlinks; disable it.
options=('!debug')
source=("${pkgname}::git+${url}.git")
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/${pkgname}"
local out
out=$(git describe --long --tags 2>/dev/null) || out=""
if [ -n "$out" ]; then
printf "%s" "$out" | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//'
else
echo "${_release_ver}.g$(git rev-parse --short HEAD)"
fi
}
build() {
cd "${srcdir}/${pkgname}"
export CGO_ENABLED=1
local _ver
_ver=$(pkgver)
go build -trimpath -buildmode=pie \
-ldflags="-s -w -linkmode=external -extldflags=-Wl,-z,relro,-z,now -X main.integrationVersion=v${_ver}" \
-o "${_projname}" "./cmd/${_projname}"
}
package() {
cd "${srcdir}/${pkgname}"
install -Dm755 "${_projname}" "${pkgdir}/usr/bin/${_projname}"
install -Dm644 packaging/1password-secret-service.service \
"${pkgdir}/usr/lib/systemd/user/1password-secret-service.service"
install -Dm644 packaging/org.freedesktop.secrets.service \
"${pkgdir}/usr/share/dbus-1/services/org.freedesktop.secrets.service"
install -Dm644 LICENSE \
"${pkgdir}/usr/share/licenses/${_projname}/LICENSE"
}
Changes since previous scan
--- PKGBUILD @ 2026-08-17 00:18+++ PKGBUILD @ 2026-08-22 05:16@@ -3,7 +3,7 @@ pkgname=1password-secret-service-git _projname=1password-secret-service _release_ver=0.1.0.r0-pkgver="${_release_ver}.g0000000"+pkgver=0.1.0.r2.g56a2fe0 pkgrel=1 pkgdesc="Freedesktop Secret Service (org.freedesktop.secrets) provider backed by 1Password (git version)" arch=('x86_64' 'aarch64')@@ -13,6 +13,8 @@ makedepends=('go' 'git') provides=('1password-secret-service') conflicts=('1password-secret-service')+# Go's debug split produces broken build-id symlinks; disable it.+options=('!debug') source=("${pkgname}::git+${url}.git") sha256sums=('SKIP') @@ -30,7 +32,10 @@ build() { cd "${srcdir}/${pkgname}" export CGO_ENABLED=1- go build -trimpath -buildmode=pie -ldflags="-s -w" \+ local _ver+ _ver=$(pkgver)+ go build -trimpath -buildmode=pie \+ -ldflags="-s -w -linkmode=external -extldflags=-Wl,-z,relro,-z,now -X main.integrationVersion=v${_ver}" \ -o "${_projname}" "./cmd/${_projname}" } Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-22 05:16:50 | Low | 2 |
| 2026-08-17 00:18:29 | Clean | 2 |
| 2026-08-16 09:32:18 | Low | 1 |