emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#39550: closed ([PATCH] gnu: Add cl-documentation-utils.)


From: GNU bug Tracking System
Subject: bug#39550: closed ([PATCH] gnu: Add cl-documentation-utils.)
Date: Tue, 11 Feb 2020 08:39:02 +0000

Your message dated Tue, 11 Feb 2020 09:38:02 +0100
with message-id <87eev1frit.fsf@yamatai>
and subject line Re: [bug#39550] [PATCH] gnu: Add cl-documentation-utils.
has caused the debbugs.gnu.org bug report #39550,
regarding [PATCH] gnu: Add cl-documentation-utils.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
39550: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=39550
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add cl-documentation-utils. Date: Mon, 10 Feb 2020 17:30:07 +0100
* 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




--- End Message ---
--- Begin Message --- Subject: Re: [bug#39550] [PATCH] gnu: Add cl-documentation-utils. Date: Tue, 11 Feb 2020 09:38:02 +0100 User-agent: mu4e 1.2.0; emacs 26.3
sbcl-documentation-utils and cl-documentation-utils had already
been packaged (commit 8dc5ff8fd0f3d007cb097c4055f73a053dc373c7), so
I didn't push this patch and just added ecl-documentation-utils instead
(commit 281537f47b22de288370a0f843301c399b6378f7).


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]