diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-11-04 13:41:34 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-11-04 13:48:35 +0100 |
commit | d45122f5379cef253ec298bd594395416cd91ea7 (patch) | |
tree | 0f10460497f810206d378778ea380407e7577dff /guix/packages.scm | |
parent | 6709752fe7743109175c8bcd5bd77d80ffbf7d61 (diff) |
packages: `description' → `synopsis', `long-description' → `description'.
* guix/packages.scm (<package>): Rename `description' to `synopsis', and
`long-description' to `description'.
* tests/packages.scm, distro/packages/base.scm,
distro/packages/databases.scm, distro/packages/guile.scm,
distro/packages/typesetting.scm: Update accordingly.
* po/Makevars (XGETTEXT_OPTIONS): Update `--keyword' flags accordingly.
Diffstat (limited to 'guix/packages.scm')
-rw-r--r-- | guix/packages.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guix/packages.scm b/guix/packages.scm index 25acab1864..9d1dbe7dc4 100644 --- a/guix/packages.scm +++ b/guix/packages.scm @@ -46,8 +46,8 @@ package-propagated-inputs package-outputs package-search-paths + package-synopsis package-description - package-long-description package-license package-platforms package-maintainers @@ -124,8 +124,8 @@ representation." ; `set-path-environment-variable' ; (aka. "setup-hook") - (description package-description) ; one-line description - (long-description package-long-description) ; one or two paragraphs + (synopsis package-synopsis) ; one-line description + (description package-description) ; one or two paragraphs (license package-license (default '())) (home-page package-home-page) (platforms package-platforms (default '())) |