gnu: emacs-magit-svn: Update to 20190216.
* gnu/packages/emacs-xyz.scm (emacs-magit-svn): Update to 20190216.
This commit is contained in:
parent
3a7ca60adc
commit
65fc1932b3
|
@ -328,27 +328,25 @@ operations.")
|
||||||
(deprecated-package "magit" emacs-magit))
|
(deprecated-package "magit" emacs-magit))
|
||||||
|
|
||||||
(define-public emacs-magit-svn
|
(define-public emacs-magit-svn
|
||||||
|
(let ((commit "9e33ceee32f665db59909e1c00a667ccdd04178f"))
|
||||||
(package
|
(package
|
||||||
(name "emacs-magit-svn")
|
(name "emacs-magit-svn")
|
||||||
(version "2.2.1")
|
(version (git-version "2.2.1" "1" commit))
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/magit/magit-svn")
|
(url "https://github.com/magit/magit-svn")
|
||||||
(commit version)))
|
(commit commit)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"01kcsc53q3mbhgjssjpby7ypnhqsr48rkl1xz3ahaypmlp929gl9"))))
|
"1mlqz8dh6jy5rv72lgkxv253dgh73fmbaidskicypapvbl3lr6xy"))))
|
||||||
(build-system trivial-build-system)
|
(build-system trivial-build-system)
|
||||||
(native-inputs `(("emacs" ,emacs-minimal)))
|
(native-inputs `(("emacs" ,emacs-minimal)))
|
||||||
(propagated-inputs `(("dash" ,emacs-dash)
|
(propagated-inputs `(("dash" ,emacs-dash)
|
||||||
("ghub" ,emacs-ghub)
|
|
||||||
("graphql" ,emacs-graphql)
|
|
||||||
("treepy" ,emacs-treepy)
|
|
||||||
("with-editor" ,emacs-with-editor)
|
("with-editor" ,emacs-with-editor)
|
||||||
("magit" ,emacs-magit)
|
("magit" ,emacs-magit)
|
||||||
("magit-popup" ,emacs-magit-popup)))
|
("transient" ,emacs-transient)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:modules ((guix build utils)
|
`(#:modules ((guix build utils)
|
||||||
(guix build emacs-utils))
|
(guix build emacs-utils))
|
||||||
|
@ -362,18 +360,9 @@ operations.")
|
||||||
"/bin/emacs"))
|
"/bin/emacs"))
|
||||||
(magit (string-append (assoc-ref %build-inputs "magit")
|
(magit (string-append (assoc-ref %build-inputs "magit")
|
||||||
"/share/emacs/site-lisp"))
|
"/share/emacs/site-lisp"))
|
||||||
(magit-popup (string-append (assoc-ref %build-inputs "magit-popup")
|
(transient (string-append (assoc-ref %build-inputs "transient")
|
||||||
"/share/emacs/site-lisp/guix.d/magit-popup-"
|
"/share/emacs/site-lisp/guix.d/transient-"
|
||||||
,(package-version emacs-magit-popup)))
|
,(package-version emacs-transient)))
|
||||||
(ghub (string-append (assoc-ref %build-inputs "ghub")
|
|
||||||
"/share/emacs/site-lisp/guix.d/ghub-"
|
|
||||||
,(package-version emacs-ghub)))
|
|
||||||
(graphql (string-append (assoc-ref %build-inputs "graphql")
|
|
||||||
"/share/emacs/site-lisp/guix.d/graphql-"
|
|
||||||
,(package-version emacs-graphql)))
|
|
||||||
(treepy (string-append (assoc-ref %build-inputs "treepy")
|
|
||||||
"/share/emacs/site-lisp/guix.d/treepy-"
|
|
||||||
,(package-version emacs-treepy)))
|
|
||||||
(dash (string-append (assoc-ref %build-inputs "dash")
|
(dash (string-append (assoc-ref %build-inputs "dash")
|
||||||
"/share/emacs/site-lisp/guix.d/dash-"
|
"/share/emacs/site-lisp/guix.d/dash-"
|
||||||
,(package-version emacs-dash)))
|
,(package-version emacs-dash)))
|
||||||
|
@ -390,8 +379,8 @@ operations.")
|
||||||
(parameterize ((%emacs emacs))
|
(parameterize ((%emacs emacs))
|
||||||
(emacs-generate-autoloads ,name lisp-dir)
|
(emacs-generate-autoloads ,name lisp-dir)
|
||||||
(setenv "EMACSLOADPATH"
|
(setenv "EMACSLOADPATH"
|
||||||
(string-append ":" magit ":" magit-popup ":" ghub ":"
|
(string-append ":" magit ":" transient
|
||||||
":" graphql ":" treepy ":" dash ":" with-editor))
|
":" dash ":" with-editor))
|
||||||
(emacs-batch-eval '(byte-compile-file "magit-svn.el"))))
|
(emacs-batch-eval '(byte-compile-file "magit-svn.el"))))
|
||||||
#t))))
|
#t))))
|
||||||
(home-page "https://github.com/magit/magit-svn")
|
(home-page "https://github.com/magit/magit-svn")
|
||||||
|
@ -399,7 +388,7 @@ operations.")
|
||||||
(description
|
(description
|
||||||
"This package is an extension to Magit, the Git Emacs mode, providing
|
"This package is an extension to Magit, the Git Emacs mode, providing
|
||||||
support for Git-SVN.")
|
support for Git-SVN.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public magit-svn
|
(define-public magit-svn
|
||||||
(deprecated-package "magit-svn" emacs-magit-svn))
|
(deprecated-package "magit-svn" emacs-magit-svn))
|
||||||
|
|
Loading…
Reference in New Issue