[lfs] branch trunk updated: Package updates:

"Git Owner" ([email protected] via lfs-book Mailing List) <[email protected]>
Newsgroups gmane.linux.lfs.book
Message-ID <177881645865.23775.6741683342386108359@rivendell.linuxfromscratch.org>
This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch trunk
in repository lfs.

The following commit(s) were added to refs/heads/trunk by this push:
     new 72c7d33e5 Package updates:
72c7d33e5 is described below

commit 72c7d33e5074a377abe72837df40ec5a64d4f27b
Author: Douglas R. Reno <[email protected]>
AuthorDate: Thu May 14 22:39:20 2026 -0500

    Package updates:
    
    - Update to linux-7.0.7 (Security Update)
    - Update to tcl-8.6.18
    - Update to expat-2.8.1 (Security Update)
    - Update to vim-9.2.0481 (Security Update)
    - Fix CVE-2026-7210 and CVE-2026-8328 in Python
    - Update chapter01/whatsnew.xml with a current list of added patches
---
 chapter01/changelog.xml | 27 +++++++++++++++++++++++++++
 chapter01/whatsnew.xml  | 11 +++++++----
 chapter03/patches.xml   | 10 +++++++++-
 chapter08/python.xml    |  4 ++++
 chapter08/tcl.xml       |  4 ++--
 packages.ent            | 28 ++++++++++++++--------------
 patches.ent             | 10 +++++++---
 7 files changed, 70 insertions(+), 24 deletions(-)

diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml
index 9c4001a62..7c8e87810 100644
--- a/chapter01/changelog.xml
+++ b/chapter01/changelog.xml
@@ -40,6 +40,33 @@
     appropriate for the entry or if needed the entire day's listitem.
     -->
 
+    <listitem>
+      <para>2026-05-14</para>
+      <itemizedlist>
+        <listitem>
+          <para>[renodr] - Update to expat-2.8.1 (Security Update). Fixes
+          <ulink url="&lfs-ticket-root;5933">#5933</ulink>.</para>
+        </listitem>
+        <listitem>
+          <para>[renodr] - Update to tcl-8.6.18. Fixes
+          <ulink url="&lfs-ticket-root;5935">#5935</ulink>.</para>
+        </listitem>
+        <listitem>
+          <para>[renodr] - Update to vim-9.2.0480 (Security Update). Fixes
+          <ulink url="&lfs-ticket-root;5928">#5928</ulink>.</para>
+        </listitem>
+        <listitem>
+          <para>[renodr] - Update to linux-7.0.7 (Security Update). Fixes
+          <ulink url="&lfs-ticket-root;5932">#5932</ulink>.</para>
+        </listitem>
+        <listitem>
+          <para>[renodr] - Fix CVE-2026-7210 and CVE-2026-8328 in Python
+          (Security Update). Fixes
+          <ulink url="&lfs-ticket-root;5934">#5934</ulink>.</para>
+        </listitem>
+      </itemizedlist>
+    </listitem>
+
     <listitem>
       <para>2026-05-11</para>
       <itemizedlist>
diff --git a/chapter01/whatsnew.xml b/chapter01/whatsnew.xml
index b9a8d440b..9ada1dd34 100644
--- a/chapter01/whatsnew.xml
+++ b/chapter01/whatsnew.xml
@@ -254,9 +254,9 @@
     <!--<listitem>
       <para>Tar-&tar-version;</para>
     </listitem>-->
-    <!--<listitem>
+    <listitem>
       <para>Tcl-&tcl-version;</para>
-    </listitem>-->
+    </listitem>
     <listitem>
       <para>Texinfo-&texinfo-version;</para>
     </listitem>
@@ -300,8 +300,11 @@
 
   <itemizedlist>
     <title>Added:</title>
-    <listitem><para></para></listitem>  <!-- satisfy build -->
-    <listitem><para>Python-3.14.4-security_fixes-1.patch</para></listitem>
+    <!--    <listitem><para></para></listitem> -->  <!-- satisfy build -->
+    <listitem><para>glibc-2.43-linux7_fixes-1.patch</para></listitem>
+    <listitem><para>Python-3.14.5-openssl_4-1.patch</para></listitem>
+    <listitem><para>Python-3.14.5-security_fixes-1.patch</para></listitem>
+    <listitem><para>systemd-260.1-buildfix-1.patch</para></listitem>
   </itemizedlist>
 
   <itemizedlist>
