From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: Re: [PATCH] OpenSSH: Update to 9.5p1 Date: Wed, 22 Nov 2023 16:01:17 +0000 Message-ID: In-Reply-To: <064d41cb-0560-449e-934b-3b6d6449a8a1@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1250159553260995289==" List-Id: --===============1250159553260995289== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Reviewed-by: Michael Tremer > On 22 Nov 2023, at 15:04, Peter M=C3=BCller wr= ote: >=20 > Please refer to https://www.openssh.com/releasenotes.html#9.5p1 for the > changelog of this version. The patch for fixing zlib version check has > now been amended upstream and can therefore be deleted from IPFire 2.x's > codebase. >=20 > Signed-off-by: Peter M=C3=BCller > --- > lfs/openssh | 5 ++-- > ...ion_check_for_1.3_and_future_version.patch | 25 ------------------- > 2 files changed, 2 insertions(+), 28 deletions(-) > delete mode 100644 src/patches/openssh-9.4p1_Fix_zlib_version_check_for_1.3= _and_future_version.patch >=20 > diff --git a/lfs/openssh b/lfs/openssh > index d5d67dd0e..b81c2c3b1 100644 > --- a/lfs/openssh > +++ b/lfs/openssh > @@ -24,7 +24,7 @@ >=20 > include Config >=20 > -VER =3D 9.4p1 > +VER =3D 9.5p1 >=20 > THISAPP =3D openssh-$(VER) > DL_FILE =3D $(THISAPP).tar.gz > @@ -40,7 +40,7 @@ objects =3D $(DL_FILE) >=20 > $(DL_FILE) =3D $(DL_FROM)/$(DL_FILE) >=20 > -$(DL_FILE)_BLAKE2 =3D d13d758129cce947d3f12edb6e88406aad10de6887b19ffa3ebd= 8e382b742a05f2a692a8824aec99939f6c7e13fbccc3bb14e5ee112f9a9255d4882eb87dcf53 > +$(DL_FILE)_BLAKE2 =3D 55dbb0a2792b0046c943a19ca0966660e6e378e77856e94823a1= bbbafaa0da94357403765c4c028aebf6543049a0f9bbe0019629be3f92cdadfac1be56def796 >=20 > install : $(TARGET) >=20 > @@ -70,7 +70,6 @@ $(subst %,%_BLAKE2,$(objects)) : > $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) > @$(PREBUILD) > @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) > - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/openssh-9.4p1_Fix_zl= ib_version_check_for_1.3_and_future_version.patch > cd $(DIR_APP) && autoconf > cd $(DIR_APP) && sed -i "s/lkrb5 -ldes/lkrb5/" configure > cd $(DIR_APP) && ./configure \ > diff --git a/src/patches/openssh-9.4p1_Fix_zlib_version_check_for_1.3_and_f= uture_version.patch b/src/patches/openssh-9.4p1_Fix_zlib_version_check_for_1.= 3_and_future_version.patch > deleted file mode 100644 > index ef3ff4dca..000000000 > --- a/src/patches/openssh-9.4p1_Fix_zlib_version_check_for_1.3_and_future_v= ersion.patch > +++ /dev/null > @@ -1,25 +0,0 @@ > -From cb4ed12ffc332d1f72d054ed92655b5f1c38f621 Mon Sep 17 00:00:00 2001 > -From: Darren Tucker > -Date: Sat, 19 Aug 2023 07:39:08 +1000 > -Subject: [PATCH] Fix zlib version check for 1.3 and future version. > - > -bz#3604. > ---- > - configure.ac | 2 +- > - 1 file changed, 1 insertion(+), 1 deletion(-) > - > -diff --git a/configure.ac b/configure.ac > -index 07893e87065..e3128dfcbb4 100644 > ---- a/configure.ac > -+++ b/configure.ac > -@@ -1464,7 +1464,7 @@ else > - [[ > - int a=3D0, b=3D0, c=3D0, d=3D0, n, v; > - n =3D sscanf(ZLIB_VERSION, "%d.%d.%d.%d", &a, &b, &c, &d); > -- if (n !=3D 3 && n !=3D 4) > -+ if (n < 1) > - exit(1); > - v =3D a*1000000 + b*10000 + c*100 + d; > - fprintf(stderr, "found zlib version %s (%d)\n", ZLIB_VERSION, v); > - > - > --=20 > 2.35.3 --===============1250159553260995289==--