diff options
Diffstat (limited to 'swaylock')
| -rw-r--r-- | swaylock/.checksum | 3 | ||||
| -rw-r--r-- | swaylock/.files | 4 | ||||
| -rw-r--r-- | swaylock/abuild | 5 | ||||
| -rw-r--r-- | swaylock/c48320819613e81a09e0481aaa2b92c93fba0d73.patch | 19 |
4 files changed, 24 insertions, 7 deletions
diff --git a/swaylock/.checksum b/swaylock/.checksum index 5f6ad4d5..2d794af3 100644 --- a/swaylock/.checksum +++ b/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/swaylock/.files b/swaylock/.files index 86181209..ead50419 100644 --- a/swaylock/.files +++ b/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/swaylock/abuild b/swaylock/abuild index 7ace8a7d..d6f7f88e 100644 --- a/swaylock/abuild +++ b/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/swaylock/c48320819613e81a09e0481aaa2b92c93fba0d73.patch b/swaylock/c48320819613e81a09e0481aaa2b92c93fba0d73.patch new file mode 100644 index 00000000..6fbf8495 --- /dev/null +++ b/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> |