alicelinux

A lightweight musl + clang/llvm + libressl + busybox distro
git clone https://codeberg.org/emmett1/alicelinux
Log | Files | Refs | README | LICENSE

commit 48d43f94c7ba953b66bbce048f7b951e9dd6a643
parent e242b6ff0dd8458d2bc10cb333687482d63fc110
Author: emmett1 <emmett1.2miligrams@protonmail.com>
Date:   Wed, 24 Sep 2025 06:51:20 +0000

swaylock: updated to 1.8.3

Diffstat:
Mrepos/extra/swaylock/.checksum | 3++-
Mrepos/extra/swaylock/.files | 4----
Mrepos/extra/swaylock/abuild | 5+++--
Arepos/extra/swaylock/c48320819613e81a09e0481aaa2b92c93fba0d73.patch | 19+++++++++++++++++++
4 files changed, 24 insertions(+), 7 deletions(-)

diff --git a/repos/extra/swaylock/.checksum b/repos/extra/swaylock/.checksum @@ -1 +1,2 @@ -3b5fe7652362253cf0ece17d2e351ac69cb285432d23f2288f64dd58c5c820da swaylock-1.8.2.tar.gz +8d35cb7083f3e38f6028d2f4b9855e9db9bc081e64ca00127b3c071d1374e0ae c48320819613e81a09e0481aaa2b92c93fba0d73.patch +3579dcb77c44adbb385f8d0d3d334eadbbdd80408bc7457720ebafc57720b3bb swaylock-1.8.3.tar.gz diff --git a/repos/extra/swaylock/.files b/repos/extra/swaylock/.files @@ -1,7 +1,3 @@ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/bin/ -rwsr-sr-x root/root usr/bin/swaylock -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/swaylock.1.gz diff --git a/repos/extra/swaylock/abuild b/repos/extra/swaylock/abuild @@ -1,7 +1,8 @@ name=swaylock -version=1.8.2 +version=1.8.3 release=1 -source="https://github.com/swaywm/${name}/releases/download/v${version}/${name}-${version}.tar.gz" +source="https://github.com/swaywm/${name}/releases/download/v${version}/${name}-${version}.tar.gz + c48320819613e81a09e0481aaa2b92c93fba0d73.patch" build_opt="-Dzsh-completions=false -Dbash-completions=false -Dfish-completions=false" postbuild() { diff --git a/repos/extra/swaylock/c48320819613e81a09e0481aaa2b92c93fba0d73.patch b/repos/extra/swaylock/c48320819613e81a09e0481aaa2b92c93fba0d73.patch @@ -0,0 +1,19 @@ +From c48320819613e81a09e0481aaa2b92c93fba0d73 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?=C5=81ukasz=20P=2E=20Michalik?= <lpmichalik@googlemail.com> +Date: Sat, 9 Aug 2025 08:51:08 +0200 +Subject: [PATCH] fix missing include for sigaction + +--- + comm.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/comm.c b/comm.c +index 1e5fd49c..feea1945 100644 +--- a/comm.c ++++ b/comm.c +@@ -1,4 +1,5 @@ + #include <assert.h> ++#include <signal.h> + #include <stdbool.h> + #include <stdlib.h> + #include <sys/types.h>