From 094fb2daa832d2409b022e4868f9377adf9727e8 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Tue, 24 Feb 2026 19:15:19 +0200 Subject: [PATCH] Initial commit --- .gitignore | 3 +++ check-version.sh | 4 ++++ pkg.info | 9 +++++++++ source-files/tidelinux.pgp | 13 +++++++++++++ source-files/tidelinux.trustdb | 1 + source.sh | 10 ++++++++++ 6 files changed, 40 insertions(+) create mode 100644 .gitignore create mode 100644 check-version.sh create mode 100644 pkg.info create mode 100644 source-files/tidelinux.pgp create mode 100644 source-files/tidelinux.trustdb create mode 100644 source.sh diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9d96df7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# Ignore BPM archives and signatures +*.bpm +*.bpm.sig diff --git a/check-version.sh b/check-version.sh new file mode 100644 index 0000000..cd89e29 --- /dev/null +++ b/check-version.sh @@ -0,0 +1,4 @@ +#!/bin/sh + +# Ignore this package +echo "ignore" diff --git a/pkg.info b/pkg.info new file mode 100644 index 0000000..cf1b600 --- /dev/null +++ b/pkg.info @@ -0,0 +1,9 @@ +name: tide-keyring +description: BPM keyring for the official Tide Linux repositories +version: 26.02.24 +revision: 1 +maintainers: + - enumdev@enumerated.dev +architecture: any +output_architecture: any +type: source diff --git a/source-files/tidelinux.pgp b/source-files/tidelinux.pgp new file mode 100644 index 0000000..9050de9 --- /dev/null +++ b/source-files/tidelinux.pgp @@ -0,0 +1,13 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- + +mDMEaM7v7xYJKwYBBAHaRw8BAQdAWNPiRt740C8T2RpCDeLs8HLq5xmisoKagZOE +tYjk7Pa0IEVudW1EZXYgPGVudW1kZXZAZW51bWVyYXRlZC5kZXY+iJMEExYKADsW +IQTOjfQ4yORMT5Y4KE0665zQgLtZHQUCaM7v7wIbAwULCQgHAgIiAgYVCgkICwIE +FgIDAQIeBwIXgAAKCRA665zQgLtZHQg9AQDJ3S+oGGCOBtfT/LseYuHa6b+JTJYB +xOLb0mZ8C44zyQEA61MNYmcij27vQ98E9MQGfcAL83aJdDo6CZaLXGFJ7wO4OARo +zu/vEgorBgEEAZdVAQUBAQdADY9PiZh+9Rstl25Wsn4PnatTV67lTbmKRWkEX3Bx +MkIDAQgHiHgEGBYKACAWIQTOjfQ4yORMT5Y4KE0665zQgLtZHQUCaM7v7wIbDAAK +CRA665zQgLtZHamQAQC1QHmcvcCb+0QHL6Yq1SfQ6apK6yF6JtwQwva49AK3JAD/ +chKRdlrhi15z52hLxPB9tCJpaFEs7B6Lcn+bNBSltg0= +=pZdY +-----END PGP PUBLIC KEY BLOCK----- diff --git a/source-files/tidelinux.trustdb b/source-files/tidelinux.trustdb new file mode 100644 index 0000000..e651287 --- /dev/null +++ b/source-files/tidelinux.trustdb @@ -0,0 +1 @@ +CE8DF438C8E44C4F9638284D3AEB9CD080BB591D:5: diff --git a/source.sh b/source.sh new file mode 100644 index 0000000..06bb90a --- /dev/null +++ b/source.sh @@ -0,0 +1,10 @@ +# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package +# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE +# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT + +# The package function is executed in the source directory +# This function is used to move the compiled files into the output directory +package() { + install -Dm644 "$BPM_WORKDIR"/tidelinux.pgp "$BPM_OUTPUT"/var/lib/bpm/keyrings/tidelinux.pgp + install -Dm644 "$BPM_WORKDIR"/tidelinux.trustdb "$BPM_OUTPUT"/var/lib/bpm/keyrings/tidelinux.trustdb +}