gnu: python-ghp-import: Update to 2.0.2.
* gnu/packages/version-control.scm (python-ghp-import): Update to 2.0.2. [propagated-inputs]: Add python-dateutil. (python2-ghp-import): Delete variable.master
parent
e051e00fef
commit
03f26438e0
|
@ -33,7 +33,7 @@
|
||||||
;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
|
;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
|
||||||
;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
|
;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
|
||||||
;;; Copyright © 2021 Greg Hogan <code@greghogan.com>
|
;;; Copyright © 2021 Greg Hogan <code@greghogan.com>
|
||||||
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2021, 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;; Copyright © 2021 Chris Marusich <cmmarusich@gmail.com>
|
;;; Copyright © 2021 Chris Marusich <cmmarusich@gmail.com>
|
||||||
;;; Copyright © 2021 Léo Le Bouter <lle-bout@zaclys.net>
|
;;; Copyright © 2021 Léo Le Bouter <lle-bout@zaclys.net>
|
||||||
;;; Copyright © 2021 LibreMiami <packaging-guix@libremiami.org>
|
;;; Copyright © 2021 LibreMiami <packaging-guix@libremiami.org>
|
||||||
|
@ -1139,7 +1139,7 @@ repository")
|
||||||
(define-public python-ghp-import
|
(define-public python-ghp-import
|
||||||
(package
|
(package
|
||||||
(name "python-ghp-import")
|
(name "python-ghp-import")
|
||||||
(version "0.5.5")
|
(version "2.0.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -1148,7 +1148,7 @@ repository")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "12pmw3zz3i57ljnm0rxdyjqdyhisbvy18mjwkb3bzp5pgzs2f45c"))))
|
(base32 "0i4lxsgqri1y8sw4k44bkwbzmdmk4vpmdi882mw148j8gk4i7vvj"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases (modify-phases %standard-phases
|
`(#:phases (modify-phases %standard-phases
|
||||||
|
@ -1159,6 +1159,7 @@ repository")
|
||||||
(licenses (string-append out "/share/licenses")))
|
(licenses (string-append out "/share/licenses")))
|
||||||
(install-file "README.md" doc)
|
(install-file "README.md" doc)
|
||||||
(install-file "LICENSE" licenses)))))))
|
(install-file "LICENSE" licenses)))))))
|
||||||
|
(propagated-inputs (list python-dateutil))
|
||||||
(home-page "https://github.com/davisp/ghp-import")
|
(home-page "https://github.com/davisp/ghp-import")
|
||||||
(synopsis "Copy directory to the gh-pages branch")
|
(synopsis "Copy directory to the gh-pages branch")
|
||||||
(description "Script that copies a directory to the gh-pages branch (by
|
(description "Script that copies a directory to the gh-pages branch (by
|
||||||
|
@ -1169,10 +1170,6 @@ default) of the repository.")
|
||||||
"https://raw.githubusercontent.com/davisp/ghp-import/master/LICENSE"
|
"https://raw.githubusercontent.com/davisp/ghp-import/master/LICENSE"
|
||||||
"Tumbolia Public License"))))
|
"Tumbolia Public License"))))
|
||||||
|
|
||||||
(define-public python2-ghp-import
|
|
||||||
(package-with-python2
|
|
||||||
(strip-python2-variant python-ghp-import)))
|
|
||||||
|
|
||||||
(define-public python-gitdb
|
(define-public python-gitdb
|
||||||
(package
|
(package
|
||||||
(name "python-gitdb")
|
(name "python-gitdb")
|
||||||
|
|
Reference in New Issue