From 999377e7958cd412ffb007600ac42854249d87d3 Mon Sep 17 00:00:00 2001 From: John Kizer <112789658+johnandmegh@users.noreply.github.com> Date: Mon, 15 Jan 2024 08:54:40 -0500 Subject: [PATCH] package.yml.md: Reorder table to match example file Reorder the Mandatory keys table to be in the same order as the corresponding lines in the example file --- docs/packaging/package.yml.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/packaging/package.yml.md b/docs/packaging/package.yml.md index d9af8d1e8..1a4eb9d5b 100644 --- a/docs/packaging/package.yml.md +++ b/docs/packaging/package.yml.md @@ -54,11 +54,11 @@ Not all fields in `package.yml` are mandatory, but a small selection are. Below | **name** | `string` | The name of the package. This is also used as the base of all sub-package names. Unless unavoidable, this should match the upstream name. | | **version** | `string` | The version of the currently packaged software. This is taken from the tarball in most cases. | | **release** | `integer` | Specifies the current release number. Updates in the package number are based on this `release` number, _not_ the `version` number. As such, to release an update to users, this number must be incremented by one. | -| **license** | `string(s)` | Valid upstream license(s). Try to ensure these use [SPDX identifiers](https://spdx.org/licenses/). | -| **homepage** | `string` | Provides a link to the package's homepage, used in the Software Center. | | **source** | `dict(s)` | Upstream source URL (i.e. tarball), with the valid `sha256sum` as a value. Alternatively, the git repository URL prefixed with "git|" and a git tag or commit hash as a value. | -| **component** | `string` | Component / group of packages this package belongs to. Check available components via `eopkg lc`. | +| **homepage** | `string` | Provides a link to the package's homepage, used in the Software Center. | +| **license** | `string(s)` | Valid upstream license(s). Try to ensure these use [SPDX identifiers](https://spdx.org/licenses/). | | **summary** | `string` | Brief package summary, or display name. | +| **component** | `string` | Component / group of packages this package belongs to. Check available components via `eopkg lc`. | | **description** | `string` | More extensive description of the software, usually taken from the vendor website. | ### Optional, supported keys