mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: emacs-magit: Update to 3.3.0-0.36059e0.
83ede5a02e
breaks tests in emacs-magit 3.3.0,
I asked Jonas to make a new release, but it can take quite some time
https://github.com/magit/magit/discussions/4742
* gnu/packages/emacs-xyz.scm (emacs-magit): Update to 3.3.0-0.36059e0.
[propagated-inputs]: Add emacs-compat.
[arguments]<#:phases>: Remove disable-tramp-test.
This commit is contained in:
parent
8918e42de0
commit
e7c1f8979a
1 changed files with 70 additions and 76 deletions
|
@ -992,18 +992,20 @@ libgit2 bindings for Emacs, intended to boost the performance of Magit.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-magit
|
(define-public emacs-magit
|
||||||
|
(let ((commit "36059e0b881cb1465cb5ad0099e55e00845a8222")
|
||||||
|
(revision "0"))
|
||||||
(package
|
(package
|
||||||
(name "emacs-magit")
|
(name "emacs-magit")
|
||||||
(version "3.3.0")
|
(version (git-version "3.3.0" revision commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/magit/magit")
|
(url "https://github.com/magit/magit")
|
||||||
(commit (string-append "v" version))))
|
(commit commit)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0cxyvp2aav27znc7mf6c83q5pddpdniaqkrxn1r8dbgr540qmnpn"))))
|
(base32 "12r5z7jbqh74rb9763smh4sblswzwi41wybzcvsy0zhw2r8lpmzv"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
@ -1041,14 +1043,6 @@ libgit2 bindings for Emacs, intended to boost the performance of Magit.")
|
||||||
(invoke "git" "config" "--global" "user.name" "toto")
|
(invoke "git" "config" "--global" "user.name" "toto")
|
||||||
(invoke "git" "config" "--global" "user.email"
|
(invoke "git" "config" "--global" "user.email"
|
||||||
"toto@toto.com")))
|
"toto@toto.com")))
|
||||||
(add-after 'configure-git 'disable-tramp-test
|
|
||||||
(lambda _
|
|
||||||
;; There is an issue causing TRAMP to fail in the build
|
|
||||||
;; environment. Setting the tramp-remote-shell parameter of
|
|
||||||
;; the sudo-method to the file name of the shell didn't help.
|
|
||||||
(substitute* "t/magit-tests.el"
|
|
||||||
(("^\\(ert-deftest magit-toplevel:tramp.*" all)
|
|
||||||
(string-append all " (skip-unless nil)")))))
|
|
||||||
(replace 'expand-load-path
|
(replace 'expand-load-path
|
||||||
(lambda args
|
(lambda args
|
||||||
(with-directory-excursion "lisp"
|
(with-directory-excursion "lisp"
|
||||||
|
@ -1062,7 +1056,7 @@ libgit2 bindings for Emacs, intended to boost the performance of Magit.")
|
||||||
(inputs
|
(inputs
|
||||||
(list git perl))
|
(list git perl))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list emacs-dash emacs-with-editor))
|
(list emacs-dash emacs-with-editor emacs-compat))
|
||||||
(home-page "https://magit.vc/")
|
(home-page "https://magit.vc/")
|
||||||
(synopsis "Emacs interface for the Git version control system")
|
(synopsis "Emacs interface for the Git version control system")
|
||||||
(description
|
(description
|
||||||
|
@ -1071,7 +1065,7 @@ with Emacs. You can review and commit the changes you have made to
|
||||||
the tracked files, for example, and you can browse the history of past
|
the tracked files, for example, and you can browse the history of past
|
||||||
changes. There is support for cherry picking, reverting, merging,
|
changes. There is support for cherry picking, reverting, merging,
|
||||||
rebasing, and other common Git operations.")
|
rebasing, and other common Git operations.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-magit-svn
|
(define-public emacs-magit-svn
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue