unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#43080] [PATCH] gnu: add j version 902.
@ 2020-08-28  0:05 Joseph Novakovich
  2020-09-01 13:19 ` [bug#43080] Joseph Novakovich
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Joseph Novakovich @ 2020-08-28  0:05 UTC (permalink / raw)
  To: 43080

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

Hello!

I added the file gnu/packages/j.scm for a package definition for the J
programming language. I have also written expressions for jqt and the
majority of the J addons, but I thought it made sense to start with
only the base language and repl.

Hopefully nothing is too horribly off about this patch!

Joseph

[-- Attachment #2: 0001-gnu-add-j-version-902.patch --]
[-- Type: text/x-patch, Size: 7483 bytes --]

From 798d0e3c2b635cfe3a936937fd3dd3ea1b8c5812 Mon Sep 17 00:00:00 2001
From: Joseph Novakovich <josephnovakovich@gmail.com>
Date: Thu, 27 Aug 2020 19:16:16 -0400
Subject: [PATCH] gnu: add j version 902.

---
 gnu/packages/j.scm | 180 +++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 180 insertions(+)
 create mode 100644 gnu/packages/j.scm

diff --git a/gnu/packages/j.scm b/gnu/packages/j.scm
new file mode 100644
index 0000000000..f017c14f03
--- /dev/null
+++ b/gnu/packages/j.scm
@@ -0,0 +1,180 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2020 Joseph Novakovich <josephnovakovich@gmail.com>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages j)
+  #:use-module (guix packages)
+  #:use-module (guix git-download)
+  #:use-module (guix build-system gnu)
+  #:use-module ((guix licenses) :select (gpl3))
+  #:use-module (gnu packages bash)
+  #:use-module (gnu packages algebra)
+  #:use-module (gnu packages compression)
+  #:use-module (gnu packages libedit)
+  #:use-module (gnu packages pcre)
+  #:use-module (gnu packages readline))
+
+(define-public j
+  (package
+    (name "j")
+    (version "902")
+    (source
+     (origin
+       (method git-fetch)
+       (uri
+        (git-reference
+         (url "https://github.com/jsoftware/jsource")
+         (commit "59324abbc6c9c3709d39096f5a41e0a4ef28e9f6")))
+       (sha256
+        (base32 "031mncgbnn89s9k34aml7jn9pr3cfmvfm06v8785br483jmdmn20"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("bash" ,bash)
+       ("readline" ,readline)
+       ("bc" ,bc)
+       ("libedit" ,libedit)
+       ("pcre2" ,pcre2)
+       ("zlib" ,zlib)))
+    (outputs '("out"))
+    (arguments
+     `(#:modules
+       ((guix build gnu-build-system)
+        (guix build utils))
+       #:phases
+       (modify-phases %standard-phases
+         (replace 'configure
+           (lambda* (#:key inputs outputs #:allow-other-keys)
+             (let* ((jplatform "linux")
+                    (out (assoc-ref %outputs "out")))
+               (with-output-to-file "jsrc/jversion.h"
+                 (lambda ()
+                   (display "#define jversion  ") (write ,version)  (newline)
+                   (display "#define jplatform ") (write jplatform) (newline)
+                   (display "#define jtype     ") (write "beta")    (newline)
+                   (display "#define jlicense  ") (write "GPL3")    (newline)
+                   (display "#define jbuilder  ") (write "guix.gnu.org")
+                   (newline)))
+               (substitute* `("jlibrary/system/main/regex.ijs")
+                 (("pcre2dll=: f")
+                  (string-append "pcre2dll=: '"
+                                 (assoc-ref %build-inputs "pcre2")
+                                 "/lib/libpcre2-8.so.0'")))
+               (substitute* `("jlibrary/system/util/tar.ijs")
+                 (("libz=: .+$")
+                  (string-append "zlib=: '"
+                                 (assoc-ref %build-inputs "zlib")
+                                 "/lib/libz.so'\n")))
+               #t)))
+         (replace 'build
+           (lambda* (#:key inputs outputs #:allow-other-keys)
+             (let ((jplatform "linux")
+                   (j64x "j64avx2"))
+               (chdir "make2")
+               (system
+                (format #f
+                        "jplatform=~a j64x=~a USE_SLEEF=1 ./build_jconsole.sh"
+                        jplatform j64x))
+               (system
+                (format #f
+                        "jplatform=~a j64x=~a USE_SLEEF=1 ./build_tsdll.sh"
+                        jplatform j64x))
+               (system
+                (format #f
+                        "jplatform=~a j64x=~a USE_SLEEF=1 ./build_libj.sh"
+                        jplatform
+                        j64x))
+               (chdir "..")
+               #t)))
+         (replace 'check
+           (lambda* (#:key inputs outputs #:allow-other-keys)
+             (let* ((jplatform "linux")
+                    (j64x "j64avx2")
+                    (tsu (string-append (getcwd) "/test/tsu.ijs"))
+                    (jbld (string-append "bin/" jplatform "/" j64x)))
+               ; following instructions from make2/make.txt
+               (copy-recursively jbld "jlibrary/bin")
+               (chdir "jlibrary/bin")
+               (system "echo \"RUN ddall\" | ./jconsole ../../test/tsu.ijs")
+               (chdir "../..")
+               #t)))
+         (replace 'install
+           (lambda* (#:key inputs outputs #:allow-other-keys)
+             (let* ((bin-out (string-append (assoc-ref %outputs "out") "/bin"))
+                    (share-out (string-append (assoc-ref %outputs "out")
+                                              "/share/j"))
+                    (jconsole "jlibrary/bin/jconsole")
+                    (libj.so  "jlibrary/bin/libj.so"))
+               (install-file jconsole bin-out)
+               (install-file libj.so bin-out)
+               (copy-recursively "jlibrary/addons"
+                                 (string-append share-out "/addons"))
+               (copy-recursively "jlibrary/system"
+                                 (string-append share-out "/system"))
+               ; custom profile.ijs to work with guix
+               (with-output-to-file (string-append bin-out "/profile.ijs")
+                 (lambda ()
+                   (display
+                    "NB. J profile
+NB. JFE sets BINPATH_z_ and ARGV_z_
+
+jpathsep_z_=: '/'&(('\\' I.@:= ])})
+home=. 2!:5'HOME'
+BINPATH_z_=: home,'/.guix-profile/bin/jconsole'
+
+bin=. BINPATH
+install=. home,'/.guix-profile/share/j'
+addons=. install,'/addons'
+system=. install,'/system'
+tools=. install,'/tools'
+isroot=. 0
+userx=. '/j902-user'
+user=. home,userx
+break=. user,'/break'
+config=. user,'/config'
+snap=. user,'/snap'
+temp=. user,'/temp'
+ids=. ;:'addons bin break config home install snap system tools temp user'
+
+SystemFolders_j_=: ids,.jpathsep@\".&.>ids
+
+NB. used to create mutable j user directories for temp
+NB. files/configuring jqt/projects and so on
+md=. 3 : 0 NB. recursive makedir
+a=. jpathsep y,'/'
+if. -.#1!:0 }:a do.
+  for_n. I. a='/' do. 1!:5 :: [ <n{.a end.
+end.
+)
+
+NB. try to ensure user folders exist
+md user,'/projects'
+md break
+md config
+md snap
+md temp
+
+NB. boot up J and load startup.ijs if it exists
+0!:0 <jpathsep (4!:55 (;:'isroot userx ids md'), ids)]system,'/util/boot.ijs'
+")))
+               #t))))))
+    (synopsis "APL Dialect")
+    (description "J is a programming language that works with arrays,
+verbs, adverbs, and conjunctions.  For example, +/x sums array x and
+/:~x sorts it.")
+    (home-page "https://code.jsoftware.com/wiki/Main_Page")
+    (license gpl3)))
+
-- 
2.28.0


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

* [bug#43080]
  2020-08-28  0:05 [bug#43080] [PATCH] gnu: add j version 902 Joseph Novakovich
@ 2020-09-01 13:19 ` Joseph Novakovich
  2020-10-12 18:13   ` [bug#43080] Tobias Geerinckx-Rice via Guix-patches via
  2020-10-12 17:37 ` [bug#43080] [PATCH] gnu: add j version 902 Ludovic Courtès
  2021-10-01 10:27 ` Philip Kaludercic
  2 siblings, 1 reply; 6+ messages in thread
From: Joseph Novakovich @ 2020-09-01 13:19 UTC (permalink / raw)
  To: 43080

On irc, lfam recommended noting that J is implemented in C, so there
are no bootstrapping issues. Also, I was also wondering about better
ways to do libraries/addons. As written, this lets J find them by
pointing to '~/.guix-profile/share/j/addons' but nckx (irc) mentioned
native-search-paths and an environment variable. By default, J doesn't
use one, but that could be changed by modifying the 'profile.ijs'
that's output here.

Joseph




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

* [bug#43080] [PATCH] gnu: add j version 902.
  2020-08-28  0:05 [bug#43080] [PATCH] gnu: add j version 902 Joseph Novakovich
  2020-09-01 13:19 ` [bug#43080] Joseph Novakovich
@ 2020-10-12 17:37 ` Ludovic Courtès
  2020-12-18 13:07   ` Ludovic Courtès
  2021-10-01 10:27 ` Philip Kaludercic
  2 siblings, 1 reply; 6+ messages in thread
From: Ludovic Courtès @ 2020-10-12 17:37 UTC (permalink / raw)
  To: Joseph Novakovich; +Cc: 43080

Hi Joseph,

Joseph Novakovich <josephnovakovich@gmail.com> skribis:

> From 798d0e3c2b635cfe3a936937fd3dd3ea1b8c5812 Mon Sep 17 00:00:00 2001
> From: Joseph Novakovich <josephnovakovich@gmail.com>
> Date: Thu, 27 Aug 2020 19:16:16 -0400
> Subject: [PATCH] gnu: add j version 902.
>
> ---
>  gnu/packages/j.scm | 180 +++++++++++++++++++++++++++++++++++++++++++++

Sorry for the loooong delay!

A few comments—if needed we can make those changes on your behalf, let
us know.

Could you add j.scm to ‘gnu/local.mk’?

> +    (name "j")
> +    (version "902")
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri
> +        (git-reference
> +         (url "https://github.com/jsoftware/jsource")
> +         (commit "59324abbc6c9c3709d39096f5a41e0a4ef28e9f6")))

Why this commit?  If there’s a tag, it would be clearer to refer to the
tag (the ‘commit’ field can name a tag).

> +    (outputs '("out"))

Unnecessary, you can remove it.

> +     `(#:modules
> +       ((guix build gnu-build-system)
> +        (guix build utils))

Likewise.

> +           (lambda* (#:key inputs outputs #:allow-other-keys)
> +             (let ((jplatform "linux")
> +                   (j64x "j64avx2"))
> +               (chdir "make2")
> +               (system
> +                (format #f
> +                        "jplatform=~a j64x=~a USE_SLEEF=1 ./build_jconsole.sh"
> +                        jplatform j64x))

Note that we cannot assume AVX2 support (on x86_64, but especially on
non-Intel platforms).  Can you check this doesn’t create binaries that
require AVX2?

Also, it would be more robust to replace ‘system’ by something like:

  (Seton "jplatform" "linux")
  (setenv "USE_SLEEF" "1")
  …
  (invoke "./build_jconsole.sh")

since ‘invoke’ checks the exit code of the given command.

> +           (lambda* (#:key inputs outputs #:allow-other-keys)
> +             (let* ((bin-out (string-append (assoc-ref %outputs "out") "/bin"))
> +                    (share-out (string-append (assoc-ref %outputs "out")
> +                                              "/share/j"))
> +                    (jconsole "jlibrary/bin/jconsole")
> +                    (libj.so  "jlibrary/bin/libj.so"))

I’d omit ‘-out’ from variable names.

> +    (synopsis "APL Dialect")

What about “Dialect of the APL programming language” for clarity?

> +    (description "J is a programming language that works with arrays,
> +verbs, adverbs, and conjunctions.  For example, +/x sums array x and
> +/:~x sorts it.")

Please use @code markup for code snippets.  Bonus points if you can
expound a bit!

  https://guix.gnu.org/manual/en/html_node/Synopses-and-Descriptions.html

> +    (license gpl3)))

I confirm that this is “version 3 only” per ‘license.txt’.

Could you send an updated patch?

Thanks,
Ludo’.




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

* [bug#43080]
  2020-09-01 13:19 ` [bug#43080] Joseph Novakovich
@ 2020-10-12 18:13   ` Tobias Geerinckx-Rice via Guix-patches via
  0 siblings, 0 replies; 6+ messages in thread
From: Tobias Geerinckx-Rice via Guix-patches via @ 2020-10-12 18:13 UTC (permalink / raw)
  To: Joseph Novakovich; +Cc: 43080

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

Joseph,

Thank you for submitting this!

If I don't point this out then someone else will, so...

Joseph Novakovich 写道:
> +(define-public j
> +  (package
> +    (name "j")

...single-letter package names are frowned upon, with ‘r’ being a 
grandfathered exception.

I suggest calling this ‘j-language’ (or ‘j-toolchain’, if that 
word makes sense in J's worldview) instead.

Kind regards,

T G-R

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

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

* [bug#43080] [PATCH] gnu: add j version 902.
  2020-10-12 17:37 ` [bug#43080] [PATCH] gnu: add j version 902 Ludovic Courtès
@ 2020-12-18 13:07   ` Ludovic Courtès
  0 siblings, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2020-12-18 13:07 UTC (permalink / raw)
  To: Joseph Novakovich; +Cc: 43080

Hi Joseph,

Did you have a chance to look into it?

Thanks,
Ludo’.

Ludovic Courtès <ludo@gnu.org> skribis:

> Hi Joseph,
>
> Joseph Novakovich <josephnovakovich@gmail.com> skribis:
>
>> From 798d0e3c2b635cfe3a936937fd3dd3ea1b8c5812 Mon Sep 17 00:00:00 2001
>> From: Joseph Novakovich <josephnovakovich@gmail.com>
>> Date: Thu, 27 Aug 2020 19:16:16 -0400
>> Subject: [PATCH] gnu: add j version 902.
>>
>> ---
>>  gnu/packages/j.scm | 180 +++++++++++++++++++++++++++++++++++++++++++++
>
> Sorry for the loooong delay!
>
> A few comments—if needed we can make those changes on your behalf, let
> us know.
>
> Could you add j.scm to ‘gnu/local.mk’?
>
>> +    (name "j")
>> +    (version "902")
>> +    (source
>> +     (origin
>> +       (method git-fetch)
>> +       (uri
>> +        (git-reference
>> +         (url "https://github.com/jsoftware/jsource")
>> +         (commit "59324abbc6c9c3709d39096f5a41e0a4ef28e9f6")))
>
> Why this commit?  If there’s a tag, it would be clearer to refer to the
> tag (the ‘commit’ field can name a tag).
>
>> +    (outputs '("out"))
>
> Unnecessary, you can remove it.
>
>> +     `(#:modules
>> +       ((guix build gnu-build-system)
>> +        (guix build utils))
>
> Likewise.
>
>> +           (lambda* (#:key inputs outputs #:allow-other-keys)
>> +             (let ((jplatform "linux")
>> +                   (j64x "j64avx2"))
>> +               (chdir "make2")
>> +               (system
>> +                (format #f
>> +                        "jplatform=~a j64x=~a USE_SLEEF=1 ./build_jconsole.sh"
>> +                        jplatform j64x))
>
> Note that we cannot assume AVX2 support (on x86_64, but especially on
> non-Intel platforms).  Can you check this doesn’t create binaries that
> require AVX2?
>
> Also, it would be more robust to replace ‘system’ by something like:
>
>   (Seton "jplatform" "linux")
>   (setenv "USE_SLEEF" "1")
>   …
>   (invoke "./build_jconsole.sh")
>
> since ‘invoke’ checks the exit code of the given command.
>
>> +           (lambda* (#:key inputs outputs #:allow-other-keys)
>> +             (let* ((bin-out (string-append (assoc-ref %outputs "out") "/bin"))
>> +                    (share-out (string-append (assoc-ref %outputs "out")
>> +                                              "/share/j"))
>> +                    (jconsole "jlibrary/bin/jconsole")
>> +                    (libj.so  "jlibrary/bin/libj.so"))
>
> I’d omit ‘-out’ from variable names.
>
>> +    (synopsis "APL Dialect")
>
> What about “Dialect of the APL programming language” for clarity?
>
>> +    (description "J is a programming language that works with arrays,
>> +verbs, adverbs, and conjunctions.  For example, +/x sums array x and
>> +/:~x sorts it.")
>
> Please use @code markup for code snippets.  Bonus points if you can
> expound a bit!
>
>   https://guix.gnu.org/manual/en/html_node/Synopses-and-Descriptions.html
>
>> +    (license gpl3)))
>
> I confirm that this is “version 3 only” per ‘license.txt’.
>
> Could you send an updated patch?
>
> Thanks,
> Ludo’.




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

* [bug#43080] [PATCH] gnu: add j version 902.
  2020-08-28  0:05 [bug#43080] [PATCH] gnu: add j version 902 Joseph Novakovich
  2020-09-01 13:19 ` [bug#43080] Joseph Novakovich
  2020-10-12 17:37 ` [bug#43080] [PATCH] gnu: add j version 902 Ludovic Courtès
@ 2021-10-01 10:27 ` Philip Kaludercic
  2 siblings, 0 replies; 6+ messages in thread
From: Philip Kaludercic @ 2021-10-01 10:27 UTC (permalink / raw)
  To: 43080


Has there been any further progress on including J?

-- 
	Philip K.




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

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

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-28  0:05 [bug#43080] [PATCH] gnu: add j version 902 Joseph Novakovich
2020-09-01 13:19 ` [bug#43080] Joseph Novakovich
2020-10-12 18:13   ` [bug#43080] Tobias Geerinckx-Rice via Guix-patches via
2020-10-12 17:37 ` [bug#43080] [PATCH] gnu: add j version 902 Ludovic Courtès
2020-12-18 13:07   ` Ludovic Courtès
2021-10-01 10:27 ` Philip Kaludercic

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).