All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-ti][master][PATCH v2 0/3] Plan to better support non-LTS branches
@ 2024-04-17 18:40 Ryan Eatmon
  2024-04-17 18:40 ` [meta-ti][master][PATCH v2 1/3] python3-yamllint: Temporarily carry this new recipe Ryan Eatmon
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Ryan Eatmon @ 2024-04-17 18:40 UTC (permalink / raw)
  To: Praneeth Bajjuri, Denys Dmytriyenko, meta-ti

Since we do not directly support the non-LTS branches, customers are
forced to rely on master for projects that make use of those branches.
We are not going to start creating branches for all of the non-LTS
releases, but we can do a better job of having master continue to
support the  branches that are still supported by the Yocto project [1].

Recently we added and removed a patch to support the uboot mainline that
required the python3-yamllint package.  We were not thinking about
customers trying to use the uboot mainline who might be currently locked
into nanbield and not master.

This series seeks to restore that reverted patch and create a system by
which we can schedule the removal of these temporary patches.
Additionaly it updates the compatible layer list to those with active
support by the Yocto project [1].

[1] https://wiki.yoctoproject.org/wiki/Releases

v2: Add missing nanbield in meta-ti-extras/conf/layer.conf

Ryan Eatmon (3):
  python3-yamllint: Temporarily carry this new recipe
  TODO: Add TODO list
  conf/layer.conf: Update LAYERSERIES_COMPAT

 TODO                                              |  9 +++++++++
 meta-ti-bsp/conf/layer.conf                       |  2 +-
 meta-ti-extras/conf/layer.conf                    |  2 +-
 .../python-yamllint/python3-yamllint_1.33.0.bb    | 15 +++++++++++++++
 4 files changed, 26 insertions(+), 2 deletions(-)
 create mode 100644 TODO
 create mode 100644 meta-ti-extras/recipes-devtools/python-yamllint/python3-yamllint_1.33.0.bb

-- 
2.17.1



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

* [meta-ti][master][PATCH v2 1/3] python3-yamllint: Temporarily carry this new recipe
  2024-04-17 18:40 [meta-ti][master][PATCH v2 0/3] Plan to better support non-LTS branches Ryan Eatmon
@ 2024-04-17 18:40 ` Ryan Eatmon
  2024-04-17 18:54   ` Denys Dmytriyenko
  2024-04-17 18:40 ` [meta-ti][master][PATCH v2 2/3] TODO: Add TODO list Ryan Eatmon
  2024-04-17 18:40 ` [meta-ti][master][PATCH v2 3/3] conf/layer.conf: Update LAYERSERIES_COMPAT Ryan Eatmon
  2 siblings, 1 reply; 7+ messages in thread
From: Ryan Eatmon @ 2024-04-17 18:40 UTC (permalink / raw)
  To: Praneeth Bajjuri, Denys Dmytriyenko, meta-ti

Add recipe for yamllint.  There is an upcoming change in u-boot where
the binman tool is now configured to call yamllint to verify the configs
during compile time.

There was a previous patch a year ago from Trevor Woerner that never
made it into oe-core.  This patch is a reworking of his patch but
pointing to a newer version.

We are waiting on this patch to be accepted in oe-core.  Once it is
available on master we will remove this recipe to avoid conflict.

Signed-off-by: Ryan Eatmon <reatmon@ti.com>
---
 .../python-yamllint/python3-yamllint_1.33.0.bb    | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 meta-ti-extras/recipes-devtools/python-yamllint/python3-yamllint_1.33.0.bb

diff --git a/meta-ti-extras/recipes-devtools/python-yamllint/python3-yamllint_1.33.0.bb b/meta-ti-extras/recipes-devtools/python-yamllint/python3-yamllint_1.33.0.bb
new file mode 100644
index 00000000..4b7bd065
--- /dev/null
+++ b/meta-ti-extras/recipes-devtools/python-yamllint/python3-yamllint_1.33.0.bb
@@ -0,0 +1,15 @@
+SUMMARY = "A linter for YAML files."
+HOMEPAGE = "https://github.com/adrienverge/yamllint"
+LICENSE = "GPL-3.0-only"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=1ebbd3e34237af26da5dc08a4e440464"
+
+inherit pypi setuptools3
+
+PYPI_PACKAGE = "yamllint"
+
+SRC_URI[sha256sum] = "2dceab9ef2d99518a2fcf4ffc964d44250ac4459be1ba3ca315118e4a1a81f7d"
+
+DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
+RDEPENDS:${PN} += "${PYTHON_PN}-pyyaml"
+
+BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1



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

* [meta-ti][master][PATCH v2 2/3] TODO: Add TODO list
  2024-04-17 18:40 [meta-ti][master][PATCH v2 0/3] Plan to better support non-LTS branches Ryan Eatmon
  2024-04-17 18:40 ` [meta-ti][master][PATCH v2 1/3] python3-yamllint: Temporarily carry this new recipe Ryan Eatmon
