Skip to Content.
Sympa Menu

sm-commit - [[SM-Commit] ] GIT changes to master grimoire by Pavel Vinogradov (02b7b30981bec8e9f0a69193f745d8a78ebff0b5)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pavel Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [[SM-Commit] ] GIT changes to master grimoire by Pavel Vinogradov (02b7b30981bec8e9f0a69193f745d8a78ebff0b5)
  • Date: Thu, 28 Mar 2024 22:18:02 +0000

GIT changes to master grimoire by Pavel Vinogradov <public AT sourcemage.org>:

utils/coreutils/DETAILS | 2 -
utils/coreutils/HISTORY | 4 +++
utils/coreutils/PRE_BUILD | 4 ---
utils/coreutils/patches/CVE-2024-0684.patch | 31
----------------------------
4 files changed, 6 insertions(+), 35 deletions(-)

New commits:
commit 02b7b30981bec8e9f0a69193f745d8a78ebff0b5
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>

utils/coreutils: version 9.5

diff --git a/utils/coreutils/DETAILS b/utils/coreutils/DETAILS
index 3aa8e63..0881210 100755
--- a/utils/coreutils/DETAILS
+++ b/utils/coreutils/DETAILS
@@ -1,6 +1,6 @@
# Watch: https://ftp.gnu.org/gnu/coreutils/
SPELL=coreutils
- VERSION=9.4
+ VERSION=9.5
SECURITY_PATCH=2
SOURCE=$SPELL-$VERSION.tar.xz
SOURCE2=$SOURCE.sig
diff --git a/utils/coreutils/HISTORY b/utils/coreutils/HISTORY
index ef24249..3fc0193 100644
--- a/utils/coreutils/HISTORY
+++ b/utils/coreutils/HISTORY
@@ -1,3 +1,7 @@
+2024-03-28 Pavel Vinogradov <public AT sourcemage.org>
+ * DETAILS: version 9.5
+ * PRE_BUILD, patches/CVE-2024-0684.patch: removed the patch, no
longer needed
+
2024-01-25 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: SECURITY_PATCH++, (CVE-2024-0684)
* PRE_BUILD, patches/CVE-2024-0684.patch: added security fix
diff --git a/utils/coreutils/PRE_BUILD b/utils/coreutils/PRE_BUILD
index d501907..7817709 100755
--- a/utils/coreutils/PRE_BUILD
+++ b/utils/coreutils/PRE_BUILD
@@ -3,6 +3,4 @@ cd "${SOURCE_DIRECTORY}" &&

if [[ "${SMACK}" == "y" ]]; then
patch -p1 < "$SPELL_DIRECTORY/coreutils-smack.patch"
-fi &&
-
-apply_patch_dir patches
+fi
diff --git a/utils/coreutils/patches/CVE-2024-0684.patch
b/utils/coreutils/patches/CVE-2024-0684.patch
deleted file mode 100644
index 64583af..0000000
--- a/utils/coreutils/patches/CVE-2024-0684.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From c4c5ed8f4e9cd55a12966d4f520e3a13101637d9 Mon Sep 17 00:00:00 2001
-From: Paul Eggert <eggert AT cs.ucla.edu>
-Date: Tue, 16 Jan 2024 13:48:32 -0800
-Subject: [PATCH] split: do not shrink hold buffer
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-* src/split.c (line_bytes_split): Do not shrink hold buffer.
-If it’s large for this batch it’s likely to be large for the next
-batch, and for ‘split’ it’s not worth the complexity/CPU hassle to
-shrink it. Do not assume hold_size can be bufsize.
----
- src/split.c | 3 ---
- 1 file changed, 3 deletions(-)
-
-diff --git a/src/split.c b/src/split.c
-index 64020c859..037960a59 100644
---- a/src/split.c
-+++ b/src/split.c
-@@ -809,10 +809,7 @@ line_bytes_split (intmax_t n_bytes, char *buf, idx_t
bufsize)
- {
- cwrite (n_out == 0, hold, n_hold);
- n_out += n_hold;
-- if (n_hold > bufsize)
-- hold = xirealloc (hold, bufsize);
- n_hold = 0;
-- hold_size = bufsize;
- }
-
- /* Output to eol if present. */


  • [[SM-Commit] ] GIT changes to master grimoire by Pavel Vinogradov (02b7b30981bec8e9f0a69193f745d8a78ebff0b5), Pavel Vinogradov, 03/28/2024

Archive powered by MHonArc 2.6.24.

Top of Page