guix-patches
[Top][All Lists]
Advanced

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

[bug#56729] [RFC PATCH v2 19/29] gnu: Add flintqs.


From: vicvbcun
Subject: [bug#56729] [RFC PATCH v2 19/29] gnu: Add flintqs.
Date: Mon, 8 Aug 2022 17:45:54 +0200

* gnu/packages/sagemath.scm (flintqs): New variable.
---
 gnu/packages/sagemath.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/sagemath.scm b/gnu/packages/sagemath.scm
index 474af8f246..b59c93f13a 100644
--- a/gnu/packages/sagemath.scm
+++ b/gnu/packages/sagemath.scm
@@ -519,3 +519,31 @@ (define-public gfan
     (synopsis "Software package for computing Gröbner fans and tropical 
varieties")
     (description synopsis)
     (license license:gpl2+)))
+
+(define-public flintqs
+  (package
+    (name "flintqs")
+    (version "1.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/sagemath/FlintQS";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1f0lnayz6j6qgasx8pbq61d2fqam0wwhsmh6h15l4vq58l1vvbwj"))))
+    (build-system gnu-build-system)
+    (arguments
+     (list #:phases #~(modify-phases %standard-phases
+                        (add-after 'unpack 'create-changelog
+                          (lambda _
+                            (with-output-to-file "ChangeLog"
+                              (lambda () (display ""))))))))
+    (inputs (list gmp))
+    (native-inputs (list autoconf automake))
+    (home-page "https://github.com/sagemath/FlintQS";)
+    (synopsis "Highly optimized multi-polynomial quadratic sieve for integer
+factorization")
+    (description synopsis)
+    (license license:gpl2)))
-- 
2.37.0






reply via email to

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