guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: symengine: Fix indentation.


From: guix-commits
Subject: branch master updated: gnu: symengine: Fix indentation.
Date: Wed, 24 Jun 2020 13:47:31 -0400

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new af0307a  gnu: symengine: Fix indentation.
af0307a is described below

commit af0307a099ecfe6364da69415933d56dba33e055
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Wed Jun 24 19:46:55 2020 +0200

    gnu: symengine: Fix indentation.
    
    * gnu/packages/algebra.scm (symengine): Fix indentation and apply small
    cosmetic fixes.
---
 gnu/packages/algebra.scm | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm
index 34e6d40..90af145 100644
--- a/gnu/packages/algebra.scm
+++ b/gnu/packages/algebra.scm
@@ -954,17 +954,17 @@ algorithms from the FORTRAN library MINPACK.")
     (version "0.6.0")
     (source
      (origin
-      (method git-fetch)
-      (uri (git-reference
-            (url "https://github.com/symengine/symengine.git";)
-            (commit (string-append "v" version))))
-      (file-name (git-file-name name version))
-      (sha256
-       (base32 "129iv9maabmb42ylfdv0l0g94mcbf3y4q3np175008rcqdr8z6h1"))))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/symengine/symengine.git";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "129iv9maabmb42ylfdv0l0g94mcbf3y4q3np175008rcqdr8z6h1"))))
     (build-system cmake-build-system)
     (arguments
-     '(;; These are the suggested build options in the README.
-       #:configure-flags
+     '(#:configure-flags
+       ;; These are the suggested build options in the README.
        '("-DCMAKE_BUILD_TYPE=Release"
          "-DWITH_GMP=on"
          "-DWITH_MPFR=on"
@@ -972,7 +972,7 @@ algorithms from the FORTRAN library MINPACK.")
          "-DINTEGER_CLASS=flint"
          "-DWITH_LLVM=on"
          "-DWITH_SYMENGINE_THREAD_SAFE=on"
-         "-DBUILD_SHARED_LIBS=on"))) ; also build libsymengine
+         "-DBUILD_SHARED_LIBS=on")))    ;also build libsymengine
     (native-inputs
      `(("llvm" ,llvm)))
     (inputs
@@ -982,11 +982,11 @@ algorithms from the FORTRAN library MINPACK.")
        ("mpfr" ,mpfr)))
     (home-page "https://github.com/symengine/symengine";)
     (synopsis "Fast symbolic manipulation library")
-    (description "SymEngine is a standalone fast C++ symbolic manipulation
-library.  Optional thin wrappers allow usage of the library from other
-languages.")
-    (license (list license:expat     ; SymEngine
-                   license:bsd-3)))) ; 3rd party code
+    (description
+     "SymEngine is a standalone fast C++ symbolic manipulation library.
+Optional thin wrappers allow usage of the library from other languages.")
+    (license (list license:expat        ;SymEngine
+                   license:bsd-3))))    ;3rd party code
 
 (define-public eigen
   (package



reply via email to

[Prev in Thread] Current Thread [Next in Thread]