07b4d5383e
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 4s
build and publish packages / lmcp-any (push) Successful in 5s
build and publish packages / lmcp-debian (push) Successful in 4s
build and publish packages / claude-his-any (push) Successful in 4s
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 5s
build and publish packages / aish-debian (push) Successful in 5s
build and publish packages / libva-v4l2-request-fourier-aarch64 (push) Successful in 4s
build and publish packages / mpv-fourier-aarch64 (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
build and publish packages / reauktion-home-ca-any (push) Has been cancelled
build and publish packages / reauktion-home-ca-debian (push) Has been cancelled
The package was referenced in memory as already published but never actually existed in this repo or on packages.reauktion.de — only an unpublished Arch build was staged on hertz. Adds real PKGBUILD + dpkg-deb packaging (cert committed alongside, no upstream tarball) and wires both into build.yml following the lmcp/aish dual-arch + debian publish pattern.
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=1
|
|
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"
|
|
}
|