diff --git a/chapter03/patches.xml b/chapter03/patches.xml
index f5ca5e221..0b3803927 100644
--- a/chapter03/patches.xml
+++ b/chapter03/patches.xml
@@ -126,7 +126,15 @@
     </varlistentry>
 -->
     <varlistentry>
-      <term>Python OpenSSL 4 Patch - <token>&python-security-fixes-patch-size;</token>:</term>
+      <term>Python OpenSSL 4 Patch - <token>&python-openssl4-fixes-patch-size;</token>:</term>
+      <listitem>
+        <para>Download: <ulink url="&patches-root;&python-openssl4-fixes-patch;"/></para>
+        <para>MD5 sum: <literal>&python-openssl4-fixes-patch-md5;</literal></para>
+      </listitem>
+    </varlistentry>
+
+    <varlistentry>
+      <term>Python Security Fixes Patch - <token>&python-security-fixes-patch-size;</token>:</term>
       <listitem>
         <para>Download: <ulink url="&patches-root;&python-security-fixes-patch;"/></para>
         <para>MD5 sum: <literal>&python-security-fixes-patch-md5;</literal></para>
diff --git a/chapter08/python.xml b/chapter08/python.xml
index fbbbc0afe..7aad5bc61 100644
--- a/chapter08/python.xml
+++ b/chapter08/python.xml
@@ -45,6 +45,10 @@
 
     <para>First, apply a patch for compatibility with OpenSSL 4:</para>
 
+<screen><userinput remap="pre">patch -Np1 -i ../&python-openssl4-fixes-patch;</userinput></screen>
+
+    <para>Next, fix two security vulnerabilities:</para>
+
 <screen><userinput remap="pre">patch -Np1 -i ../&python-security-fixes-patch;</userinput></screen>
 
     <para>Prepare Python for compilation:</para>
diff --git a/chapter08/tcl.xml b/chapter08/tcl.xml
index 3b37715bd..c822207b7 100644
--- a/chapter08/tcl.xml
+++ b/chapter08/tcl.xml
@@ -3,8 +3,8 @@
   "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
   <!ENTITY % general-entities SYSTEM "../general.ent">
   %general-entities;
-  <!ENTITY tdbc-ver          "1.1.12">
-  <!ENTITY itcl-ver          "4.3.4">
+  <!ENTITY tdbc-ver          "1.1.13">
+  <!ENTITY itcl-ver          "4.3.7">
 ]>
 
 <sect1 id="ch-system-tcl" role="wrap">
diff --git a/packages.ent b/packages.ent
index 365c10197..29e0c95a7 100644
--- a/packages.ent
+++ b/packages.ent
@@ -148,11 +148,11 @@
 <!ENTITY elfutils-fin-du "41 MB">
 <!ENTITY elfutils-fin-sbu "0.1 SBU">
 
-<!ENTITY expat-version "2.8.0">
-<!ENTITY expat-dl-version "2_8_0">
-<!ENTITY expat-size "500 KB">
+<!ENTITY expat-version "2.8.1">
+<!ENTITY expat-dl-version "2_8_1">
+<!ENTITY expat-size "504 KB">
 <!ENTITY expat-url "&github;/libexpat/libexpat/releases/download/R_&expat-dl-version;/expat-&expat-version;.tar.xz">
-<!ENTITY expat-md5 "db797f9ddef94ddb1af5ae7db05710ce">
+<!ENTITY expat-md5 "ee5ce823fae282d5d9dadc3b4831a883">
 <!ENTITY expat-home "https://libexpat.github.io/">
 <!ENTITY expat-fin-du "14 MB">
 <!ENTITY expat-fin-sbu "0.1 SBU">
@@ -425,12 +425,12 @@
 <!ENTITY linux-major-version "7">
 <!ENTITY linux-minor-version "0">
 <!ENTITY linux-majmin-version "&linux-major-version;.&linux-minor-version;">
-<!ENTITY linux-patch-version "5">
+<!ENTITY linux-patch-version "7">
 <!--<!ENTITY linux-version "&linux-major-version;.&linux-minor-version;">-->
 <!ENTITY linux-version "&linux-major-version;.&linux-minor-version;.&linux-patch-version;">
-<!ENTITY linux-size "153,485 KB">
+<!ENTITY linux-size "153,520 KB">
 <!ENTITY linux-url "&kernel;linux/kernel/v&linux-major-version;.x/linux-&linux-version;.tar.xz">
