import: cpan: Add trailing "/" on home-page.
This appeases 'guix lint', which otherwise complains about permanent redirects. * guix/import/cpan.scm (cpan-module->sexp): Add trailing "/" on home-page. * tests/cpan.scm ("cpan->guix-package"): Adjust accordingly.master
parent
23055424f2
commit
e4bc172730
|
@ -244,7 +244,7 @@ META."
|
||||||
(convert-inputs '("configure" "build" "test")))
|
(convert-inputs '("configure" "build" "test")))
|
||||||
,@(maybe-inputs 'propagated-inputs
|
,@(maybe-inputs 'propagated-inputs
|
||||||
(convert-inputs '("runtime")))
|
(convert-inputs '("runtime")))
|
||||||
(home-page ,(string-append "http://search.cpan.org/dist/" name))
|
(home-page ,(string-append "http://search.cpan.org/dist/" name "/"))
|
||||||
(synopsis ,(assoc-ref meta "abstract"))
|
(synopsis ,(assoc-ref meta "abstract"))
|
||||||
(description fill-in-yourself!)
|
(description fill-in-yourself!)
|
||||||
(license ,(string->license (assoc-ref meta "license"))))))
|
(license ,(string->license (assoc-ref meta "license"))))))
|
||||||
|
|
|
@ -97,7 +97,7 @@
|
||||||
('propagated-inputs
|
('propagated-inputs
|
||||||
('quasiquote
|
('quasiquote
|
||||||
(("perl-test-script" ('unquote 'perl-test-script)))))
|
(("perl-test-script" ('unquote 'perl-test-script)))))
|
||||||
('home-page "http://search.cpan.org/dist/Foo-Bar")
|
('home-page "http://search.cpan.org/dist/Foo-Bar/")
|
||||||
('synopsis "Fizzle Fuzz")
|
('synopsis "Fizzle Fuzz")
|
||||||
('description 'fill-in-yourself!)
|
('description 'fill-in-yourself!)
|
||||||
('license 'perl-license))
|
('license 'perl-license))
|
||||||
|
|
Reference in New Issue