1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

guix: import: cpan: Fill in description field in template.

* guix/import/cpan.scm (cpan-module->sexp): Fill in description field in
template.
* tests/import/cpan.scm (test-source): Update test to account for change in
description text.

Change-Id: I3bc3e4c2cc90f7a1f1f0d56e9213b6a1d0b8e841
Signed-off-by: jgart <jgart@dismail.de>
This commit is contained in:
jgart
2026-02-20 23:20:57 -05:00
parent 01ff86a9bb
commit f2ead3989e
2 changed files with 4 additions and 3 deletions

View File

@@ -287,6 +287,7 @@ in RELEASE, a <cpan-release> record."
(let* ((tarball (with-store store
(download-to-store store source-url)))
(inputs (cpan-module-inputs release))
(synopsis-text (cpan-release-abstract release))
(sexp
`(package
(name ,(cpan-name->downstream-name name))
@@ -305,8 +306,8 @@ in RELEASE, a <cpan-release> record."
(filter (upstream-input-type-predicate 'propagated)
inputs))
(home-page ,(cpan-home name))
(synopsis ,(cpan-release-abstract release))
(description fill-in-yourself!)
(synopsis ,synopsis-text)
(description ,(string-append synopsis-text "."))
(license ,(string->license (cpan-release-license release))))))
(values sexp (map upstream-input-name inputs))))

View File

@@ -86,7 +86,7 @@
(propagated-inputs (list perl-test-script))
(home-page "https://metacpan.org/release/Foo-Bar")
(synopsis "Fizzle Fuzz")
(description fill-in-yourself!)
(description "Fizzle Fuzz.")
(license perl-license))
(string=? (bytevector->nix-base32-string
(call-with-input-string test-source port-sha256))