748b2fb3e9
build and publish packages / distcc-avahi-aarch64 (push) Successful in 5s
build and publish packages / mesa-panvk-bifrost-aarch64 (push) Successful in 4s
build and publish packages / mesa-panvk-bifrost-video-aarch64 (push) Successful in 5s
build and publish packages / lmcp-any (push) Successful in 5s
build and publish packages / lmcp-debian (push) Successful in 5s
build and publish packages / claude-his-any (push) Successful in 5s
build and publish packages / aish-any (push) Successful in 4s
build and publish packages / ffmpeg-v4l2-request-aarch64 (push) Successful in 5s
build and publish packages / claude-his-debian (push) Successful in 4s
build and publish packages / aish-debian (push) Successful in 4s
build and publish packages / libva-v4l2-request-fourier-aarch64 (push) Successful in 4s
build and publish packages / reauktion-home-ca-any (push) Successful in 15s
build and publish packages / mpv-fourier-aarch64 (push) Successful in 4s
build and publish packages / reauktion-home-ca-debian (push) Successful in 4s
build and publish packages / ffmpeg-v4l2-request-debian (push) Has been cancelled
build and publish packages / libva-v4l2-request-fourier-debian (push) Has been cancelled
build and publish packages / mpv-fourier-debian (push) Has been cancelled
build and publish packages / daedalus-v4l2-debian (push) Has been cancelled
build and publish packages / daedalus-v4l2-dkms-debian (push) Has been cancelled
build and publish packages / sicd-arch (push) Has been cancelled
build and publish packages / sic-agent-arch (push) Has been cancelled
build and publish packages / sicd-debian (push) Has been cancelled
build and publish packages / sic-agent-debian (push) Has been cancelled
pkgrel 1 was already live on arch/aarch64 (last-modified 2026-07-18, from an untracked prior attempt, not committed to git). check-already-published.sh only ever probes the aarch64 pool, so with pkgrel 1 my CI job saw skip=1 and never ran its build/sign/publish steps at all — meaning x86_64 never got the package. Bumping pkgrel forces a genuine rebuild through the full dual-arch publish path, and the publish step's repo-remove-then-add also retires the stale untracked -1 db entry.
21 lines
785 B
Bash
21 lines
785 B
Bash
# Maintainer: Markus Fritsche <mfritsche@reauktion.de>
|
|
# Trust anchor for the private reauktion.de Home CA (internal *.fritz.box
|
|
# HTTPS). No upstream project — PKI material generated once on hertz
|
|
# (/opt/herding/pki/), the cert is committed alongside this PKGBUILD.
|
|
|
|
pkgname=reauktion-home-ca
|
|
pkgver=20260716
|
|
pkgrel=2
|
|
pkgdesc="reauktion.de Home CA trust anchor for internal *.fritz.box HTTPS"
|
|
arch=('any')
|
|
url="https://git.reauktion.de/marfrit/marfrit-packages"
|
|
license=('custom')
|
|
depends=('ca-certificates-utils')
|
|
source=('reauktion-home-ca.crt')
|
|
sha256sums=('838fdb30d06ecbc95dabcb545920c03535527282e0e602598659e1de6de71f4c')
|
|
|
|
package() {
|
|
install -Dm644 "${srcdir}/reauktion-home-ca.crt" \
|
|
"${pkgdir}/etc/ca-certificates/trust-source/anchors/reauktion-home-ca.crt"
|
|
}
|