mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: makel: Update to 1.0.0.
* gnu/packages/emacs-build.scm (makel): Update to 1.0.0. [arguments]: Use G-Expressions. <#:tests?>: Activate. Change-Id: I8ccfae0e4501d8a8c43af186e70d6cf010f700e6 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
a49269fd42
commit
582be17cd0
1 changed files with 56 additions and 58 deletions
|
@ -524,33 +524,29 @@ Lisp.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public makel
|
(define-public makel
|
||||||
(let ((commit "2c831098c28a1f581b016532fa1f6e1c596b8ed1")
|
|
||||||
(revision "0"))
|
|
||||||
(package
|
(package
|
||||||
(name "makel")
|
(name "makel")
|
||||||
(version (git-version "0.8.0" revision commit))
|
(version "1.0.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/DamienCassou/makel")
|
(url "https://github.com/DamienCassou/makel")
|
||||||
(commit commit)))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0lmfl27rqh1530j8g4z2k6y6mc25n54bjkqriqdkw3703kliyvry"))))
|
(base32 "143bdy4c81jbmp5sk1arnlmpc4dsw85n601x9rii2dgyn186l8si"))))
|
||||||
(build-system copy-build-system)
|
(build-system copy-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
;; Some tests are currently broken, see
|
|
||||||
;; https://github.com/DamienCassou/makel/issues/6
|
|
||||||
#:tests? #f
|
|
||||||
#:modules
|
#:modules
|
||||||
'((guix build copy-build-system)
|
#~((guix build copy-build-system)
|
||||||
(guix build utils)
|
(guix build utils)
|
||||||
(srfi srfi-1)
|
(srfi srfi-1)
|
||||||
(srfi srfi-26)
|
(srfi srfi-26)
|
||||||
(ice-9 ftw))
|
(ice-9 ftw))
|
||||||
#:install-plan ''(("makel.mk" "include/")
|
#:install-plan
|
||||||
|
#~'(("makel.mk" "include/")
|
||||||
("README.org" "share/docs/"))
|
("README.org" "share/docs/"))
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
|
@ -575,13 +571,15 @@ Lisp.")
|
||||||
(with-directory-excursion "test"
|
(with-directory-excursion "test"
|
||||||
(invoke "bash" "run-tests.sh"))
|
(invoke "bash" "run-tests.sh"))
|
||||||
(format #f "Test suite not run.~%")))))))
|
(format #f "Test suite not run.~%")))))))
|
||||||
(native-inputs (list bash-minimal emacs-minimal))
|
(native-inputs
|
||||||
(inputs (list emacs-buttercup emacs-package-lint))
|
(list bash-minimal emacs-minimal))
|
||||||
|
(inputs
|
||||||
|
(list emacs-buttercup emacs-package-lint))
|
||||||
(home-page "https://github.com/DamienCassou/makel")
|
(home-page "https://github.com/DamienCassou/makel")
|
||||||
(synopsis "Makefile to help checking Emacs packages")
|
(synopsis "Makefile to help checking Emacs packages")
|
||||||
(description "This package provides a makefile to help checking Emacs
|
(description
|
||||||
packages.")
|
"This package provides a Makefile to help checking Emacs packages.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
;; This is an alternative version patches for internal Guix tests.
|
;; This is an alternative version patches for internal Guix tests.
|
||||||
;; The user-facing version is in emacs-xyz.scm
|
;; The user-facing version is in emacs-xyz.scm
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue