gnu: kurly: Update to 1.2.2.
Update both the project home page & the package version in a single commit because of Go. From the previous home page[0]: “2018-06-12 - THE KURLY PROJECT HAS MOVED HOME! kurly can now be found at GitLab [...]” [0]: https://github.com/davidjpeacock/kurly * gnu/packages/curl.scm (kurly): Update to 1.2.2. [source, home-page]: Update URIs. [arguments]: Likewise. Adjust location of ‘kurly.man’. [inputs]: Add go-github-com-urfave-cli.
This commit is contained in:
parent
665fcd32af
commit
ea6937ad8a
|
@ -157,19 +157,19 @@ tunneling, and so on.")
|
||||||
(define-public kurly
|
(define-public kurly
|
||||||
(package
|
(package
|
||||||
(name "kurly")
|
(name "kurly")
|
||||||
(version "1.2.1")
|
(version "1.2.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/davidjpeacock/kurly.git")
|
(url "https://gitlab.com/davidjpeacock/kurly.git")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"01kp33gvzxmk6ipz7323wqwmbc90q2mwzsjig8rzpqsm4kji5hi6"))))
|
"003jv2k45hg2svhjpy5253ccd250vi2r17x2zhm51iw54kgwxipm"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:import-path "github.com/davidjpeacock/kurly"
|
`(#:import-path "gitlab.com/davidjpeacock/kurly"
|
||||||
#:install-source? #f
|
#:install-source? #f
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
@ -182,20 +182,21 @@ tunneling, and so on.")
|
||||||
(with-directory-excursion source
|
(with-directory-excursion source
|
||||||
(install-file "README.md" doc)
|
(install-file "README.md" doc)
|
||||||
(mkdir-p man)
|
(mkdir-p man)
|
||||||
(copy-file "meta/kurly.man"
|
(copy-file "doc/kurly.man"
|
||||||
(string-append man "/kurly.1")))
|
(string-append man "/kurly.1")))
|
||||||
#t))))))
|
#t))))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("go-github-com-alsm-ioprogress" ,go-github-com-alsm-ioprogress)
|
`(("go-github-com-alsm-ioprogress" ,go-github-com-alsm-ioprogress)
|
||||||
("go-github-com-aki237-nscjar" ,go-github-com-aki237-nscjar)
|
("go-github-com-aki237-nscjar" ,go-github-com-aki237-nscjar)
|
||||||
("go-github-com-davidjpeacock-cli" ,go-github-com-davidjpeacock-cli)))
|
("go-github-com-davidjpeacock-cli" ,go-github-com-davidjpeacock-cli)
|
||||||
|
("go-github-com-urfave-cli" ,go-github-com-urfave-cli)))
|
||||||
(synopsis "Command-line HTTP client")
|
(synopsis "Command-line HTTP client")
|
||||||
(description "kurly is an alternative to the @code{curl} program written in
|
(description "kurly is an alternative to the @code{curl} program written in
|
||||||
Go. kurly is designed to operate in a similar manner to curl, with select
|
Go. kurly is designed to operate in a similar manner to curl, with select
|
||||||
features. Notably, kurly is not aiming for feature parity, but common flags and
|
features. Notably, kurly is not aiming for feature parity, but common flags and
|
||||||
mechanisms particularly within the HTTP(S) realm are to be expected. kurly does
|
mechanisms particularly within the HTTP(S) realm are to be expected. kurly does
|
||||||
not offer a replacement for libcurl.")
|
not offer a replacement for libcurl.")
|
||||||
(home-page "https://github.com/davidjpeacock/kurly")
|
(home-page "https://gitlab.com/davidjpeacock/kurly")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public guile-curl
|
(define-public guile-curl
|
||||||
|
|
Loading…
Reference in New Issue