From 9d9010d770313ac737a0689f9d122c116812655c Mon Sep 17 00:00:00 2001 From: Chris Punches Date: Sat, 10 Feb 2024 22:41:22 -0500 Subject: [PATCH] upgraded versions: coreutils 9.3 glibc 2.38 bc 6.6.0 binutils 2.41 dbus 1.14.8 diffutils 3.10 elfutils 0.189 file 5.45 gawk 5.2.2 gcc 13.2.0 gmp 6.3.0 gettext 0.22 Note: a walkthrough of each upgraded version and the patches, and steps used for each package needs to be performed --- rex.project/x86_64/components/stage1/binutils.bash | 2 +- rex.project/x86_64/components/stage1/gcc.bash | 4 ++-- rex.project/x86_64/components/stage1/glibc.bash | 2 +- rex.project/x86_64/components/stage2/coreutils.bash | 2 +- rex.project/x86_64/components/stage2/diffutils.bash | 2 +- rex.project/x86_64/components/stage2/file.bash | 2 +- rex.project/x86_64/components/stage2/gawk.bash | 2 +- rex.project/x86_64/components/stage3/gettext.bash | 2 +- rex.project/x86_64/components/stage4/bc.bash | 2 +- rex.project/x86_64/components/stage4/coreutils.bash | 2 +- rex.project/x86_64/components/stage4/dbus.bash | 2 +- rex.project/x86_64/components/stage4/diffutils.bash | 2 +- rex.project/x86_64/components/stage4/elfutils.bash | 2 +- rex.project/x86_64/components/stage4/file.bash | 2 +- rex.project/x86_64/components/stage4/gawk.bash | 2 +- rex.project/x86_64/components/stage4/gcc.bash | 2 +- rex.project/x86_64/components/stage4/gettext.bash | 2 +- rex.project/x86_64/components/stage4/gmp_standalone.bash | 2 +- 18 files changed, 19 insertions(+), 19 deletions(-) diff --git a/rex.project/x86_64/components/stage1/binutils.bash b/rex.project/x86_64/components/stage1/binutils.bash index 3a907fe..9dfd0b0 100755 --- a/rex.project/x86_64/components/stage1/binutils.bash +++ b/rex.project/x86_64/components/stage1/binutils.bash @@ -14,7 +14,7 @@ APPNAME="binutils" # the version of this application #VERSION="2.25" -VERSION="2.40" +VERSION="2.41" # ---------------------------------------------------------------------- # Variables and functions sourced from Environment: diff --git a/rex.project/x86_64/components/stage1/gcc.bash b/rex.project/x86_64/components/stage1/gcc.bash index 29d1244..9a0d0b5 100755 --- a/rex.project/x86_64/components/stage1/gcc.bash +++ b/rex.project/x86_64/components/stage1/gcc.bash @@ -13,9 +13,9 @@ set -u APPNAME="gcc" # the version of this application -VERSION="12.2.0" +VERSION="13.2.0" MPFR_V="4.2.0" -GMP_V="6.2.1" +GMP_V="6.3.0" MPC_V="1.3.1" # ---------------------------------------------------------------------- # Variables and functions sourced from Environment: diff --git a/rex.project/x86_64/components/stage1/glibc.bash b/rex.project/x86_64/components/stage1/glibc.bash index a8d16c2..e0265a8 100755 --- a/rex.project/x86_64/components/stage1/glibc.bash +++ b/rex.project/x86_64/components/stage1/glibc.bash @@ -224,7 +224,7 @@ mode_install_pass1() { rm -v a.out assert_zero $? - ${CROSSTOOLS_DIR}/libexec/gcc/${T_TRIPLET}/12.2.0/install-tools/mkheaders + ${CROSSTOOLS_DIR}/libexec/gcc/${T_TRIPLET}/13.2.0/install-tools/mkheaders assert_zero $? diff --git a/rex.project/x86_64/components/stage2/coreutils.bash b/rex.project/x86_64/components/stage2/coreutils.bash index d02b164..48f5a99 100755 --- a/rex.project/x86_64/components/stage2/coreutils.bash +++ b/rex.project/x86_64/components/stage2/coreutils.bash @@ -13,7 +13,7 @@ set -u APPNAME="coreutils" # the version of this application -VERSION="9.1" +VERSION="9.3" # ---------------------------------------------------------------------- # Variables and functions sourced from Environment: diff --git a/rex.project/x86_64/components/stage2/diffutils.bash b/rex.project/x86_64/components/stage2/diffutils.bash index 97f0e3e..d310d96 100755 --- a/rex.project/x86_64/components/stage2/diffutils.bash +++ b/rex.project/x86_64/components/stage2/diffutils.bash @@ -13,7 +13,7 @@ set -u APPNAME="diffutils" # the version of this application -VERSION="3.9" +VERSION="3.10" # ---------------------------------------------------------------------- # Variables and functions sourced from Environment: diff --git a/rex.project/x86_64/components/stage2/file.bash b/rex.project/x86_64/components/stage2/file.bash index ce579bb..7b883ae 100755 --- a/rex.project/x86_64/components/stage2/file.bash +++ b/rex.project/x86_64/components/stage2/file.bash @@ -13,7 +13,7 @@ set -u APPNAME="file" # the version of this application -VERSION="5.44" +VERSION="5.45" # ---------------------------------------------------------------------- # Variables and functions sourced from Environment: diff --git a/rex.project/x86_64/components/stage2/gawk.bash b/rex.project/x86_64/components/stage2/gawk.bash index 883bada..483c8f3 100755 --- a/rex.project/x86_64/components/stage2/gawk.bash +++ b/rex.project/x86_64/components/stage2/gawk.bash @@ -12,7 +12,7 @@ set -u APPNAME="gawk" # the version of this application -VERSION="5.2.1" +VERSION="5.2.2" # ---------------------------------------------------------------------- # Variables and functions sourced from Environment: diff --git a/rex.project/x86_64/components/stage3/gettext.bash b/rex.project/x86_64/components/stage3/gettext.bash index 3adf63a..d9c27b9 100755 --- a/rex.project/x86_64/components/stage3/gettext.bash +++ b/rex.project/x86_64/components/stage3/gettext.bash @@ -12,7 +12,7 @@ set -a APPNAME="gettext" # the version of this application -VERSION="0.21.1" +VERSION="0.22" # ---------------------------------------------------------------------- # Variables and functions sourced from Environment: diff --git a/rex.project/x86_64/components/stage4/bc.bash b/rex.project/x86_64/components/stage4/bc.bash index 8fdd5d7..e09a44d 100755 --- a/rex.project/x86_64/components/stage4/bc.bash +++ b/rex.project/x86_64/components/stage4/bc.bash @@ -12,7 +12,7 @@ set -a APPNAME="bc" # the version of this application -VERSION="6.2.4" +VERSION="6.6.0" # ---------------------------------------------------------------------- # Variables and functions sourced from Environment: diff --git a/rex.project/x86_64/components/stage4/coreutils.bash b/rex.project/x86_64/components/stage4/coreutils.bash index 819cbd2..2703e3a 100755 --- a/rex.project/x86_64/components/stage4/coreutils.bash +++ b/rex.project/x86_64/components/stage4/coreutils.bash @@ -12,7 +12,7 @@ set -a APPNAME="coreutils" # the version of this application -VERSION="9.1" +VERSION="9.3" # ---------------------------------------------------------------------- # Variables and functions sourced from Environment: diff --git a/rex.project/x86_64/components/stage4/dbus.bash b/rex.project/x86_64/components/stage4/dbus.bash index 6315a8b..4791827 100755 --- a/rex.project/x86_64/components/stage4/dbus.bash +++ b/rex.project/x86_64/components/stage4/dbus.bash @@ -12,7 +12,7 @@ set -a APPNAME="dbus" # the version of this application -VERSION="1.14.6" +VERSION="1.14.8" # ---------------------------------------------------------------------- # Variables and functions sourced from Environment: diff --git a/rex.project/x86_64/components/stage4/diffutils.bash b/rex.project/x86_64/components/stage4/diffutils.bash index f0a015c..89c7cd5 100755 --- a/rex.project/x86_64/components/stage4/diffutils.bash +++ b/rex.project/x86_64/components/stage4/diffutils.bash @@ -12,7 +12,7 @@ set -a APPNAME="diffutils" # the version of this application -VERSION="3.9" +VERSION="3.10" # ---------------------------------------------------------------------- # Variables and functions sourced from Environment: diff --git a/rex.project/x86_64/components/stage4/elfutils.bash b/rex.project/x86_64/components/stage4/elfutils.bash index 91d0d54..74e14be 100755 --- a/rex.project/x86_64/components/stage4/elfutils.bash +++ b/rex.project/x86_64/components/stage4/elfutils.bash @@ -12,7 +12,7 @@ set -a APPNAME="elfutils" # the version of this application -VERSION="0.188" +VERSION="0.189" # ---------------------------------------------------------------------- # Variables and functions sourced from Environment: diff --git a/rex.project/x86_64/components/stage4/file.bash b/rex.project/x86_64/components/stage4/file.bash index 8c8c749..f7fa86a 100755 --- a/rex.project/x86_64/components/stage4/file.bash +++ b/rex.project/x86_64/components/stage4/file.bash @@ -12,7 +12,7 @@ set -a APPNAME="file" # the version of this application -VERSION="5.44" +VERSION="5.45" # ---------------------------------------------------------------------- # Variables and functions sourced from Environment: diff --git a/rex.project/x86_64/components/stage4/gawk.bash b/rex.project/x86_64/components/stage4/gawk.bash index bb8cfde..dca55d9 100755 --- a/rex.project/x86_64/components/stage4/gawk.bash +++ b/rex.project/x86_64/components/stage4/gawk.bash @@ -12,7 +12,7 @@ set -a APPNAME="gawk" # the version of this application -VERSION="5.2.1" +VERSION="5.2.2" # ---------------------------------------------------------------------- # Variables and functions sourced from Environment: diff --git a/rex.project/x86_64/components/stage4/gcc.bash b/rex.project/x86_64/components/stage4/gcc.bash index fab3ec9..05d6b73 100755 --- a/rex.project/x86_64/components/stage4/gcc.bash +++ b/rex.project/x86_64/components/stage4/gcc.bash @@ -12,7 +12,7 @@ set -a APPNAME="gcc" # the version of this application -VERSION="12.2.0" +VERSION="13.2.0" # ---------------------------------------------------------------------- # Variables and functions sourced from Environment: diff --git a/rex.project/x86_64/components/stage4/gettext.bash b/rex.project/x86_64/components/stage4/gettext.bash index fc6a820..05db9ad 100755 --- a/rex.project/x86_64/components/stage4/gettext.bash +++ b/rex.project/x86_64/components/stage4/gettext.bash @@ -12,7 +12,7 @@ set -u APPNAME="gettext" # the version of this application -VERSION="0.21.1" +VERSION="0.22" # ---------------------------------------------------------------------- # Variables and functions sourced from Environment: diff --git a/rex.project/x86_64/components/stage4/gmp_standalone.bash b/rex.project/x86_64/components/stage4/gmp_standalone.bash index 660252a..071c4dc 100755 --- a/rex.project/x86_64/components/stage4/gmp_standalone.bash +++ b/rex.project/x86_64/components/stage4/gmp_standalone.bash @@ -12,7 +12,7 @@ set -a APPNAME="gmp" # the version of this application -VERSION="6.2.1" +VERSION="6.3.0" # ---------------------------------------------------------------------- # Variables and functions sourced from Environment: