GNU bug report logs -
#59228
[PATCH] gnu: Add cl-wild-package-inferred-system.
Previous Next
Reported by: jgart <jgart <at> dismail.de>
Date: Sat, 12 Nov 2022 22:09:02 UTC
Severity: normal
Tags: patch
Done: Guillaume Le Vaillant <glv <at> posteo.net>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 59228 in the body.
You can then email your comments to 59228 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#59228
; Package
guix-patches
.
(Sat, 12 Nov 2022 22:09:03 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
jgart <jgart <at> dismail.de>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Sat, 12 Nov 2022 22:09:03 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/lisp-xyz.scm (cl-wild-package-inferred-system,
ecl-wild-package-inferred-system, sbcl-wild-package-inferred-system):
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 f23b4a70bb..f3f6b48b2d 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -23809,6 +23809,40 @@ (define-public sbcl-simple-guess
using advisors.")
(license license:unlicense))))
+(define-public sbcl-wild-package-inferred-system
+ (let ((commit "800b5f89b61cc4a0a9cf14706fd3f7e7fcd3e539")
+ (revision "0"))
+ (package
+ (name "sbcl-wild-package-inferred-system")
+ (version (git-version "20210520" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/privet-kitty/wild-package-inferred-system")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0sp3j3i83aqyq9bl3djs490nilryi9sh1wjbcqd9z94d9wfbfz80"))))
+ (build-system asdf-build-system/sbcl)
+ (arguments
+ '(#:asd-systems '("wild-package-inferred-system"
+ "wild-package-inferred-system/test")))
+ (native-inputs (list sbcl-fiveam))
+ (home-page "https://github.com/privet-kitty/wild-package-inferred-system/")
+ (synopsis "Wildcard for ASDF package-inferred-system")
+ (description
+"@code{wild-package-inferred-system} is an extension of ASDF
+package-inferred-system that interprets star * and globstar ** in package
+or system names.")
+ (license license:expat))))
+
+(define-public cl-wild-package-inferred-system
+ (sbcl-package->cl-source-package sbcl-wild-package-inferred-system))
+
+(define-public ecl-wild-package-inferred-system
+ (sbcl-package->ecl-package sbcl-wild-package-inferred-system))
+
(define-public cl-simple-guess
(sbcl-package->cl-source-package sbcl-simple-guess))
--
2.38.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#59228
; Package
guix-patches
.
(Sat, 12 Nov 2022 22:14:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 59228 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/lisp-xyz.scm (cl-wild-package-inferred-system,
ecl-wild-package-inferred-system, sbcl-wild-package-inferred-system):
New variables.
Hi, here's v2. I accidentally sent this package committed from the
core-updates branch in v1.
all best,
jgart
---
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 ed7adef8f2..e646409a5f 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -24230,6 +24230,40 @@ (define-public sbcl-simple-guess
using advisors.")
(license license:unlicense))))
+(define-public sbcl-wild-package-inferred-system
+ (let ((commit "800b5f89b61cc4a0a9cf14706fd3f7e7fcd3e539")
+ (revision "0"))
+ (package
+ (name "sbcl-wild-package-inferred-system")
+ (version (git-version "20210520" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/privet-kitty/wild-package-inferred-system")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0sp3j3i83aqyq9bl3djs490nilryi9sh1wjbcqd9z94d9wfbfz80"))))
+ (build-system asdf-build-system/sbcl)
+ (arguments
+ '(#:asd-systems '("wild-package-inferred-system"
+ "wild-package-inferred-system/test")))
+ (native-inputs (list sbcl-fiveam))
+ (home-page "https://github.com/privet-kitty/wild-package-inferred-system/")
+ (synopsis "Wildcard for ASDF package-inferred-system")
+ (description
+"@code{wild-package-inferred-system} is an extension of ASDF
+package-inferred-system that interprets star * and globstar ** in package
+or system names.")
+ (license license:expat))))
+
+(define-public cl-wild-package-inferred-system
+ (sbcl-package->cl-source-package sbcl-wild-package-inferred-system))
+
+(define-public ecl-wild-package-inferred-system
+ (sbcl-package->ecl-package sbcl-wild-package-inferred-system))
+
(define-public cl-simple-guess
(sbcl-package->cl-source-package sbcl-simple-guess))
--
2.38.1
Reply sent
to
Guillaume Le Vaillant <glv <at> posteo.net>
:
You have taken responsibility.
(Tue, 15 Nov 2022 10:25:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
jgart <jgart <at> dismail.de>
:
bug acknowledged by developer.
(Tue, 15 Nov 2022 10:25:02 GMT)
Full text and
rfc822 format available.
Message #13 received at 59228-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Patch pushed as c7422310ee0ae129911e59a9e08116e52b54c8ba with a few
modifications.
Thanks.
[signature.asc (application/pgp-signature, inline)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Tue, 13 Dec 2022 12:24:06 GMT)
Full text and
rfc822 format available.
This bug report was last modified 2 years and 247 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.