From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:45195) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j1EwX-0003Q5-PQ for guix-patches@gnu.org; Mon, 10 Feb 2020 14:42:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j1EwW-0003Qn-GV for guix-patches@gnu.org; Mon, 10 Feb 2020 14:42:05 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:49480) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j1EwV-0003Mq-IO for guix-patches@gnu.org; Mon, 10 Feb 2020 14:42:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j1EwV-0001xG-Gd for guix-patches@gnu.org; Mon, 10 Feb 2020 14:42:03 -0500 Subject: [bug#39550] [PATCH] gnu: Add cl-documentation-utils. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:44563) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j1EwI-0003Po-44 for guix-patches@gnu.org; Mon, 10 Feb 2020 14:41:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j1EwD-00030H-Ps for guix-patches@gnu.org; Mon, 10 Feb 2020 14:41:50 -0500 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:59761) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j1EwD-0002yP-Jr for guix-patches@gnu.org; Mon, 10 Feb 2020 14:41:45 -0500 From: Konrad Hinsen Date: Mon, 10 Feb 2020 17:30:07 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39550@debbugs.gnu.org * gnu/packages/lisp-xyz.scm (sbcl-documentation-utils, cl-documentation-utils, ecl-documentation-utils): New variables. --- gnu/packages/lisp-xyz.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 5c97f37d48..be1f43c0bc 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -10270,3 +10270,37 @@ generation functions from the GSL library.") (define-public ecl-cl-randist (sbcl-package->ecl-package sbcl-cl-randist)) + +(define-public sbcl-documentation-utils + (package + (name "sbcl-documentation-utils") + (version "1.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Shinmera/documentation-utils.git") + (commit "98630dd5f7e36ae057fa09da3523f42ccb5d1f55"))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "098qhkqskmmrh4wix34mawf7p5c87yql28r51r75yjxj577k5idq")))) + (build-system asdf-build-system/sbcl) + (synopsis "Simple tools for documenting Common Lisp libraries") + (description + "This is a small library to help with managing the docstrings +of a Common Lisp library.") + (home-page "https://github.com/Shinmera/documentation-utils") + (license license:zlib) + (inputs + `(("trivial-indent" ,sbcl-trivial-indent))) + (arguments + `(#:asd-system-name "documentation-utils" + #:asd-file "documentation-utils.asd" + #:tests? #f)))) + +(define-public cl-documentation-utils + (sbcl-package->cl-source-package sbcl-documentation-utils)) + +(define-public ecl-documentation-utils + (sbcl-package->ecl-package sbcl-documentation-utils)) -- 2.25.0