gnu: pagekite: Update to 1.5.0.191126.
* gnu/packages/networking.scm (pagekite): Update to 1.5.0.191126. [source]: Fetch from GitHub. [arguments]: Build with Python 3. [inputs]: Add python-six.
This commit is contained in:
parent
d97cdff18e
commit
8c655deb7d
1 changed files with 10 additions and 11 deletions
|
@ -2745,21 +2745,19 @@ module @code{batman-adv}, for Layer 2.")
|
||||||
(define-public pagekite
|
(define-public pagekite
|
||||||
(package
|
(package
|
||||||
(name "pagekite")
|
(name "pagekite")
|
||||||
(version "1.0.0.190721")
|
(version "1.5.0.191126")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://pagekite.net/pk/src/pagekite-"
|
(uri (git-reference
|
||||||
version ".tar.gz"))
|
(url "https://github.com/pagekite/PyPagekite.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0y4vaqd3pjr6if8jcnhjwignkxgrajmnx1rd1p37anj8xjg7l8zh"))))
|
(base32 "0mncfjfrr13sm84g5z49qxg5cy791h5qxphjsl77x91zs3m36c8l"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; Python 3 support is a work-in-progress and should come soon:
|
`(#:phases
|
||||||
;; https://github.com/pagekite/PyPagekite/issues/40
|
|
||||||
;; https://github.com/pagekite/PyPagekite/pull/71
|
|
||||||
`(#:python ,python-2
|
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'install 'install-man-page
|
(add-after 'install 'install-man-page
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
|
@ -2771,7 +2769,8 @@ module @code{batman-adv}, for Layer 2.")
|
||||||
(install-file "doc/pagekite.1" (string-append man "/man1"))
|
(install-file "doc/pagekite.1" (string-append man "/man1"))
|
||||||
#t))))))
|
#t))))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("python2-socksipychain" ,python2-socksipychain)))
|
`(("python-six" ,python-six)
|
||||||
|
("python-socksipychain" ,python-socksipychain)))
|
||||||
(home-page "https://pagekite.net/")
|
(home-page "https://pagekite.net/")
|
||||||
(synopsis "Make localhost servers publicly visible")
|
(synopsis "Make localhost servers publicly visible")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue