summaryrefslogtreecommitdiff
path: root/gnu/packages/sagemath.scm
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2019-06-20 00:03:46 +0200
committerAndreas Enge <andreas@enge.fr>2019-06-20 00:03:46 +0200
commit80ee7c4a48cdab4afa4d8eb4b7b8873d47841830 (patch)
tree591ce329f471ef8ecfb7ba26ad97f83400dff273 /gnu/packages/sagemath.scm
parenta1dcaacb7b790668fd8cce6ce29a004587f50218 (diff)
downloadguix-patches-80ee7c4a48cdab4afa4d8eb4b7b8873d47841830.tar
guix-patches-80ee7c4a48cdab4afa4d8eb4b7b8873d47841830.tar.gz
gnu: zn_poly: Rename to zn-poly, according to our naming conventions.
Reported by Nicolas Goaziou <mail@nicolasgoaziou.fr>. This is a follow-up to commit 01822e3ebf24031d6438fc4e7ad3a869ea12fdf4. * gnu/packages/sagemath.scm (zn_poly): Rename to... * gnu/packages/sagemath.scm (zn-poly): ...this.
Diffstat (limited to 'gnu/packages/sagemath.scm')
-rw-r--r--gnu/packages/sagemath.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/sagemath.scm b/gnu/packages/sagemath.scm
index 8ae3cf77ff..63d1281668 100644
--- a/gnu/packages/sagemath.scm
+++ b/gnu/packages/sagemath.scm
@@ -270,18 +270,18 @@ on numerical types, while GiNaC depends on CLN for this purpose.")
(home-page "http://pynac.org/")))
;; Sage has become upstream of the following package.
-(define-public zn_poly
+(define-public zn-poly
(package
- (name "zn_poly")
+ (name "zn-poly")
(version "0.9.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url (string-append "https://gitlab.com/sagemath/"
- name ".git/"))
+ "zn_poly.git/"))
(commit version)))
- (file-name (git-file-name name version))
+ (file-name (git-file-name "zn_poly" version))
(sha256
(base32
"0ra5vy585bqq7g3317iw6fp44iqgqvds3j0l1va6mswimypq4vxb"))))