Download raw body.
Followup after update lang/sbcl
Greetings,
I've encountered an edge case with update of sbcl which lead to broken stumpwm.
My stumpwm configuration uses mpd modules which requires sb-bsd-sockets, so
after update of sbcl... it was broken.
To overstep that issue I must rebuild stumpwm because it is saved image
which includes sbcl which was used when it was build.
To avoid such issue in the future I suggest to add a note inside lang/sbcl
that after update x11/stumpwm should have increased revision.
I haven't found any other port which depends on lang/sbcl.
diff --git lang/sbcl/Makefile lang/sbcl/Makefile
index 9c849a70c4e..9f9b61e7cfa 100644
--- lang/sbcl/Makefile
+++ lang/sbcl/Makefile
@@ -4,6 +4,7 @@ ONLY_FOR_ARCHS += aarch64 amd64 arm i386 powerpc powerpc64
COMMENT = high performance Common Lisp compiler
+# Please, increase revision of x11/stumpwm after update
V = 2.4.3
DISTNAME = sbcl-${V}-source
PKGNAME = sbcl-${V}
diff --git x11/stumpwm/Makefile x11/stumpwm/Makefile
index 08b6dbf22b3..81d0326fa5c 100644
--- x11/stumpwm/Makefile
+++ x11/stumpwm/Makefile
@@ -2,6 +2,7 @@ COMMENT= easily hackable Common LISP window manager
VERSION= 23.11
DISTNAME= stumpwm-${VERSION}
+REVISION= 1
CATEGORIES= x11
--
wbr, Kirill
Followup after update lang/sbcl