all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#52211] [PATCH] gnu: Add julia-softglobalscope.
@ 2021-12-01  1:22 jgart via Guix-patches via
  2021-12-01  1:56 ` [bug#52211] [PATCH v2] " jgart via Guix-patches via
  0 siblings, 1 reply; 3+ messages in thread
From: jgart via Guix-patches via @ 2021-12-01  1:22 UTC (permalink / raw)
  To: 52211; +Cc: jgart

* gnu/packages/julay-xyz.scm (julia-softglobalscope): New variable.
---
 gnu/packages/julia-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 547d2bf81e..4b48440e45 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -4972,6 +4972,29 @@ (define-public julia-zygoterules
 Zygote, without depending on Zygote itself.")
     (license license:expat)))
 
+(define-public julia-softglobalscope
+  (package
+    (name "julia-softglobalscope")
+    (version "1.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/stevengj/SoftGlobalScope.jl")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1n3l0al1vw5jpb4k9a29a71666cdb617nmiqg34wcmyfzrxpvv39"))))
+    (build-system julia-build-system)
+    (home-page "https://github.com/stevengj/SoftGlobalScope.jl")
+    (synopsis "Utilities for soft global scope in interactive Julia environments")
+    (description
+"SoftGlobalScope is a package for the Julia language that simplifies
+the variable scoping rules for code in global scope.  It is intended for
+interactive shells to make it easier to work interactively with Julia,
+especially for beginners.")
+    (license license:expat)))
+
 (define-public julia-zygote
   (package
     (name "julia-zygote")
-- 
2.34.0





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

* [bug#52211] [PATCH v2] gnu: Add julia-softglobalscope.
  2021-12-01  1:22 [bug#52211] [PATCH] gnu: Add julia-softglobalscope jgart via Guix-patches via
@ 2021-12-01  1:56 ` jgart via Guix-patches via
  2021-12-01 12:09   ` bug#52211: " Efraim Flashner
  0 siblings, 1 reply; 3+ messages in thread
From: jgart via Guix-patches via @ 2021-12-01  1:56 UTC (permalink / raw)
  To: 52211; +Cc: jgart

Hi Guixers,

I forgot to add a copyright statement.

all best,

jgart

* gnu/packages/julay-xyz.scm (julia-softglobalscope): New variable.
---
 gnu/packages/julia-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 547d2bf81e..68284fbf46 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -3,6 +3,7 @@
 ;;; Copyright © 2021 Simon Tournier <zimon.toutoune@gmail.com>
 ;;; Copyright © 2021 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
+;;; Copyright © 2021 jgart <jgart@dismail.de>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -4972,6 +4973,29 @@ (define-public julia-zygoterules
 Zygote, without depending on Zygote itself.")
     (license license:expat)))
 
+(define-public julia-softglobalscope
+  (package
+    (name "julia-softglobalscope")
+    (version "1.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/stevengj/SoftGlobalScope.jl")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1n3l0al1vw5jpb4k9a29a71666cdb617nmiqg34wcmyfzrxpvv39"))))
+    (build-system julia-build-system)
+    (home-page "https://github.com/stevengj/SoftGlobalScope.jl")
+    (synopsis "Utilities for soft global scope in interactive Julia environments")
+    (description
+"SoftGlobalScope is a package for the Julia language that simplifies
+the variable scoping rules for code in global scope.  It is intended for
+interactive shells to make it easier to work interactively with Julia,
+especially for beginners.")
+    (license license:expat)))
+
 (define-public julia-zygote
   (package
     (name "julia-zygote")
-- 
2.34.0





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

* bug#52211: [PATCH v2] gnu: Add julia-softglobalscope.
  2021-12-01  1:56 ` [bug#52211] [PATCH v2] " jgart via Guix-patches via
@ 2021-12-01 12:09   ` Efraim Flashner
  0 siblings, 0 replies; 3+ messages in thread
From: Efraim Flashner @ 2021-12-01 12:09 UTC (permalink / raw)
  To: jgart; +Cc: 52211-done

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

I resorted this one alphabetically and pushed it. Thanks!

-- 
Efraim Flashner   <efraim@flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

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

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

end of thread, other threads:[~2021-12-01 12:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-01  1:22 [bug#52211] [PATCH] gnu: Add julia-softglobalscope jgart via Guix-patches via
2021-12-01  1:56 ` [bug#52211] [PATCH v2] " jgart via Guix-patches via
2021-12-01 12:09   ` bug#52211: " Efraim Flashner

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.