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