All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Fixes for 3.4 changes
@ 2021-10-22  3:09 Paul Eggleton
  2021-10-22  3:09 ` [PATCH 1/2] poky.yaml: fix lz4 package name for older Ubuntu versions Paul Eggleton
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Paul Eggleton @ 2021-10-22  3:09 UTC (permalink / raw)
  To: docs

In wrapping up the release notes for 3.4 I found a few more things that
I missed earlier.

Note: these don't need to be rushed into the release, as long as we can
regenerate the online docs after merging that should be fine.


The following changes since commit 160d672641c52338ba499edfb66339a10b088490:

  ref-manual: document SOURCE_DATE_EPOCH (2021-10-20 18:44:19 +0200)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib paule/3.4-fixes
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=paule/3.4-fixes

Paul Eggleton (2):
  poky.yaml: fix lz4 package name for older Ubuntu versions
  migration-3.4: add some extra packaging notes

 documentation/migration-guides/migration-3.4.rst | 9 +++++++++
 documentation/poky.yaml                          | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

-- 
1.8.3.1



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

* [PATCH 1/2] poky.yaml: fix lz4 package name for older Ubuntu versions
  2021-10-22  3:09 [PATCH 0/2] Fixes for 3.4 changes Paul Eggleton
@ 2021-10-22  3:09 ` Paul Eggleton
  2021-10-22  3:09 ` [PATCH 2/2] migration-3.4: add some extra packaging notes Paul Eggleton
  2021-10-22  7:47 ` [docs] [PATCH 0/2] Fixes for 3.4 changes Michael Opdenacker
  2 siblings, 0 replies; 4+ messages in thread
From: Paul Eggleton @ 2021-10-22  3:09 UTC (permalink / raw)
  To: docs

From: Paul Eggleton <paul.eggleton@microsoft.com>

It turns out that for Ubunut, lz4 is the valid package name for newer
versions (e.g. 20.04 LTS) but not for older ones (e.g. 18.04 LTS, where
the correct package is liblz4-tool). In 20.04 the lz4 package includes
liblz4-tool in its "provides" so it's best to list that one for now.

Signed-off-by: Paul Eggleton <paul.eggleton@microsoft.com>
---
 documentation/poky.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/documentation/poky.yaml b/documentation/poky.yaml
index 50d1f9c..a3aa40c 100644
--- a/documentation/poky.yaml
+++ b/documentation/poky.yaml
@@ -14,7 +14,7 @@ YOCTO_RELEASE_DL_URL : "&YOCTO_DL_URL;/releases/yocto/yocto-&DISTRO;"
 UBUNTU_HOST_PACKAGES_ESSENTIAL : "gawk wget git diffstat unzip texinfo gcc \
      build-essential chrpath socat cpio python3 python3-pip python3-pexpect \
      xz-utils debianutils iputils-ping python3-git python3-jinja2 libegl1-mesa libsdl1.2-dev \
-     pylint3 xterm python3-subunit mesa-common-dev zstd lz4"
+     pylint3 xterm python3-subunit mesa-common-dev zstd liblz4-tool"
 FEDORA_HOST_PACKAGES_ESSENTIAL : "gawk make wget tar bzip2 gzip python3 unzip perl patch \
      diffutils diffstat git cpp gcc gcc-c++ glibc-devel texinfo chrpath \
      ccache perl-Data-Dumper perl-Text-ParseWords perl-Thread-Queue perl-bignum socat \
-- 
1.8.3.1



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

* [PATCH 2/2] migration-3.4: add some extra packaging notes
  2021-10-22  3:09 [PATCH 0/2] Fixes for 3.4 changes Paul Eggleton
  2021-10-22  3:09 ` [PATCH 1/2] poky.yaml: fix lz4 package name for older Ubuntu versions Paul Eggleton
@ 2021-10-22  3:09 ` Paul Eggleton
  2021-10-22  7:47 ` [docs] [PATCH 0/2] Fixes for 3.4 changes Michael Opdenacker
  2 siblings, 0 replies; 4+ messages in thread
From: Paul Eggleton @ 2021-10-22  3:09 UTC (permalink / raw)
  To: docs

From: Paul Eggleton <paul.eggleton@microsoft.com>

Add some notes on minor packaging changes that I missed earlier.

Signed-off-by: Paul Eggleton <paul.eggleton@microsoft.com>
---
 documentation/migration-guides/migration-3.4.rst | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/documentation/migration-guides/migration-3.4.rst b/documentation/migration-guides/migration-3.4.rst
index 797bfde..e785277 100644
--- a/documentation/migration-guides/migration-3.4.rst
+++ b/documentation/migration-guides/migration-3.4.rst
@@ -202,6 +202,15 @@ Package/recipe splitting
   in its own ``xwayland`` recipe. If you need Xwayland in your image
   then you may now need to add it explicitly.
 
+- The ``rpm`` package no longer has ``rpm-build`` in its :term:`RRECOMMENDS`;
+  if by chance  you still need rpm package building functionality in
+  your image and you have not already done so then you should add
+  ``rpm-build`` to your image explicitly.
+
+- The Python ``statistics`` standard module is now packaged in its own
+  ``python3-statistics`` package instead of ``python3-misc`` as
+  previously.
+
 
 Image / SDK generation changes
 ------------------------------
-- 
1.8.3.1



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

* Re: [docs] [PATCH 0/2] Fixes for 3.4 changes
  2021-10-22  3:09 [PATCH 0/2] Fixes for 3.4 changes Paul Eggleton
  2021-10-22  3:09 ` [PATCH 1/2] poky.yaml: fix lz4 package name for older Ubuntu versions Paul Eggleton
  2021-10-22  3:09 ` [PATCH 2/2] migration-3.4: add some extra packaging notes Paul Eggleton
@ 2021-10-22  7:47 ` Michael Opdenacker
  2 siblings, 0 replies; 4+ messages in thread
From: Michael Opdenacker @ 2021-10-22  7:47 UTC (permalink / raw)
  To: Paul Eggleton, docs


On 10/22/21 5:09 AM, Paul Eggleton wrote:
> In wrapping up the release notes for 3.4 I found a few more things that
> I missed earlier.
>
> Note: these don't need to be rushed into the release, as long as we can
> regenerate the online docs after merging that should be fine.
>
>
> The following changes since commit 160d672641c52338ba499edfb66339a10b088490:
>
>   ref-manual: document SOURCE_DATE_EPOCH (2021-10-20 18:44:19 +0200)
>
> are available in the git repository at:
>
>   git://git.yoctoproject.org/poky-contrib paule/3.4-fixes
>   http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=paule/3.4-fixes
>
> Paul Eggleton (2):
>   poky.yaml: fix lz4 package name for older Ubuntu versions
>   migration-3.4: add some extra packaging notes
>
>  documentation/migration-guides/migration-3.4.rst | 9 +++++++++
>  documentation/poky.yaml                          | 2 +-
>  2 files changed, 10 insertions(+), 1 deletion(-)


Both "Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>"

Merged into "master-next" and "honister-next".

Thanks Paul!

Michael.
-- 

Michael Opdenacker, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com



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

end of thread, other threads:[~2021-10-22  7:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-22  3:09 [PATCH 0/2] Fixes for 3.4 changes Paul Eggleton
2021-10-22  3:09 ` [PATCH 1/2] poky.yaml: fix lz4 package name for older Ubuntu versions Paul Eggleton
2021-10-22  3:09 ` [PATCH 2/2] migration-3.4: add some extra packaging notes Paul Eggleton
2021-10-22  7:47 ` [docs] [PATCH 0/2] Fixes for 3.4 changes Michael Opdenacker

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.