gnu: stagit: Update to 0.9.6.

* gnu/packages/version-control.scm (stagit): Update to 0.9.6.
[source]: Update fetch method and location of source repository.
[home-page]: Update home page.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
jgart 2021-11-07 23:38:14 -05:00 committed by Efraim Flashner
parent e53e0d08f7
commit e6a9e7d3c3
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -2643,14 +2643,16 @@ (define-public fossil
(define-public stagit
(package
(name "stagit")
(version "0.7.2")
(version "0.9.6")
(source (origin
(method url-fetch)
(uri (string-append "https://dl.2f30.org/releases/"
name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "git://git.codemadness.org/stagit")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1m3s9g1z9szbjrhm8sic91xh6f2bfpi56rskdkqd5wc4wdycpyi5"))))
"0hcf1rmsp9s6jjg1dypq7sa3dqmqg2q3x1kj23rb5gwrsb31vyfj"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f ; No tests
@ -2661,7 +2663,7 @@ (define-public stagit
(delete 'configure)))) ; No configure script
(inputs
`(("libgit2" ,libgit2)))
(home-page "https://2f30.org/")
(home-page "https://git.codemadness.org/stagit/")
(synopsis "Static git page generator")
(description "Stagit creates static pages for git repositories, the results can
be served with a HTTP file server of your choice.")