-<!ENTITY linux-md5 "ab6eea718e74b5578d46f8343f5fa490">
+<!ENTITY linux-md5 "8e5240dd6146fc607087f18859c78c6e">
 <!ENTITY linux-home "https://www.kernel.org/">
 <!-- measured for 6.10.1 / gcc-14.1.0 on x86_64 with -j4 : 
  minimum is allnoconfig 
@@ -722,15 +722,15 @@
 <!ENTITY tar-fin-du "43 MB">
 <!ENTITY tar-fin-sbu "0.6 SBU">
 
-<!ENTITY tcl-version "8.6.17">
+<!ENTITY tcl-version "8.6.18">
 <!ENTITY tcl-major-version "8.6">
-<!ENTITY tcl-size "11,450 KB">
+<!ENTITY tcl-size "11,540 KB">
 <!ENTITY tcl-url "https://downloads.sourceforge.net/tcl/tcl&tcl-version;-src.tar.gz">
-<!ENTITY tcl-md5 "1ec3444533f54d0f86cd120058e15e48">
+<!ENTITY tcl-md5 "acfe0c9f7d0c626ecf026e834a888da6">
 <!ENTITY tcl-home "https://tcl.sourceforge.net/">
 <!ENTITY tcl-docs-url "https://downloads.sourceforge.net/tcl/tcl&tcl-version;-html.tar.gz">
-<!ENTITY tcl-docs-md5 "60c71044e723b0db5f21be82929f3534">
-<!ENTITY tcl-docs-size "1,170 KB">
+<!ENTITY tcl-docs-md5 "54d1ff0f5eee4e81e5cdaa4baa343397">
+<!ENTITY tcl-docs-size "1,172 KB">
 <!ENTITY tcl-tmp-du "91 MB">
 <!ENTITY tcl-tmp-sbu "2.9 SBU">
 
@@ -769,7 +769,7 @@
 <!ENTITY util-linux-fin-du "346 MB">
 <!ENTITY util-linux-fin-sbu "0.5 SBU">
 
-<!ENTITY vim-version "9.2.0461">
+<!ENTITY vim-version "9.2.0481">
 <!ENTITY vim-docdir "vim/vim92">
 <!ENTITY vim-size "19,502 KB">
 <!ENTITY vim-url "https://github.com/vim/vim/archive/v&vim-version;/vim-&vim-version;.tar.gz">
@@ -784,7 +784,7 @@
      release.  The "Next" button just sets "after=" in the URL.  For
      example, https://github.com/vim/vim/tags?after=v8.1.1847 will show
      us v8.1.1846. -->
-<!ENTITY vim-md5 "86ed20b5a53f2cf14823de2957cee4a8">
+<!ENTITY vim-md5 "59a2473c92078bd23e51f1f0ea5f59f4">
 <!ENTITY vim-home "https://www.vim.org">
 <!ENTITY vim-fin-du "217 MB">
 <!ENTITY vim-fin-sbu "3.2 SBU">
diff --git a/patches.ent b/patches.ent
index 674010d61..8397e61eb 100644
--- a/patches.ent
+++ b/patches.ent
@@ -41,9 +41,13 @@
 <!ENTITY perl-upstream-fix-patch-size "13 KB">
 -->
 
-<!ENTITY python-security-fixes-patch "Python-&python-version;-openssl_4-1.patch">
-<!ENTITY python-security-fixes-patch-md5 "597d7737df1b4ea4e184c193da523050">
-<!ENTITY python-security-fixes-patch-size "38 KB">
+<!ENTITY python-openssl4-fixes-patch "Python-&python-version;-openssl_4-1.patch">
+<!ENTITY python-openssl4-fixes-patch-md5 "597d7737df1b4ea4e184c193da523050">
+<!ENTITY python-openssl4-fixes-patch-size "38 KB">
+
+<!ENTITY python-security-fixes-patch "Python-&python-version;-security_fixes-1.patch">
+<!ENTITY python-security-fixes-patch-md5 "1d5084c858197e82f0611b82f0d852f5">
+<!ENTITY python-security-fixes-patch-size "12 KB">
 
 <!--
 <!ENTITY readline-fixes-patch "readline-&readline-version;-upstream_fixes-3.patch">

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

-- 
http://lists.linuxfromscratch.org/sympa/info/lfs-book
Unsubscribe: See the above information page
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.