mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-09 04:42:01 +01:00
gnu: erlang: Update to 24.0.2.
* gnu/packages/erlang.scm (erlang): Update to 24.0.2. [arguments]: Adjust custom 'install-doc phase for changes in manpage input. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
6577fda973
commit
11c832a7f4
1 changed files with 5 additions and 9 deletions
|
@ -5,6 +5,7 @@
|
||||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2018 Nikita <nikita@n0.is>
|
;;; Copyright © 2018 Nikita <nikita@n0.is>
|
||||||
;;; Copyright © 2021 Oskar Köök <oskar@maatriks.ee>
|
;;; Copyright © 2021 Oskar Köök <oskar@maatriks.ee>
|
||||||
|
;;; Copyright © 2021 Cees de Groot <cg@evrl.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -41,7 +42,7 @@
|
||||||
(define-public erlang
|
(define-public erlang
|
||||||
(package
|
(package
|
||||||
(name "erlang")
|
(name "erlang")
|
||||||
(version "23.2.1")
|
(version "24.0.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
;; The tarball from http://erlang.org/download contains many
|
;; The tarball from http://erlang.org/download contains many
|
||||||
|
@ -53,7 +54,7 @@
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1p3lw4bcm2dph3pf1h4i0d9pzrcfr83r0iadqanxkwbmm1bl11pm"))
|
"06plnhi1489wqsag5wgm16hb1xd1a8nbnb9gw7635d3fidxyb0wp"))
|
||||||
(patches (search-patches "erlang-man-path.patch"))))
|
(patches (search-patches "erlang-man-path.patch"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
@ -69,7 +70,7 @@
|
||||||
(version-major+minor version) ".tar.gz"))
|
(version-major+minor version) ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0rq0rw68f02vckgdiwmvx8bvyv00l81s27cq59i3h79j9prfal2n"))))))
|
"1c9ccp93pmm54mmvpiyrmj8v00pq11a60c4xv220k97i965zkwsg"))))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("ncurses" ,ncurses)
|
`(("ncurses" ,ncurses)
|
||||||
("openssl" ,openssl)
|
("openssl" ,openssl)
|
||||||
|
@ -202,13 +203,8 @@
|
||||||
(manpages (assoc-ref inputs "erlang-manpages"))
|
(manpages (assoc-ref inputs "erlang-manpages"))
|
||||||
(share (string-append out "/share/")))
|
(share (string-append out "/share/")))
|
||||||
(mkdir-p share)
|
(mkdir-p share)
|
||||||
(mkdir-p (string-append share "/misc/erlang"))
|
|
||||||
(with-directory-excursion share
|
(with-directory-excursion share
|
||||||
(invoke "tar" "xvf" manpages)
|
(invoke "tar" "xvf" manpages))
|
||||||
(rename-file "COPYRIGHT"
|
|
||||||
(string-append share "/misc/erlang/COPYRIGHT"))
|
|
||||||
;; Delete superfluous file.
|
|
||||||
(delete-file "PR.template"))
|
|
||||||
#t))))))
|
#t))))))
|
||||||
(home-page "https://www.erlang.org/")
|
(home-page "https://www.erlang.org/")
|
||||||
(synopsis "The Erlang programming language")
|
(synopsis "The Erlang programming language")
|
||||||
|
|
Loading…
Add table
Reference in a new issue