From e108976f5add39ecab1a95fb7952e4c1428cec8d Mon Sep 17 00:00:00 2001 From: netblue30 Date: Sun, 17 Aug 2025 09:44:50 -0400 Subject: [PATCH] added signature to release 0.9.76, updated main page, small modifs for mkasc.sh --- README.md | 9 +++++++++ mkasc.sh | 9 ++++++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 00342ee68..d9e4c1a8d 100644 --- a/README.md +++ b/README.md @@ -272,9 +272,18 @@ so uninstalling without doing the above should not cause issues. ## Latest released version: 0.9.76 +This is and emargency release, many thanks to @kmk3, @SkewedZeppelin, and all +the Arch Linux users that reported the problem. + +Due to an xorg change in xkeyboard-config package (https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config), +many/most xorg programs were rendered completely broken when running under 0.9.74. + + ## Current development version: 0.9.77 + + ### Landlock support - ongoing/experimental * Added on #6078, which is based on #5315 from ChrysoliteAzalea/landlock diff --git a/mkasc.sh b/mkasc.sh index 088eb7348..a9f844876 100755 --- a/mkasc.sh +++ b/mkasc.sh @@ -10,6 +10,13 @@ printf 'Calculating SHA256 for all files in /transfer - %s version %s' "$TARNAME cd /transfer || exit 1 sha256sum ./* > "$TARNAME-$VERSION-unsigned" gpg --clearsign --digest-algo SHA256 < "$TARNAME-$VERSION-unsigned" > "$TARNAME-$VERSION.asc" -gpg --verify "$TARNAME-$VERSION.asc" gpg --detach-sign --armor "$TARNAME-$VERSION.tar.xz" rm "$TARNAME-$VERSION-unsigned" + +echo +echo +echo "*** Verifying $TARNAME-$VERSION.tar.xz.asc ***" +gpg --verify "$TARNAME-$VERSION.tar.xz.asc" +echo "*** Verifying $TARNAME-$VERSION.asc ***" +gpg --verify "$TARNAME-$VERSION.asc" +