mirror of
https://cagebreak.project-repo.co/cagebreak.git
synced 2026-08-09 07:09:11 +02:00
Functionality: * Add configuration to anchor position of messages (#60, 71 in Bugs.md). * Add output priorisation (#38, 68 in Bugs.md). * Print whether output is active in dump. Bug Fixes: * Fix gamma control (72 in Bugs.md). * Add missing commands to example config. * Add message_config to dump output. Example Scripts: * Add screenshot script. * Make example scripts standalone. Documentation: * Escape html tags in config man page. (#68, 69 in Bugs.md) * Improve README.md (#62, 70 in Bugs.md). * Improve SECURITY.md. * Add CONTRIBUTING.md (#62, 70 in Bugs.md). * FAQ: Add Firefox screenshare instructions for wayland. * FAQ: Add wlroots downgrading instructions for workaround in case of temporary wlroots incompatibility. * Update copyright notices to 2024. Development Tooling: * Add new gpg keys (signed by the old ones). * Add PR template. * Add dev-FAQ. * Remove now-unnecessary fanalyzer pragmas.
46 lines
1.3 KiB
Bash
46 lines
1.3 KiB
Bash
#!/bin/bash
|
|
# Copyright 2023 - 2024, project-repo and the cagebreak contributors
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
RESULT=0
|
|
|
|
# shellcheck disable=2164
|
|
cd "${MESONCURRENTCONFIGDIR}/keys"
|
|
stoday=$(date +%s)
|
|
signingmargin=120
|
|
|
|
# shellcheck disable=2046
|
|
skey13exptime=$(date --date=$(gpg --show-keys cagebreak_signing_key_13\@project-repo.co.pub | tail -2 | head -1 | cut -d " " -f 8 | rev | cut -c2- | rev) '+%s')
|
|
# shellcheck disable=2046
|
|
skey14exptime=$(date --date=$(gpg --show-keys cagebreak_signing_key_14\@project-repo.co.pub | tail -2 | head -1 | cut -d " " -f 8 | rev | cut -c2- | rev) '+%s')
|
|
# shellcheck disable=2046
|
|
mailexptime=$(date --date=$(gpg --show-keys cagebreak\@project-repo.co.pub | tail -2 | head -1 | cut -d " " -f 8 | rev | cut -c2- | rev) '+%s')
|
|
|
|
# signing keys
|
|
## signing key 13
|
|
if [[ $(( (stoday - skey13exptime) / 86400 )) -lt $signingmargin ]]
|
|
then
|
|
echo "[x] signign key 13"
|
|
else
|
|
RESULT=1
|
|
echo "[ ] signing key 13"
|
|
fi
|
|
## signing key 14
|
|
if [[ $(( (stoday - skey14exptime) / 86400 )) -lt $signingmargin ]]
|
|
then
|
|
echo "[x] signign key 14"
|
|
else
|
|
RESULT=1
|
|
echo "[ ] signing key 14"
|
|
fi
|
|
|
|
# email key
|
|
if [[ $(( (stoday - mailexptime) / 86400 )) -lt $signingmargin ]]
|
|
then
|
|
echo "[x] mail key"
|
|
else
|
|
RESULT=1
|
|
echo "[ ] mail key"
|
|
fi
|
|
|
|
exit "${RESULT}"
|