unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Liliana Marie Prikler <liliana.prikler@gmail.com>
To: Frank Pursel <frank.pursel@gmail.com>
Cc: 51980-done@debbugs.gnu.org
Subject: bug#51980: [PATCH] Adding xlispstat.scm
Date: Mon, 22 Nov 2021 21:39:02 +0100	[thread overview]
Message-ID: <3bb9ece1fe0feedda95c9fe0f05abee4414732aa.camel@gmail.com> (raw)
In-Reply-To: <87ee79cj0j.fsf@fpp-Latitude-7280.i-did-not-set--mail-host-address--so-tickle-me>

Pushed with the following adjustments:

Am Sonntag, den 21.11.2021, 13:10 -0800 schrieb Frank Pursel:
> From d39e627c9433e3193de1857a9c0f5b438082ba3f Mon Sep 17 00:00:00
> 2001
> From: Frank Pursel <frank.pursel@gmail.com>
> Date: Sun, 21 Nov 2021 09:29:18 -0800
> Subject: [PATCH] Adding xlispstat
> 
> ---
Added a commit message.
>  gnu/packages/statistics.scm | 50
> +++++++++++++++++++++++++++++++++++++
>  1 file changed, 50 insertions(+)
> 
> diff --git a/gnu/packages/statistics.scm
> b/gnu/packages/statistics.scm
> index e69baee8bd..36d1030bc6 100644
> --- a/gnu/packages/statistics.scm
> +++ b/gnu/packages/statistics.scm
> @@ -14,6 +14,7 @@
>  ;;; Copyright © 2020 Tim Howes <timhowes@lavabit.com>
>  ;;; Copyright © 2021 Bonface Munyoki Kilyungi <me@bonfacemunyoki.com
> >
>  ;;; Copyright © 2021 Lars-Dominik Braun <lars@6xq.net>
> +;;; Copyright © 2021 Frank Pursel <frank.pursel@gmail.com>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -67,6 +68,7 @@ (define-module (gnu packages statistics)
>    #:use-module (gnu packages machine-learning)
>    #:use-module (gnu packages maths)
>    #:use-module (gnu packages multiprecision)
> +  #:use-module (gnu packages ncurses)
>    #:use-module (gnu packages pcre)
>    #:use-module (gnu packages perl)
>    #:use-module (gnu packages pkg-config)
> @@ -74,6 +76,7 @@ (define-module (gnu packages statistics)
>    #:use-module (gnu packages python-science)
>    #:use-module (gnu packages python-xyz)
>    #:use-module (gnu packages readline)
> +  #:use-module (gnu packages shells)
>    #:use-module (gnu packages sphinx)
>    #:use-module (gnu packages ssh)
>    #:use-module (gnu packages tcl)
> @@ -6830,3 +6833,50 @@ (define-public r-desctools
>  from contributed R packages as well.")
>      (license license:gpl2+)))
>  
> +(define-public xlispstat
> +  (let ((xlispstat-version "3.52.23")
> +	(guix-revision "0")
> +	(commit "f1bea6053df658ee48612bf1f63c35de99e2c649"))
> +  (package
> +   (name "xlispstat")
> +   (version (git-version xlispstat-version guix-revision commit))
> +   (source (origin
> +	    (method git-fetch)
> +	    (uri (git-reference
> +		  (url "https://github.com/jhbadger/xlispstat.git")
> +		  (commit commit)))
> +	    (sha256
> +	     (base32
> +	      "1p0cmgy19kbkxia139cb5w9dnkp2cdqp5n3baag6cq3prn3n71mf")))
> )
> +   (build-system gnu-build-system)
> +   (arguments
> +    `(#:parallel-build? #f   ; Parallel builds are not supported
> +      #:parallel-tests? #f   
> +      #:tests? #f            ; Pre-integrated testing source code.
> +      #:configure-flags
> +      (list "--with-gcc")))
Enabled tests.
> +   (inputs `(("tcsh" ,tcsh)
> +	     ("libx11" ,libx11)
> +	     ("libxmu" ,libxmu)
> +	     ("libxext" ,libxext)
> +	     ("libxpm" ,libxpm)
> +	     ("libxaw" ,libxaw)
> +	     ("ncurses" ,ncurses)
> +	     ("gnuplot" ,gnuplot)))
> +   (native-inputs `(("pkg-config" ,pkg-config)))
> +   (synopsis "Statistical analysis environment with interactive
> graphics based on lisp")
> +   (description "XLISP-STAT is a statistical environment based on a
> dialect of the Lisp language called XLISP.  To facilitate statistical
> +computations, standard Lisp functions for addition, logarithms,
> etc.,
> +have been modified to operate on lists and arrays of numbers, and a
> +number of basic statistical functions have been added.  Many of
> these
> +functions have been written in Lisp, and additional functions can be
> +added easily by a user.  Several basic forms of plots, including
> +histograms, scatterplots, rotatable plots and scatterplot matrices
> are
> +provided.  These plots support various forms of interactive
> +highlighting operations and can be linked so points highlighted in
> one
> +plot will be highlighted in all linked plots. Interactions with the
> +plots are controlled by the mouse, menus and dialog boxes. An
> +object-oriented programming system is used to allow menus, dialogs,
> +and the response to mouse actions to be customized.")
Fixed indentation + minor wording.
> +   (home-page "http://homepage.divms.uiowa.edu/~luke/xls/xlsinfo/")
> +   (license expat))))
Used license:expat





      reply	other threads:[~2021-11-22 20:40 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-19 20:01 [bug#51980] [PATCH] Adding xlispstat.scm Frank Pursel
2021-11-21 21:10 ` Frank Pursel
2021-11-22 20:39   ` Liliana Marie Prikler [this message]

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=3bb9ece1fe0feedda95c9fe0f05abee4414732aa.camel@gmail.com \
    --to=liliana.prikler@gmail.com \
    --cc=51980-done@debbugs.gnu.org \
    --cc=frank.pursel@gmail.com \
    /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).