All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] dev-manual: update AUTOREV explanation to match current file
@ 2026-06-12  8:09 Robert P. J. Day
  2026-06-16 13:37 ` [docs] " Antonin Godard
  0 siblings, 1 reply; 2+ messages in thread
From: Robert P. J. Day @ 2026-06-12  8:09 UTC (permalink / raw)
  To: YP docs mailing list


The code snippet for listing AUTOREV-enabled recipes needs updating
since it now inherits the "poky-bleeding" class file.

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>

---

diff --git a/documentation/dev-manual/external-scm.rst b/documentation/dev-manual/external-scm.rst
index 3ca9079b3..7971d65f5 100644
--- a/documentation/dev-manual/external-scm.rst
+++ b/documentation/dev-manual/external-scm.rst
@@ -38,26 +38,27 @@ configuration file contains the line::

    require conf/distro/include/poky-floating-revisions.inc

-This line pulls in the
-listed include file that contains numerous lines of exactly that form::
-
-   #SRCREV:pn-opkg-native ?= "${AUTOREV}"
-   #SRCREV:pn-opkg-sdk ?= "${AUTOREV}"
-   #SRCREV:pn-opkg ?= "${AUTOREV}"
-   #SRCREV:pn-opkg-utils-native ?= "${AUTOREV}"
-   #SRCREV:pn-opkg-utils ?= "${AUTOREV}"
-   SRCREV:pn-gconf-dbus ?= "${AUTOREV}"
-   SRCREV:pn-matchbox-common ?= "${AUTOREV}"
-   SRCREV:pn-matchbox-config-gtk ?= "${AUTOREV}"
-   SRCREV:pn-matchbox-desktop ?= "${AUTOREV}"
-   SRCREV:pn-matchbox-keyboard ?= "${AUTOREV}"
-   SRCREV:pn-matchbox-panel-2 ?= "${AUTOREV}"
-   SRCREV:pn-matchbox-themes-extra ?= "${AUTOREV}"
-   SRCREV:pn-matchbox-terminal ?= "${AUTOREV}"
-   SRCREV:pn-matchbox-wm ?= "${AUTOREV}"
-   SRCREV:pn-settings-daemon ?= "${AUTOREV}"
-   SRCREV:pn-screenshot ?= "${AUTOREV}"
-   . . .
+This line pulls in the listed include file that defines the set of
+AUTOREV-enabled recipes::
+
+   INHERIT += "poky-bleeding"
+
+   POKY_AUTOREV_RECIPES = "\
+       libmatchbox \
+       opkg-utils \
+       matchbox-config-gtk \
+       matchbox-desktop \
+       matchbox-keyboard \
+       matchbox-panel-2 \
+       matchbox-terminal \
+       matchbox-theme-sato \
+       matchbox-wm \
+       pseudo \
+       puzzles \
+       sato-icon-theme \
+       sato-screenshot \
+       settings-daemon \
+   "

 These lines allow you to
 experiment with building a distribution that tracks the latest


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [docs] [PATCH] dev-manual: update AUTOREV explanation to match current file
  2026-06-12  8:09 [PATCH] dev-manual: update AUTOREV explanation to match current file Robert P. J. Day
@ 2026-06-16 13:37 ` Antonin Godard
  0 siblings, 0 replies; 2+ messages in thread
From: Antonin Godard @ 2026-06-16 13:37 UTC (permalink / raw)
  To: Robert P. J. Day, YP docs mailing list

Hi,

On Fri Jun 12, 2026 at 10:09 AM CEST, Robert P. J. Day wrote:
>
> The code snippet for listing AUTOREV-enabled recipes needs updating
> since it now inherits the "poky-bleeding" class file.
>
> Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
>
> ---
>
> diff --git a/documentation/dev-manual/external-scm.rst b/documentation/dev-manual/external-scm.rst
> index 3ca9079b3..7971d65f5 100644
> --- a/documentation/dev-manual/external-scm.rst
> +++ b/documentation/dev-manual/external-scm.rst
> @@ -38,26 +38,27 @@ configuration file contains the line::
>
>     require conf/distro/include/poky-floating-revisions.inc
>
> -This line pulls in the
> -listed include file that contains numerous lines of exactly that form::
> -
> -   #SRCREV:pn-opkg-native ?= "${AUTOREV}"
> -   #SRCREV:pn-opkg-sdk ?= "${AUTOREV}"
> -   #SRCREV:pn-opkg ?= "${AUTOREV}"
> -   #SRCREV:pn-opkg-utils-native ?= "${AUTOREV}"
> -   #SRCREV:pn-opkg-utils ?= "${AUTOREV}"
> -   SRCREV:pn-gconf-dbus ?= "${AUTOREV}"
> -   SRCREV:pn-matchbox-common ?= "${AUTOREV}"
> -   SRCREV:pn-matchbox-config-gtk ?= "${AUTOREV}"
> -   SRCREV:pn-matchbox-desktop ?= "${AUTOREV}"
> -   SRCREV:pn-matchbox-keyboard ?= "${AUTOREV}"
> -   SRCREV:pn-matchbox-panel-2 ?= "${AUTOREV}"
> -   SRCREV:pn-matchbox-themes-extra ?= "${AUTOREV}"
> -   SRCREV:pn-matchbox-terminal ?= "${AUTOREV}"
> -   SRCREV:pn-matchbox-wm ?= "${AUTOREV}"
> -   SRCREV:pn-settings-daemon ?= "${AUTOREV}"
> -   SRCREV:pn-screenshot ?= "${AUTOREV}"
> -   . . .
> +This line pulls in the listed include file that defines the set of
> +AUTOREV-enabled recipes::
> +
> +   INHERIT += "poky-bleeding"
> +
> +   POKY_AUTOREV_RECIPES = "\
> +       libmatchbox \
> +       opkg-utils \
> +       matchbox-config-gtk \
> +       matchbox-desktop \
> +       matchbox-keyboard \
> +       matchbox-panel-2 \
> +       matchbox-terminal \
> +       matchbox-theme-sato \
> +       matchbox-wm \
> +       pseudo \
> +       puzzles \
> +       sato-icon-theme \
> +       sato-screenshot \
> +       settings-daemon \
> +   "
>
>  These lines allow you to

s/These lines allow/This allows/

>  experiment with building a distribution that tracks the latest

Antonin


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-06-16 13:37 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-12  8:09 [PATCH] dev-manual: update AUTOREV explanation to match current file Robert P. J. Day
2026-06-16 13:37 ` [docs] " Antonin Godard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.