From owner-svn-ports-head@freebsd.org Tue Mar 16 10:38:18 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 111CF5A81D6; Tue, 16 Mar 2021 10:38:18 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F08rn75XXz3sPZ; Tue, 16 Mar 2021 10:38:17 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E6D1222295; Tue, 16 Mar 2021 10:38:17 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 12GAcHOt069307; Tue, 16 Mar 2021 10:38:17 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 12GAcGuN069300; Tue, 16 Mar 2021 10:38:16 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <202103161038.12GAcGuN069300@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Tue, 16 Mar 2021 10:38:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r568551 - in head/editors: . sly-quicklisp sly-quicklisp/files X-SVN-Group: ports-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: in head/editors: . sly-quicklisp sly-quicklisp/files X-SVN-Commit-Revision: 568551 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Mar 2021 10:38:18 -0000 Author: lwhsu Date: Tue Mar 16 10:38:16 2021 New Revision: 568551 URL: https://svnweb.freebsd.org/changeset/ports/568551 Log: Add editors/sly-quicklisp: SLY basic support for Quicklisp PR: 253995 Submitted by: Olivier Certner Added: head/editors/sly-quicklisp/ head/editors/sly-quicklisp/Makefile (contents, props changed) head/editors/sly-quicklisp/distinfo (contents, props changed) head/editors/sly-quicklisp/files/ head/editors/sly-quicklisp/files/patch-sly-quicklisp.el (contents, props changed) head/editors/sly-quicklisp/pkg-descr (contents, props changed) head/editors/sly-quicklisp/pkg-message (contents, props changed) head/editors/sly-quicklisp/pkg-plist (contents, props changed) Modified: head/editors/Makefile Modified: head/editors/Makefile ============================================================================== --- head/editors/Makefile Tue Mar 16 10:36:51 2021 (r568550) +++ head/editors/Makefile Tue Mar 16 10:38:16 2021 (r568551) @@ -233,6 +233,7 @@ SUBDIR += slime SUBDIR += sly SUBDIR += sly-named-readtables + SUBDIR += sly-quicklisp SUBDIR += ssed SUBDIR += sted SUBDIR += tamago Added: head/editors/sly-quicklisp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/sly-quicklisp/Makefile Tue Mar 16 10:38:16 2021 (r568551) @@ -0,0 +1,52 @@ +# $FreeBSD$ + +PORTNAME= sly-quicklisp +PORTVERSION= 20200707 +CATEGORIES= editors elisp +PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} + +MAINTAINER= olce.freebsd.ports@certner.fr +COMMENT= Basic Quicklisp support for SLY + +LICENSE= PD + +MY_DEPENDS= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/sly/sly.el:editors/sly +BUILD_DEPENDS= ${MY_DEPENDS} +RUN_DEPENDS= ${MY_DEPENDS} + +USES= emacs +USE_GITHUB= yes +GH_ACCOUNT= joaotavora +GH_TAGNAME= 4707b62803d7a29f172e9c5ff993b91187a9aaf3 + +NO_ARCH= yes + +EMACS_COMPILE= ${EMACS_CMD} --batch --no-site-file -L ${WRKSRC} -f batch-byte-compile + +PLIST_THIS_LISPDIR= ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} +THIS_LISPDIR= ${PREFIX}/${PLIST_THIS_LISPDIR} +PLIST_SUB+= THIS_LISPDIR=${PLIST_THIS_LISPDIR} + +# File is buggy and can't be used as documented upstream +EXCLUDED_FILES= ${PORTNAME}-autoloads.el + +OPTIONS_DEFINE= DOCS + +PORTDOCS= README.md screenshot.png + +do-build: + cd ${WRKSRC} && ${EMACS_COMPILE} sly-*.el + +do-install: + @${MKDIR} ${STAGEDIR}${THIS_LISPDIR} + (cd ${WRKSRC} && \ + ${COPYTREE_SHARE} . ${STAGEDIR}${THIS_LISPDIR} \ + "! ( -depth 1 ( ${EXCLUDED_FILES:C/^(.*)$/-name \1 -o/} \ + ${PORTDOCS:C/^(.*)$/-name \1 -o/} \ + -name LICENSE -o -name *\.md -o -name \.[^.]* ) )") + +post-install-DOCS-on: + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:%=${WRKSRC}/%} ${STAGEDIR}${DOCSDIR} + +.include Added: head/editors/sly-quicklisp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/sly-quicklisp/distinfo Tue Mar 16 10:38:16 2021 (r568551) @@ -0,0 +1,3 @@ +TIMESTAMP = 1613654208 +SHA256 (joaotavora-sly-quicklisp-20200707-4707b62803d7a29f172e9c5ff993b91187a9aaf3_GH0.tar.gz) = 3971edb307545f8389f113e3eca28fc5325cfe26a23b28a480a30b8086e061c7 +SIZE (joaotavora-sly-quicklisp-20200707-4707b62803d7a29f172e9c5ff993b91187a9aaf3_GH0.tar.gz) = 45904 Added: head/editors/sly-quicklisp/files/patch-sly-quicklisp.el ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/sly-quicklisp/files/patch-sly-quicklisp.el Tue Mar 16 10:38:16 2021 (r568551) @@ -0,0 +1,13 @@ +--- sly-quicklisp.el.orig 2020-07-07 16:35:00 UTC ++++ sly-quicklisp.el +@@ -91,10 +91,5 @@ in `sly-editing-mode-hook', i.e. lisp files." + sly-quicklisp--enabled-dists) + "NO QL dists reported so far. Load a system using `sly-quickload'"))) + +-;;; Automatically add ourselves to `sly-contribs' when this file is loaded +-;;;###autoload +-(with-eval-after-load 'sly +- (add-to-list 'sly-contribs 'sly-quicklisp 'append)) +- + (provide 'sly-quicklisp) + ;;; sly-quicklisp.el ends here Added: head/editors/sly-quicklisp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/sly-quicklisp/pkg-descr Tue Mar 16 10:38:16 2021 (r568551) @@ -0,0 +1,4 @@ +sly-quicklisp is an external contrib for SLY that provides a `sly-quickload' +command (C-c C-d C-q) that prompts the user for a package to install. + +WWW: https://github.com/joaotavora/sly-quicklisp Added: head/editors/sly-quicklisp/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/sly-quicklisp/pkg-message Tue Mar 16 10:38:16 2021 (r568551) @@ -0,0 +1,27 @@ +[ +{ type: install + message: <