From 573a07b689fedcf3f36fa46a4625153fda273344 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 24 Oct 2024 11:12:15 +0100 Subject: gnu: lcalc: Add it back. Follow up fix for 340df4885fe6ae523d311e2fc00119798d9a7571. * gnu/packages/sagemath.scm: (lcalc): Revert accidently deleted variable during sorting alphabetically. Change-Id: I88dd6c3da248dab5d87f8a2e02356f38491818fb --- gnu/packages/sagemath.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/sagemath.scm b/gnu/packages/sagemath.scm index 3dd220b132..ed148d8e6f 100644 --- a/gnu/packages/sagemath.scm +++ b/gnu/packages/sagemath.scm @@ -80,6 +80,32 @@ used as internal storage type for polynomial structures.") (license license:gpl2+) (home-page "https://github.com/BRiAl/BRiAl/"))) +(define-public lcalc + (package + (name "lcalc") + (version "2.0.5") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/sagemath/lcalc") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1rwyx292y3jbsp88wagn9nhl9z7wsnl2yrs5imxkbxq87pnrj5a7")))) + (build-system gnu-build-system) + (arguments + (list #:configure-flags '(list "--with-pari"))) + (inputs (list pari-gp)) + (native-inputs (list autoconf automake libtool pkg-config gengetopt)) + (home-page "https://gitlab.com/sagemath/lcalc") + (synopsis "C++ library for computing with L-functions") + (description + "Lcalc computes L-functions, in particular the Riemann zeta function, +Dirichlet L-functions and L-functions attached to elliptic curves and +modular forms.") + (license license:gpl2+))) + (define-public cliquer (package (name "cliquer") -- cgit v1.2.3 ='range'>range
path: root/tests/elpa.scm
AgeCommit message (Expand)Author
2020-01-16import: elpa: Rewrite test to use an HTTP server instead of mocking....* guix/import/elpa.scm (elpa-url): Add 'gnu/http'. (elpa->guix-package): Handle it. * tests/elpa.scm (elpa-package-info-mock, auctex-readme-mock) (elpa-version->string, package-source-url, ensure-list) (package-home-page, make-elpa-package): Remove. <top level>: Call '%http-server-port'. (eval-test-with-elpa): Remove uses of 'mock'. Use 'with-http-server' and parameterize 'current-http-proxy' instead. Ludovic Courtès
2018-03-18tests: elpa: Don't actually download files....* tests/elpa.scm (eval-test-with-elpa): Mock 'url-fetch'. Ludovic Courtès
2018-03-18import: elpa: Adjust test for HTTPS URLs....This is a followup to 44dd3d579db3aa467e41d0b431029e46cae8e12d. * tests/elpa.scm (eval-test-with-elpa): Use https. Ludovic Courtès