spectrwm: update to 3.2.0
This commit is contained in:
parent
3ee42e0050
commit
eb58044e13
@ -1,6 +1,6 @@
|
||||
untrusted comment: verify with /etc/ports/opt.pub
|
||||
RWSE3ohX2g5d/eSkzpLsZiLzmNGP8gPyWsLJf6umzRJ8xxUWmeyAi4QFA/kRBQH9vzd+PlhGE56etLsTUN83RxlNKzfJiLFrcgc=
|
||||
SHA256 (Pkgfile) = 29c7f7f74654b529ff059b556ea9e570c0bba775587ee7c7097c37885aa95e01
|
||||
RWSE3ohX2g5d/c5/3eq/VA+IqGWVqQK/iBzxA7kjpyOULlriA3omrd2mvYF9L5p4egUt/v9Xn2UvHCwdR9yPlKF1U3UzwgF3fwY=
|
||||
SHA256 (Pkgfile) = 37fdcc6f0bbb982c90366b53c44a70e7c46e36ca94be37bbefa157598e74906b
|
||||
SHA256 (.footprint) = 353b10b6033a1b5dd0ace6434990102537b6c5d3dd9d448ce73cd4d810c3d334
|
||||
SHA256 (SPECTRWM_3_1_0.tar.gz) = b7a5e24fe6d923aadab947d354ff44ad742b721daaf334584e8eea9e15649d9a
|
||||
SHA256 (spectrwm-remove_libswmhack.patch) = 3163948b44e7928861a63ae318e34bcd00af8a82054c9888fd28fa965be7fb37
|
||||
SHA256 (SPECTRWM_3_2_0.tar.gz) = fb800442620f762de68a236ef9a7278d8b8ef6da5c1b6edbc0c89b1e6e95ef7c
|
||||
SHA256 (spectrwm-remove_libswmhack.patch) = 276875c0b3fd4ebe793bf7dd93d09007da3d7d806143ca9a26d89433b29680d5
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Depends on: xorg-libxcursor xorg-libxft xorg-xcb-util-keysyms xorg-xcb-util-wm xorg-libxrandr
|
||||
|
||||
name=spectrwm
|
||||
version=3.1.0
|
||||
version=3.2.0
|
||||
release=1
|
||||
source=(https://github.com/conformal/spectrwm/archive/SPECTRWM_${version//./_}.tar.gz
|
||||
$name-remove_libswmhack.patch)
|
||||
|
@ -1,6 +1,6 @@
|
||||
diff -Nru spectrwm-3.1.0.orig/linux/Makefile spectrwm-3.1.0/linux/Makefile
|
||||
--- spectrwm-3.1.0.orig/linux/Makefile 2017-10-04 14:09:54.457071082 +0200
|
||||
+++ spectrwm-3.1.0/linux/Makefile 2017-10-04 14:14:40.116766035 +0200
|
||||
diff -Nru spectrwm-SPECTRWM_3_2_0.orig/linux/Makefile spectrwm-SPECTRWM_3_2_0/linux/Makefile
|
||||
--- spectrwm-SPECTRWM_3_2_0.orig/linux/Makefile 2018-09-09 13:19:53.214649480 +0200
|
||||
+++ spectrwm-SPECTRWM_3_2_0/linux/Makefile 2018-09-09 13:20:23.310647277 +0200
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
MAINT_CFLAGS = -std=c99 -Wmissing-prototypes -Wall -Wextra -Wshadow -Wno-uninitialized -g
|
||||
@ -19,10 +19,10 @@ diff -Nru spectrwm-3.1.0.orig/linux/Makefile spectrwm-3.1.0/linux/Makefile
|
||||
|
||||
spectrwm: spectrwm.o linux.o
|
||||
$(CC) $(MAINT_LDFLAGS) $(BIN_LDFLAGS) $(LDFLAGS) -o $@ $+ $(BIN_LDLIBS) $(LDLIBS)
|
||||
diff -Nru spectrwm-3.1.0.orig/spectrwm.c spectrwm-3.1.0/spectrwm.c
|
||||
--- spectrwm-3.1.0.orig/spectrwm.c 2017-10-04 14:09:54.457071082 +0200
|
||||
+++ spectrwm-3.1.0/spectrwm.c 2017-10-04 14:13:46.335374611 +0200
|
||||
@@ -274,9 +274,9 @@
|
||||
diff -Nru spectrwm-SPECTRWM_3_2_0.orig/spectrwm.c spectrwm-SPECTRWM_3_2_0/spectrwm.c
|
||||
--- spectrwm-SPECTRWM_3_2_0.orig/spectrwm.c 2018-09-09 13:19:53.214649480 +0200
|
||||
+++ spectrwm-SPECTRWM_3_2_0/spectrwm.c 2018-09-09 13:20:23.313980536 +0200
|
||||
@@ -290,9 +290,9 @@
|
||||
#define SWM_CONF_DEFAULT (0)
|
||||
#define SWM_CONF_KEYMAPPING (1)
|
||||
|
||||
@ -34,7 +34,7 @@ diff -Nru spectrwm-3.1.0.orig/spectrwm.c spectrwm-3.1.0/spectrwm.c
|
||||
|
||||
char **start_argv;
|
||||
xcb_atom_t a_state;
|
||||
@@ -3761,6 +3761,7 @@
|
||||
@@ -3884,6 +3884,7 @@
|
||||
|
||||
close(xcb_get_file_descriptor(conn));
|
||||
|
||||
@ -42,7 +42,7 @@ diff -Nru spectrwm-3.1.0.orig/spectrwm.c spectrwm-3.1.0/spectrwm.c
|
||||
if ((ret = getenv("LD_PRELOAD"))) {
|
||||
if (asprintf(&ret, "%s:%s", SWM_LIB, ret) == -1) {
|
||||
warn("spawn: asprintf LD_PRELOAD");
|
||||
@@ -3771,6 +3772,7 @@
|
||||
@@ -3894,6 +3895,7 @@
|
||||
} else {
|
||||
setenv("LD_PRELOAD", SWM_LIB, 1);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user