unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#59228] [PATCH] gnu: Add cl-wild-package-inferred-system.
@ 2022-11-12 22:08 jgart via Guix-patches via
  2022-11-12 22:12 ` [bug#59228] [PATCH v2] " jgart via Guix-patches via
  0 siblings, 1 reply; 3+ messages in thread
From: jgart via Guix-patches via @ 2022-11-12 22:08 UTC (permalink / raw)
  To: 59228; +Cc: jgart

* 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





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#59228] [PATCH v2] gnu: Add cl-wild-package-inferred-system.
  2022-11-12 22:08 [bug#59228] [PATCH] gnu: Add cl-wild-package-inferred-system jgart via Guix-patches via
@ 2022-11-12 22:12 ` jgart via Guix-patches via
  2022-11-15 10:23   ` bug#59228: " Guillaume Le Vaillant
  0 siblings, 1 reply; 3+ messages in thread
From: jgart via Guix-patches via @ 2022-11-12 22:12 UTC (permalink / raw)
  To: 59228; +Cc: jgart

* 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





^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#59228: [PATCH v2] gnu: Add cl-wild-package-inferred-system.
  2022-11-12 22:12 ` [bug#59228] [PATCH v2] " jgart via Guix-patches via
@ 2022-11-15 10:23   ` Guillaume Le Vaillant
  0 siblings, 0 replies; 3+ messages in thread
From: Guillaume Le Vaillant @ 2022-11-15 10:23 UTC (permalink / raw)
  To: jgart; +Cc: 59228-done

[-- Attachment #1: Type: text/plain, Size: 91 bytes --]

Patch pushed as c7422310ee0ae129911e59a9e08116e52b54c8ba with a few
modifications.
Thanks.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-11-15 10:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-12 22:08 [bug#59228] [PATCH] gnu: Add cl-wild-package-inferred-system jgart via Guix-patches via
2022-11-12 22:12 ` [bug#59228] [PATCH v2] " jgart via Guix-patches via
2022-11-15 10:23   ` bug#59228: " Guillaume Le Vaillant

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).