From: Sharlatan Hellseher <sharlatanus@gmail.com>
To: 47943@debbugs.gnu.org
Subject: [bug#47943] [PATCH]: Gnu: Add Weir
Date: Wed, 21 Apr 2021 21:38:56 +0000 [thread overview]
Message-ID: <CAO+9K5qKqCmAddOSPamTJ_5ruGBZwC5EiX2A0nzJxqkdYy-poQ@mail.gmail.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 861 bytes --]
Hi Guix team!
New Common Lisp system for digital Art with fixes applied upstream
https://github.com/inconvergent/weir/pull/2
--8<---------------cut here---------------start------------->8---
successfully built
/gnu/store/cz7rcj884p4cb6ps9rkq835f72qy8fhd-ecl-weir-4.9.1-1.beb4f6f.drv
/gnu/store/zcvz1fzj4dngvh5p6sr0y1lfajd8x19j-ecl-weir-4.9.1-1.beb4f6f
/gnu/store/zwz00r53lhswk5nfbkjw1i4cpzm5306g-sbcl-weir-4.9.1-1.beb4f6f
--8<---------------cut here---------------end--------------->8---
--
… наш разум - превосходная объяснительная машина которая способна
найти смысл почти в чем угодно, истолковать любой феномен, но
совершенно не в состоянии принять мысль о непредсказуемости.
[-- Attachment #2: 0001-gnu-Add-weir.patch --]
[-- Type: text/x-patch, Size: 2561 bytes --]
From ffb12b7132e4e831bccab0c22b4de96923b8c079 Mon Sep 17 00:00:00 2001
From: Sharlatan Hellseher <sharlatanus@gmail.com>
Date: Wed, 21 Apr 2021 22:34:26 +0100
Subject: [PATCH] gnu: Add weir
* gnu/packages/lisp-xyz.scm (sbcl-weir, cl-weir, ecl-weir): New variables
---
gnu/packages/lisp-xyz.scm | 53 +++++++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 0e82f8fc2c..f133d372a5 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -16034,3 +16034,56 @@ lQuery.")
(define-public cl-clip
(sbcl-package->cl-source-package sbcl-clip))
+
+(define-public sbcl-weir
+ (let ((commit "beb4f6f47f0538d2c6d73b1d3c9d7f58ac8aa0e9")
+ (revision "1"))
+ (package
+ (name "sbcl-weir")
+ (version (git-version "4.9.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/inconvergent/weir")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1vm10kb51g4ba2nl5yixswkk47vwqgwqdlz5031xfff8h9z2a6ad"))))
+ (build-system asdf-build-system/sbcl)
+ (arguments
+ ;; FIXME: (Sharlatan-20210415T165228+0100): All tests have been passed
+ ;; but terminated with error status after `check' phase is completed.
+ ;;
+ ;; tests: 303
+ ;; fails: 0
+ ;; passes: 303
+ ;; "--- at least one catastrophe! ---"
+ ;; terminated with status: 1
+ ;; ;
+ ;; ; compilation unit aborted
+ ;; ; caught 1 fatal ERROR condition
+ ;; ; caught 3 STYLE-WARNING conditions
+ ;; ; printed 91 notes
+ `(#:tests? #f))
+ (inputs
+ `(("alexandira" ,sbcl-alexandria)
+ ("cl-json" ,sbcl-cl-json)
+ ("cl-svg" ,sbcl-cl-svg)
+ ("inferior-shell" ,sbcl-inferior-shell)
+ ("lparallel" ,sbcl-lparallel)
+ ("png" ,sbcl-png)
+ ("split-sequence" ,sbcl-split-sequence)
+ ("zpng" ,sbcl-zpng)))
+ (home-page "https://github.com/inconvergent/weir")
+ (synopsis "System for making generative systems")
+ (description
+ "This package provides Common Lisp system for generating 2d and 3d vector
+artworks with SVG and PNG export format.")
+ (license license:expat))))
+
+(define-public ecl-weir
+ (sbcl-package->ecl-package sbcl-weir))
+
+(define-public cl-weir
+ (sbcl-package->cl-source-package sbcl-fare-mop))
--
2.31.1
next reply other threads:[~2021-04-21 21:40 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-21 21:38 Sharlatan Hellseher [this message]
2021-04-22 8:40 ` [bug#47943] [PATCH]: Gnu: Add Weir Giovanni Biscuolo
2021-04-22 9:02 ` Guillaume Le Vaillant
2021-04-22 9:22 ` Giovanni Biscuolo
2021-04-22 11:43 ` Guillaume Le Vaillant
2021-04-22 12:12 ` Guillaume Le Vaillant
2021-04-22 13:24 ` Giovanni Biscuolo
2021-04-26 13:24 ` [bug#47943] Weir licensing issue (was [PATCH]: Gnu: Add Weir) Giovanni Biscuolo
2021-04-22 8:43 ` bug#47943: [PATCH]: Gnu: Add Weir Guillaume Le Vaillant
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAO+9K5qKqCmAddOSPamTJ_5ruGBZwC5EiX2A0nzJxqkdYy-poQ@mail.gmail.com \
--to=sharlatanus@gmail.com \
--cc=47943@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).