diff --git a/x11-wm/stumpwm/Makefile b/x11-wm/stumpwm/Makefile index 1780c610b513..ce5d1b63fd2f 100644 --- a/x11-wm/stumpwm/Makefile +++ b/x11-wm/stumpwm/Makefile @@ -1,61 +1,59 @@ PORTNAME= stumpwm -DISTVERSION= 22.11-88 -DISTVERSIONSUFFIX= -gbaf5df7 -PORTREVISION= 1 +DISTVERSION= 23.11 CATEGORIES= x11-wm lisp MASTER_SITES+= https://beta.quicklisp.org/archive/alexandria/2023-10-21/:alexandria \ https://beta.quicklisp.org/archive/cl-ppcre/2023-06-18/:ppcre \ https://beta.quicklisp.org/archive/clx/2023-06-18/:clx DISTFILES+= alexandria-20231021-git.tgz:alexandria \ cl-ppcre-20230618-git.tgz:ppcre \ clx-20230618-git.tgz:clx MAINTAINER= jrm@FreeBSD.org COMMENT= Tiling, keyboard driven Window Manager written in Common Lisp WWW= https://www.nongnu.org/stumpwm/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= sbcl:lang/sbcl \ texinfo>=0:print/texinfo USES= autoreconf gmake USE_GITHUB= yes USE_SBCL= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-module-dir=${DATADIR}/modules \ - --enable-compression +CONFIGURE_ARGS= --enable-compression \ + --with-module-dir=${DATADIR}/modules MAKE_ARGS= destdir=${STAGEDIR} INFO= ${PORTNAME} PLIST_FILES= bin/stumpwm PORTDOCS= AUTHORS COPYING HACKING NEWS README.md PORTEXAMPLES= sample-stumpwmrc.lisp OPTIONS_DEFINE= DOCS EXAMPLES post-extract: ${FIND} ${WRKDIR} -type f -name \*.asd -a \! -name stumpwm\*.asd \ \! -name dynamic-mixins-swm.asd -exec ${LN} -s {} ${WRKSRC} \; do-build: (cd ${WRKSRC} && \ ASDF_OUTPUT_TRANSLATIONS="/:" \ sbcl \ --noinform --non-interactive --no-sysinit --no-userinit \ --eval "(require :uiop)" \ --eval "(setf sb-impl::*default-external-format* :UTF-8)" \ --load ./make-image.lisp) do-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) do-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/${PORTEXAMPLES} ${STAGEDIR}/${EXAMPLESDIR} .include diff --git a/x11-wm/stumpwm/distinfo b/x11-wm/stumpwm/distinfo index fd469e719b66..93730e03587c 100644 --- a/x11-wm/stumpwm/distinfo +++ b/x11-wm/stumpwm/distinfo @@ -1,9 +1,9 @@ -TIMESTAMP = 1698514642 +TIMESTAMP = 1701441924 SHA256 (alexandria-20231021-git.tgz) = 5bc0e459ebc303878e724f2ce082cc3bcfff94c4eb42621889e6e95c1a843d61 SIZE (alexandria-20231021-git.tgz) = 57207 SHA256 (cl-ppcre-20230618-git.tgz) = aaba004bc82bf63886b8ce91eadaf0b78fd6c4865da09c3e66da7fbf2a127397 SIZE (cl-ppcre-20230618-git.tgz) = 157428 SHA256 (clx-20230618-git.tgz) = d3f4244c915c68ef1572be1a89742b3a8f4a02bb83d9eb3968f546b68c7a3ec1 SIZE (clx-20230618-git.tgz) = 459665 -SHA256 (stumpwm-stumpwm-22.11-88-gbaf5df7_GH0.tar.gz) = 35f4eb386a1f7088e39d5ee12912d1b0f471c9f50efa65a8d183c091f3576b13 -SIZE (stumpwm-stumpwm-22.11-88-gbaf5df7_GH0.tar.gz) = 287344 +SHA256 (stumpwm-stumpwm-23.11_GH0.tar.gz) = 01e5fa4ec6466b8d5817d8105e41f9f1628e898c8770bbeb6377fadb23ee4817 +SIZE (stumpwm-stumpwm-23.11_GH0.tar.gz) = 287178 diff --git a/x11-wm/stumpwm/files/patch-stumpwm.asd b/x11-wm/stumpwm/files/patch-stumpwm.asd new file mode 100644 index 000000000000..3efbfbd2cfef --- /dev/null +++ b/x11-wm/stumpwm/files/patch-stumpwm.asd @@ -0,0 +1,11 @@ +--- stumpwm.asd.orig 2023-12-02 03:15:42 UTC ++++ stumpwm.asd +@@ -7,7 +7,7 @@ + (defsystem :stumpwm + :name "StumpWM" + :author "Shawn Betts " +- :version "1.0.1" ++ :version "23.11" + :maintainer "David Bjergaard " + ;; :license "GNU General Public License" + :description "A tiling, keyboard driven window manager" diff --git a/x11-wm/stumpwm/files/stumpwm.in b/x11-wm/stumpwm/files/stumpwm.in deleted file mode 100644 index fbc3a32f174c..000000000000 --- a/x11-wm/stumpwm/files/stumpwm.in +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -%%SBCL%% --eval "(in-package :cl-user)" \ - --eval "(require :stumpwm)" \ - --eval "(stumpwm:stumpwm)" \ - --eval "(quit)"