@ 2024-04-17 18:40 ` Ryan Eatmon
  2024-04-17 18:54   ` Denys Dmytriyenko
  2024-04-17 18:40 ` [meta-ti][master][PATCH v2 3/3] conf/layer.conf: Update LAYERSERIES_COMPAT Ryan Eatmon
  2 siblings, 1 reply; 7+ messages in thread
From: Ryan Eatmon @ 2024-04-17 18:40 UTC (permalink / raw)
  To: Praneeth Bajjuri, Denys Dmytriyenko, meta-ti

In an attempt to try and better support non-LTS branches, we need to do
a better job at not removing temporary patches too soon from master.
This TODO file should allow us to better schedule the time when the
patches can be safely removed.

Signed-off-by: Ryan Eatmon <reatmon@ti.com>
---
 TODO | 9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 TODO

diff --git a/TODO b/TODO
new file mode 100644
index 00000000..e1aeba53
--- /dev/null
+++ b/TODO
@@ -0,0 +1,9 @@
+
+This TODO list allows us to track certain actions and lists of patches that
+need to be removed at a future date.
+
+
+May 2024 - nanbield EOL
+-----------------------
+  - Remove python3-yamllint: Temporarily carry this new recipe
+
-- 
2.17.1



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

* [meta-ti][master][PATCH v2 3/3] conf/layer.conf: Update LAYERSERIES_COMPAT
  2024-04-17 18:40 [meta-ti][master][PATCH v2 0/3] Plan to better support non-LTS branches Ryan Eatmon
  2024-04-17 18:40 ` [meta-ti][master][PATCH v2 1/3] python3-yamllint: Temporarily carry this new recipe Ryan Eatmon
  2024-04-17 18:40 ` [meta-ti][master][PATCH v2 2/3] TODO: Add TODO list Ryan Eatmon
@ 2024-04-17 18:40 ` Ryan Eatmon
  2024-04-17 18:55   ` Denys Dmytriyenko
  2 siblings, 1 reply; 7+ messages in thread
From: Ryan Eatmon @ 2024-04-17 18:40 UTC (permalink / raw)
  To: Praneeth Bajjuri, Denys Dmytriyenko, meta-ti

Update LAYERSERIES_COMPAT to remove EOL branches and add future styhead.

Signed-off-by: Ryan Eatmon <reatmon@ti.com>
---
v2: Add missing nanbield in meta-ti-extras/conf/layer.conf

 meta-ti-bsp/conf/layer.conf    | 2 +-
 meta-ti-extras/conf/layer.conf | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-ti-bsp/conf/layer.conf b/meta-ti-bsp/conf/layer.conf
index 502e355f..03cbd7ea 100644
--- a/meta-ti-bsp/conf/layer.conf
+++ b/meta-ti-bsp/conf/layer.conf
@@ -9,7 +9,7 @@ BBFILE_COLLECTIONS += "meta-ti-bsp"
 BBFILE_PATTERN_meta-ti-bsp := "^${LAYERDIR}/"
 BBFILE_PRIORITY_meta-ti-bsp = "6"
 
-LAYERSERIES_COMPAT_meta-ti-bsp = "kirkstone langdale mickledore nanbield scarthgap"
+LAYERSERIES_COMPAT_meta-ti-bsp = "nanbield scarthgap styhead"
 
 LICENSE_PATH += "${LAYERDIR}/licenses"
 
diff --git a/meta-ti-extras/conf/layer.conf b/meta-ti-extras/conf/layer.conf
index a05dbe5f..f2d6b250 100644
--- a/meta-ti-extras/conf/layer.conf
+++ b/meta-ti-extras/conf/layer.conf
@@ -9,7 +9,7 @@ BBFILE_COLLECTIONS += "meta-ti-extras"
 BBFILE_PATTERN_meta-ti-extras := "^${LAYERDIR}/"
 BBFILE_PRIORITY_meta-ti-extras = "6"
 
-LAYERSERIES_COMPAT_meta-ti-extras = "kirkstone langdale mickledore nanbield scarthgap"
+LAYERSERIES_COMPAT_meta-ti-extras = "nanbield scarthgap styhead"
 
 LICENSE_PATH += "${LAYERDIR}/licenses"
 
-- 
2.17.1



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

* Re: [meta-ti][master][PATCH v2 1/3] python3-yamllint: Temporarily carry this new recipe
  2024-04-17 18:40 ` [meta-ti][master][PATCH v2 1/3] python3-yamllint: Temporarily carry this new recipe Ryan Eatmon
