gnu: emacs-ghub: Update to 3.3.0.
* gnu/packages/emacs-xyz.scm (emacs-ghub): Update to 3.3.0.
This commit is contained in:
parent
3c47d838fa
commit
73a148f325
1 changed files with 30 additions and 33 deletions
|
@ -650,42 +650,39 @@ deliver data to mobile and web apps.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-ghub
|
(define-public emacs-ghub
|
||||||
;; We need a newer commit to avoid problems in emacs-forge.
|
(package
|
||||||
(let ((commit "e19cd86ca4768a6d89285123933baa3f1460d696")
|
(name "emacs-ghub")
|
||||||
(revision "2"))
|
(version "3.3.0")
|
||||||
(package
|
(source
|
||||||
(name "emacs-ghub")
|
(origin
|
||||||
(version (git-version "3.2.0" revision commit))
|
(method git-fetch)
|
||||||
(source (origin
|
(uri (git-reference
|
||||||
(method git-fetch)
|
(url "https://github.com/magit/ghub")
|
||||||
(uri (git-reference
|
(commit (string-append "v" version))))
|
||||||
(url "https://github.com/magit/ghub")
|
(file-name (git-file-name name version))
|
||||||
(commit commit)))
|
(sha256
|
||||||
(file-name (git-file-name name version))
|
(base32 "1229g0d9f4ywwjndx32x4z5jdr0kzyi44hjxmy0sifwfmg9nn251"))))
|
||||||
(sha256
|
(build-system emacs-build-system)
|
||||||
(base32
|
(arguments
|
||||||
"1d6f8sxlsl0fpkzwbpnaw77d1a5pkg63zfvf6a2fxir357lbdizx"))))
|
`(#:phases
|
||||||
(build-system emacs-build-system)
|
(modify-phases %standard-phases
|
||||||
(arguments
|
(add-before 'install 'make-info
|
||||||
`(#:phases
|
(lambda _
|
||||||
(modify-phases %standard-phases
|
(invoke "make" "info"))))))
|
||||||
(add-before 'install 'make-info
|
(native-inputs
|
||||||
(lambda _
|
`(("texinfo" ,texinfo)))
|
||||||
(invoke "make" "info"))))))
|
(propagated-inputs
|
||||||
(native-inputs
|
`(("dash" ,emacs-dash)
|
||||||
`(("texinfo" ,texinfo)))
|
("emacs-let-alist" ,emacs-let-alist)
|
||||||
(propagated-inputs
|
("treepy" ,emacs-treepy)))
|
||||||
`(("dash" ,emacs-dash)
|
(home-page "https://github.com/magit/ghub")
|
||||||
("emacs-let-alist" ,emacs-let-alist)
|
(synopsis "Emacs client libraries for the APIs of various Git forges")
|
||||||
("treepy" ,emacs-treepy)))
|
(description
|
||||||
(home-page "https://github.com/magit/ghub")
|
"Ghub provides basic support for using the APIs of various Git forges from
|
||||||
(synopsis "Emacs client libraries for the APIs of various Git forges")
|
|
||||||
(description
|
|
||||||
"Ghub provides basic support for using the APIs of various Git forges from
|
|
||||||
Emacs packages. It supports the REST APIs of Github, Github GraphQL, Gitlab,
|
Emacs packages. It supports the REST APIs of Github, Github GraphQL, Gitlab,
|
||||||
Gitea, Gogs and Bitbucket. It abstracts access to API resources using only a
|
Gitea, Gogs and Bitbucket. It abstracts access to API resources using only a
|
||||||
handful of functions that are not resource-specific.")
|
handful of functions that are not resource-specific.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-typit
|
(define-public emacs-typit
|
||||||
;; Last release is from 2017.
|
;; Last release is from 2017.
|
||||||
|
|
Reference in a new issue