gnu: guile-stis-parser: Update to 1.2.4.1.
* gnu/packages/guile-xyz.scm (guile-stis-parser): Update to 1.2.4.1. [arguments]: Remove obsolete phase. [inputs]: Change from GUILE-2.2 to GUILE-3.0.
This commit is contained in:
parent
aeefe5317d
commit
3a71dac02e
1 changed files with 35 additions and 41 deletions
|
@ -27,6 +27,7 @@
|
||||||
;;; Copyright © 2020 Evan Straw <evan.straw99@gmail.com>
|
;;; Copyright © 2020 Evan Straw <evan.straw99@gmail.com>
|
||||||
;;; Copyright © 2020 Jack Hill <jackhill@jackhill.us>
|
;;; Copyright © 2020 Jack Hill <jackhill@jackhill.us>
|
||||||
;;; Copyright © 2020 Julien Lepiler <julien@lepiller.eu>
|
;;; Copyright © 2020 Julien Lepiler <julien@lepiller.eu>
|
||||||
|
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -2483,20 +2484,18 @@ completion, a simple mode line, etc.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public guile-stis-parser
|
(define-public guile-stis-parser
|
||||||
(let ((commit "6e85d37ffc333b722f4413a6c648263701eb75bd")
|
|
||||||
(revision "1"))
|
|
||||||
(package
|
(package
|
||||||
(name "guile-stis-parser")
|
(name "guile-stis-parser")
|
||||||
(version (git-version "0" revision commit))
|
(version "1.2.4.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://gitlab.com/tampe/stis-parser")
|
(url "https://gitlab.com/tampe/stis-parser")
|
||||||
(commit commit)))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0v4hvq7rlpbra1ni73lf8k6sdmjlflr50yi3p1f24g85h77pc7c0"))))
|
"1fvxdfvc80zqhwzq5x3kxyr6j8p4b51yx85fx1gr3d4gy2ddpx5w"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:parallel-build? #f ; not supported
|
`(#:parallel-build? #f ; not supported
|
||||||
|
@ -2504,17 +2503,12 @@ completion, a simple mode line, etc.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'chdir
|
(add-after 'unpack 'chdir
|
||||||
(lambda _ (chdir "modules") #t))
|
(lambda _ (chdir "modules") #t))
|
||||||
(add-after 'chdir 'use-canonical-directory-for-go-files
|
|
||||||
(lambda _
|
|
||||||
(substitute* "Makefile.am"
|
|
||||||
(("/ccache") "/site-ccache"))
|
|
||||||
#t))
|
|
||||||
(add-after 'chdir 'delete-broken-symlink
|
(add-after 'chdir 'delete-broken-symlink
|
||||||
(lambda _
|
(lambda _
|
||||||
(delete-file "parser/stis-parser/lang/.#calc.scm")
|
(delete-file "parser/stis-parser/lang/.#calc.scm")
|
||||||
#t)))))
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("guile" ,guile-2.2)))
|
`(("guile" ,guile-3.0)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
("automake" ,automake)
|
("automake" ,automake)
|
||||||
|
@ -2526,7 +2520,7 @@ completion, a simple mode line, etc.")
|
||||||
supports backtracking and a small logical framework. The idea is to build up
|
supports backtracking and a small logical framework. The idea is to build up
|
||||||
chunks that are memoized and there is no clear scanner/parser separation,
|
chunks that are memoized and there is no clear scanner/parser separation,
|
||||||
chunks can be expressions as well as simple tokens.")
|
chunks can be expressions as well as simple tokens.")
|
||||||
(license license:lgpl2.0+))))
|
(license license:lgpl2.0+)))
|
||||||
|
|
||||||
(define-public guile-persist
|
(define-public guile-persist
|
||||||
(let ((commit "b14927b0368af51c024560aee5f55724aee35233")
|
(let ((commit "b14927b0368af51c024560aee5f55724aee35233")
|
||||||
|
|
Reference in a new issue