From: ng0 <contact.ng0@cryptolab.net>
To: Arun Isaac <arunisaac@systemreboot.net>
Cc: guix-devel@gnu.org
Subject: Re: [PATCH 1/2] gnu: octave: Build with curl and graphicsmagick.
Date: Tue, 7 Mar 2017 20:04:35 +0000 [thread overview]
Message-ID: <20170307200435.nzybdurqpyh355fs@abyayala> (raw)
In-Reply-To: <20170307172647.944-1-arunisaac@systemreboot.net>
Arun Isaac transcribed 4.8K bytes:
> * gnu/packages/maths.scm (octave)[inputs]: Add curl and graphicsmagick.
> ---
> gnu/packages/maths.scm | 107 +++++++++++++++++++++++++------------------------
> 1 file changed, 55 insertions(+), 52 deletions(-)
>
> diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
> index 9533f5f0a..3abdf5375 100644
> --- a/gnu/packages/maths.scm
> +++ b/gnu/packages/maths.scm
> @@ -72,6 +72,7 @@
> #:use-module (gnu packages guile)
> #:use-module (gnu packages xorg)
> #:use-module (gnu packages gl)
> + #:use-module (gnu packages imagemagick)
> #:use-module (gnu packages m4)
> #:use-module (gnu packages mpi)
> #:use-module (gnu packages multiprecision)
> @@ -923,62 +924,64 @@ can solve two kinds of problems:
> ;; the following packages: texinfo, less, ghostscript, gnuplot.
> (define-public octave
> (package
The patch below looks like your editor fixed up indentation of regions
you did not work in, which will make it hard to search for the real
additions and changes.
If I'm right about this, could you send a version without indent fixes?
> - (name "octave")
> - (version "4.2.1")
> - (source
> - (origin
> - (method url-fetch)
> - (uri (string-append "mirror://gnu/octave/octave-"
> - version ".tar.lz"))
> - (sha256
> - (base32
> - "09zhhch79jw3ynw39vizx0i2cbd2bjz3sp38pjdzraqrbivpwp92"))))
> - (build-system gnu-build-system)
> - (inputs
> - `(("lapack" ,lapack)
> - ("readline" ,readline)
> - ("glpk" ,glpk)
> - ("fftw" ,fftw)
> - ("fftwf" ,fftwf)
> - ("arpack" ,arpack-ng)
> - ("pcre" ,pcre)
> - ("fltk" ,fltk)
> - ("fontconfig" ,fontconfig)
> - ("freetype" ,freetype)
> - ("hdf5" ,hdf5)
> - ("libxft" ,libxft)
> - ("mesa" ,mesa)
> - ("glu" ,glu)
> - ("zlib" ,zlib)))
> - (native-inputs
> - `(("lzip" ,lzip)
> - ("gfortran" ,gfortran)
> - ("pkg-config" ,pkg-config)
> - ("perl" ,perl)
> - ;; The following inputs are not actually used in the build process.
> - ;; However, the ./configure gratuitously tests for their existence and
> - ;; assumes that programs not present at build time are also not, and
> - ;; can never be, available at run time! If these inputs are therefore
> - ;; not present, support for them will be built out. However, Octave
> - ;; will still run without them, albeit without the features they
> - ;; provide.
> - ("less" ,less)
> - ("texinfo" ,texinfo)
> - ("ghostscript" ,ghostscript)
> - ("gnuplot" ,gnuplot)))
> - (arguments
> - `(#:configure-flags
> - (list (string-append "--with-shell="
> - (assoc-ref %build-inputs "bash")
> - "/bin/sh"))))
> - (home-page "https://www.gnu.org/software/octave/")
> - (synopsis "High-level language for numerical computation")
> - (description "GNU Octave is a high-level interpreted language that is
> + (name "octave")
> + (version "4.2.1")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append "mirror://gnu/octave/octave-"
> + version ".tar.lz"))
> + (sha256
> + (base32
> + "09zhhch79jw3ynw39vizx0i2cbd2bjz3sp38pjdzraqrbivpwp92"))))
> + (build-system gnu-build-system)
> + (inputs
> + `(("lapack" ,lapack)
> + ("readline" ,readline)
> + ("glpk" ,glpk)
> + ("fftw" ,fftw)
> + ("fftwf" ,fftwf)
> + ("arpack" ,arpack-ng)
> + ("pcre" ,pcre)
> + ("fltk" ,fltk)
> + ("fontconfig" ,fontconfig)
> + ("freetype" ,freetype)
> + ("hdf5" ,hdf5)
> + ("libxft" ,libxft)
> + ("mesa" ,mesa)
> + ("glu" ,glu)
> + ("zlib" ,zlib)
> + ("curl" ,curl)
> + ("graphicsmagick" ,graphicsmagick)))
> + (native-inputs
> + `(("lzip" ,lzip)
> + ("gfortran" ,gfortran)
> + ("pkg-config" ,pkg-config)
> + ("perl" ,perl)
> + ;; The following inputs are not actually used in the build process.
> + ;; However, the ./configure gratuitously tests for their existence and
> + ;; assumes that programs not present at build time are also not, and
> + ;; can never be, available at run time! If these inputs are therefore
> + ;; not present, support for them will be built out. However, Octave
> + ;; will still run without them, albeit without the features they
> + ;; provide.
> + ("less" ,less)
> + ("texinfo" ,texinfo)
> + ("ghostscript" ,ghostscript)
> + ("gnuplot" ,gnuplot)))
> + (arguments
> + `(#:configure-flags
> + (list (string-append "--with-shell="
> + (assoc-ref %build-inputs "bash")
> + "/bin/sh"))))
> + (home-page "https://www.gnu.org/software/octave/")
> + (synopsis "High-level language for numerical computation")
> + (description "GNU Octave is a high-level interpreted language that is
> specialized for numerical computations. It can be used for both linear and
> non-linear applications and it provides great support for visualizing results.
> Work may be performed both at the interactive command-line as well as via
> script files.")
> - (license license:gpl3+)))
> + (license license:gpl3+)))
>
> (define-public opencascade-oce
> (package
> --
> 2.11.0
>
>
next prev parent reply other threads:[~2017-03-07 18:56 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-07 17:26 [PATCH 1/2] gnu: octave: Build with curl and graphicsmagick Arun Isaac
2017-03-07 17:26 ` [PATCH 2/2] gnu: graphicsmagick: Build with 16 bit quantum depth Arun Isaac
2017-03-08 18:54 ` Leo Famulari
2017-03-08 20:13 ` Arun Isaac
2017-03-07 20:04 ` ng0 [this message]
-- strict thread matches above, loose matches on Subject: below --
2017-03-07 19:16 [PATCH 1/2] gnu: octave: Build with curl and graphicsmagick Arun Isaac
2017-03-08 20:11 Arun Isaac
2017-03-09 21:46 ` Leo Famulari
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=20170307200435.nzybdurqpyh355fs@abyayala \
--to=contact.ng0@cryptolab.net \
--cc=arunisaac@systemreboot.net \
--cc=guix-devel@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).