mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
import: utils: End package descriptions with period.
* guix/import/utils.scm (beautify-description): Append period to last words which do not end with one. * tests/crate.scm: Append period to descriptions. * tests/elm.scm: Append period to descriptions. * tests/gem.scm: Append period to descriptions. * tests/hexpm.scm: Append period to descriptions. * tests/minetest.scm: Append period to descriptions. * tests/pypi.scm: Append period to descriptions. * tests/import-utils.scm ("beautify-description: transform fragment into sentence"): Likewise. Change-Id: I0b12c4d94cb26cf62fab5b7cbf7885e66ff6c10f Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
e62fd9004b
commit
510ad5d93c
8 changed files with 44 additions and 35 deletions
|
@ -315,7 +315,7 @@ files specified by SPECS. Return its file name."
|
|||
(native-inputs (list python-pytest))
|
||||
(home-page "http://example.com")
|
||||
(synopsis "summary")
|
||||
(description "summary")
|
||||
(description "summary.")
|
||||
(license license:lgpl2.0))
|
||||
(and (string=? default-sha256/base32 hash)
|
||||
(equal? (pypi->guix-package "foo" #:version "1.0.0")
|
||||
|
@ -356,7 +356,7 @@ to make sure we're testing wheels"))))
|
|||
(native-inputs (list python-pytest))
|
||||
(home-page "http://example.com")
|
||||
(synopsis "summary")
|
||||
(description "summary")
|
||||
(description "summary.")
|
||||
(license license:lgpl2.0))
|
||||
(string=? default-sha256/base32 hash))
|
||||
(x
|
||||
|
@ -384,7 +384,7 @@ to make sure we're testing wheels"))))
|
|||
(build-system pyproject-build-system)
|
||||
(home-page "http://example.com")
|
||||
(synopsis "summary")
|
||||
(description "summary")
|
||||
(description "summary.")
|
||||
(license license:lgpl2.0))
|
||||
(string=? default-sha256/base32 hash))
|
||||
(x
|
||||
|
@ -414,7 +414,7 @@ to make sure we're testing wheels"))))
|
|||
(native-inputs (list python-pytest))
|
||||
(home-page "http://example.com")
|
||||
(synopsis "summary")
|
||||
(description "summary")
|
||||
(description "summary.")
|
||||
(license license:lgpl2.0))
|
||||
(string=? default-sha256/base32 hash))
|
||||
(x
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue