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
					
				
					 1 changed files with 56 additions and 67 deletions
				
			
		| 
						 | 
				
			
			@ -328,27 +328,25 @@ operations.")
 | 
			
		|||
  (deprecated-package "magit" emacs-magit))
 | 
			
		||||
 | 
			
		||||
(define-public emacs-magit-svn
 | 
			
		||||
  (let ((commit "9e33ceee32f665db59909e1c00a667ccdd04178f"))
 | 
			
		||||
    (package
 | 
			
		||||
      (name "emacs-magit-svn")
 | 
			
		||||
    (version "2.2.1")
 | 
			
		||||
      (version (git-version "2.2.1" "1" commit))
 | 
			
		||||
      (source (origin
 | 
			
		||||
                (method git-fetch)
 | 
			
		||||
                (uri (git-reference
 | 
			
		||||
                      (url "https://github.com/magit/magit-svn")
 | 
			
		||||
                     (commit version)))
 | 
			
		||||
                      (commit commit)))
 | 
			
		||||
                (file-name (git-file-name name version))
 | 
			
		||||
                (sha256
 | 
			
		||||
                 (base32
 | 
			
		||||
                "01kcsc53q3mbhgjssjpby7ypnhqsr48rkl1xz3ahaypmlp929gl9"))))
 | 
			
		||||
                  "1mlqz8dh6jy5rv72lgkxv253dgh73fmbaidskicypapvbl3lr6xy"))))
 | 
			
		||||
      (build-system trivial-build-system)
 | 
			
		||||
      (native-inputs `(("emacs" ,emacs-minimal)))
 | 
			
		||||
      (propagated-inputs `(("dash" ,emacs-dash)
 | 
			
		||||
                         ("ghub" ,emacs-ghub)
 | 
			
		||||
                         ("graphql" ,emacs-graphql)
 | 
			
		||||
                         ("treepy" ,emacs-treepy)
 | 
			
		||||
                           ("with-editor" ,emacs-with-editor)
 | 
			
		||||
                           ("magit" ,emacs-magit)
 | 
			
		||||
                         ("magit-popup" ,emacs-magit-popup)))
 | 
			
		||||
                           ("transient" ,emacs-transient)))
 | 
			
		||||
      (arguments
 | 
			
		||||
       `(#:modules ((guix build utils)
 | 
			
		||||
                    (guix build emacs-utils))
 | 
			
		||||
| 
						 | 
				
			
			@ -362,18 +360,9 @@ operations.")
 | 
			
		|||
                                          "/bin/emacs"))
 | 
			
		||||
                 (magit    (string-append (assoc-ref %build-inputs "magit")
 | 
			
		||||
                                          "/share/emacs/site-lisp"))
 | 
			
		||||
               (magit-popup (string-append (assoc-ref %build-inputs "magit-popup")
 | 
			
		||||
                                           "/share/emacs/site-lisp/guix.d/magit-popup-"
 | 
			
		||||
                                           ,(package-version emacs-magit-popup)))
 | 
			
		||||
               (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)))
 | 
			
		||||
                 (transient (string-append (assoc-ref %build-inputs "transient")
 | 
			
		||||
                                           "/share/emacs/site-lisp/guix.d/transient-"
 | 
			
		||||
                                           ,(package-version emacs-transient)))
 | 
			
		||||
                 (dash     (string-append (assoc-ref %build-inputs "dash")
 | 
			
		||||
                                          "/share/emacs/site-lisp/guix.d/dash-"
 | 
			
		||||
                                          ,(package-version emacs-dash)))
 | 
			
		||||
| 
						 | 
				
			
			@ -390,8 +379,8 @@ operations.")
 | 
			
		|||
               (parameterize ((%emacs emacs))
 | 
			
		||||
                 (emacs-generate-autoloads ,name lisp-dir)
 | 
			
		||||
                 (setenv "EMACSLOADPATH"
 | 
			
		||||
                       (string-append ":" magit ":" magit-popup ":" ghub ":"
 | 
			
		||||
                                      ":" graphql ":" treepy ":" dash ":" with-editor))
 | 
			
		||||
                         (string-append ":" magit ":" transient
 | 
			
		||||
                                        ":" dash ":" with-editor))
 | 
			
		||||
                 (emacs-batch-eval '(byte-compile-file "magit-svn.el"))))
 | 
			
		||||
             #t))))
 | 
			
		||||
      (home-page "https://github.com/magit/magit-svn")
 | 
			
		||||
| 
						 | 
				
			
			@ -399,7 +388,7 @@ operations.")
 | 
			
		|||
      (description
 | 
			
		||||
       "This package is an extension to Magit, the Git Emacs mode, providing
 | 
			
		||||
support for Git-SVN.")
 | 
			
		||||
    (license license:gpl3+)))
 | 
			
		||||
      (license license:gpl3+))))
 | 
			
		||||
 | 
			
		||||
(define-public magit-svn
 | 
			
		||||
  (deprecated-package "magit-svn" emacs-magit-svn))
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in a new issue