@ 2024-04-17 18:54   ` Denys Dmytriyenko
  0 siblings, 0 replies; 7+ messages in thread
From: Denys Dmytriyenko @ 2024-04-17 18:54 UTC (permalink / raw)
  To: reatmon; +Cc: Praneeth Bajjuri, meta-ti

On Wed, Apr 17, 2024 at 01:40:29PM -0500, Ryan Eatmon via lists.yoctoproject.org wrote:
> Add recipe for yamllint.  There is an upcoming change in u-boot where
> the binman tool is now configured to call yamllint to verify the configs
> during compile time.
> 
> There was a previous patch a year ago from Trevor Woerner that never
> made it into oe-core.  This patch is a reworking of his patch but
> pointing to a newer version.
> 
> We are waiting on this patch to be accepted in oe-core.  Once it is
> available on master we will remove this recipe to avoid conflict.
> 
> Signed-off-by: Ryan Eatmon <reatmon@ti.com>

Acked-by: Denys Dmytriyenko <denys@konsulko.com>


> ---
>  .../python-yamllint/python3-yamllint_1.33.0.bb    | 15 +++++++++++++++
>  1 file changed, 15 insertions(+)
>  create mode 100644 meta-ti-extras/recipes-devtools/python-yamllint/python3-yamllint_1.33.0.bb
> 
> diff --git a/meta-ti-extras/recipes-devtools/python-yamllint/python3-yamllint_1.33.0.bb b/meta-ti-extras/recipes-devtools/python-yamllint/python3-yamllint_1.33.0.bb
> new file mode 100644
> index 00000000..4b7bd065
> --- /dev/null
> +++ b/meta-ti-extras/recipes-devtools/python-yamllint/python3-yamllint_1.33.0.bb
> @@ -0,0 +1,15 @@
> +SUMMARY = "A linter for YAML files."
> +HOMEPAGE = "https://github.com/adrienverge/yamllint"
> +LICENSE = "GPL-3.0-only"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=1ebbd3e34237af26da5dc08a4e440464"
> +
> +inherit pypi setuptools3
> +
> +PYPI_PACKAGE = "yamllint"
> +
> +SRC_URI[sha256sum] = "2dceab9ef2d99518a2fcf4ffc964d44250ac4459be1ba3ca315118e4a1a81f7d"
> +
> +DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
> +RDEPENDS:${PN} += "${PYTHON_PN}-pyyaml"
> +
> +BBCLASSEXTEND = "native nativesdk"
> -- 
> 2.17.1


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

* Re: [meta-ti][master][PATCH v2 2/3] TODO: Add TODO list
  2024-04-17 18:40 ` [meta-ti][master][PATCH v2 2/3] TODO: Add TODO list Ryan Eatmon
@ 2024-04-17 18:54   ` Denys Dmytriyenko
  0 siblings, 0 replies; 7+ messages in thread
From: Denys Dmytriyenko @ 2024-04-17 18:54 UTC (permalink / raw)
  To: reatmon; +Cc: Praneeth Bajjuri, meta-ti

On Wed, Apr 17, 2024 at 01:40:30PM -0500, Ryan Eatmon via lists.yoctoproject.org wrote:
> In an attempt to try and better support non-LTS branches, we need to do
> a better job at not removing temporary patches too soon from master.
> This TODO file should allow us to better schedule the time when the
> patches can be safely removed.
> 
> Signed-off-by: Ryan Eatmon <reatmon@ti.com>

Acked-by: Denys Dmytriyenko <denys@konsulko.com>


> ---
>  TODO | 9 +++++++++
>  1 file changed, 9 insertions(+)
>  create mode 100644 TODO
> 
> diff --git a/TODO b/TODO
> new file mode 100644
> index 00000000..e1aeba53
> --- /dev/null
> +++ b/TODO
> @@ -0,0 +1,9 @@
> +
> +This TODO list allows us to track certain actions and lists of patches that
> +need to be removed at a future date.
> +
> +
> +May 2024 - nanbield EOL
> +-----------------------
> +  - Remove python3-yamllint: Temporarily carry this new recipe
> +
> -- 
> 2.17.1


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

* Re: [meta-ti][master][PATCH v2 3/3] conf/layer.conf: Update LAYERSERIES_COMPAT
  2024-04-17 18:40 ` [meta-ti][master][PATCH v2 3/3] conf/layer.conf: Update LAYERSERIES_COMPAT Ryan Eatmon
