From c162df2f35427ebb21390c973e49aa5aaff784e4 Mon Sep 17 00:00:00 2001 From: Kosa Matyas Date: Fri, 16 Jan 2026 10:17:51 +0200 Subject: [PATCH] 1.12.8 --- .SRCINFO | 3 ++- PKGBUILD | 5 ++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 5a8e6ae59086..1c6166aa1be7 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = hyprkcs-git pkgdesc = A fast, minimal Hyprland keybind cheat sheet and editor written in Rust/GTK4 - pkgver = 1.12.7 + pkgver = 1.12.8 pkgrel = 1 url = https://github.com/kosa12/hyprKCS arch = x86_64 @@ -14,6 +14,7 @@ pkgbase = hyprkcs-git depends = gcc-libs provides = hyprkcs conflicts = hyprkcs + options = !lto source = hyprkcs::git+https://github.com/kosa12/hyprKCS.git validpgpkeys = D2059131FDE2EECC7C90A549F2CB939C8AA67892 sha256sums = SKIP diff --git a/PKGBUILD b/PKGBUILD index cdfa99518173..6c8ffefef612 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Kosa Matyas pkgname=hyprkcs-git -pkgver=1.12.7 +pkgver=1.12.8 pkgrel=1 pkgdesc="A fast, minimal Hyprland keybind cheat sheet and editor written in Rust/GTK4" arch=('x86_64') @@ -8,6 +8,7 @@ url="https://github.com/kosa12/hyprKCS" license=('MIT') depends=('gtk4' 'libadwaita' 'glibc' 'gcc-libs') makedepends=('cargo' 'git' 'pkgconf') +options=('!lto') provides=("${pkgname%-git}") conflicts=("${pkgname%-git}") source=("${pkgname%-git}::git+$url.git") @@ -21,13 +22,11 @@ pkgver() { prepare() { cd "$srcdir/${pkgname%-git}" - export RUSTUP_TOOLCHAIN=stable cargo fetch --target "$CARCH-unknown-linux-gnu" } build() { cd "$srcdir/${pkgname%-git}" - export RUSTUP_TOOLCHAIN=stable export CARGO_TARGET_DIR=target cargo build --release --all-features }