@ 2024-04-17 18:55   ` Denys Dmytriyenko
  0 siblings, 0 replies; 7+ messages in thread
From: Denys Dmytriyenko @ 2024-04-17 18:55 UTC (permalink / raw)
  To: reatmon; +Cc: Praneeth Bajjuri, meta-ti

On Wed, Apr 17, 2024 at 01:40:31PM -0500, Ryan Eatmon via lists.yoctoproject.org wrote:
> Update LAYERSERIES_COMPAT to remove EOL branches and add future styhead.
> 
> Signed-off-by: Ryan Eatmon <reatmon@ti.com>

Acked-by: Denys Dmytriyenko <denys@konsulko.com>


> ---
> v2: Add missing nanbield in meta-ti-extras/conf/layer.conf
> 
>  meta-ti-bsp/conf/layer.conf    | 2 +-
>  meta-ti-extras/conf/layer.conf | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/meta-ti-bsp/conf/layer.conf b/meta-ti-bsp/conf/layer.conf
> index 502e355f..03cbd7ea 100644
> --- a/meta-ti-bsp/conf/layer.conf
> +++ b/meta-ti-bsp/conf/layer.conf
> @@ -9,7 +9,7 @@ BBFILE_COLLECTIONS += "meta-ti-bsp"
>  BBFILE_PATTERN_meta-ti-bsp := "^${LAYERDIR}/"
>  BBFILE_PRIORITY_meta-ti-bsp = "6"
>  
> -LAYERSERIES_COMPAT_meta-ti-bsp = "kirkstone langdale mickledore nanbield scarthgap"
> +LAYERSERIES_COMPAT_meta-ti-bsp = "nanbield scarthgap styhead"
>  
>  LICENSE_PATH += "${LAYERDIR}/licenses"
>  
> diff --git a/meta-ti-extras/conf/layer.conf b/meta-ti-extras/conf/layer.conf
> index a05dbe5f..f2d6b250 100644
> --- a/meta-ti-extras/conf/layer.conf
> +++ b/meta-ti-extras/conf/layer.conf
> @@ -9,7 +9,7 @@ BBFILE_COLLECTIONS += "meta-ti-extras"
>  BBFILE_PATTERN_meta-ti-extras := "^${LAYERDIR}/"
>  BBFILE_PRIORITY_meta-ti-extras = "6"
>  
> -LAYERSERIES_COMPAT_meta-ti-extras = "kirkstone langdale mickledore nanbield scarthgap"
> +LAYERSERIES_COMPAT_meta-ti-extras = "nanbield scarthgap styhead"
>  
>  LICENSE_PATH += "${LAYERDIR}/licenses"
>  
> -- 
> 2.17.1


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

end of thread, other threads:[~2024-04-17 18:55 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-17 18:40 [meta-ti][master][PATCH v2 0/3] Plan to better support non-LTS branches Ryan Eatmon
2024-04-17 18:40 ` [meta-ti][master][PATCH v2 1/3] python3-yamllint: Temporarily carry this new recipe Ryan Eatmon
2024-04-17 18:54   ` Denys Dmytriyenko
2024-04-17 18:40 ` [meta-ti][master][PATCH v2 2/3] TODO: Add TODO list Ryan Eatmon
2024-04-17 18:54   ` Denys Dmytriyenko
2024-04-17 18:40 ` [meta-ti][master][PATCH v2 3/3] conf/layer.conf: Update LAYERSERIES_COMPAT Ryan Eatmon
2024-04-17 18:55   ` Denys Dmytriyenko

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.