From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: Re: [PATCH] screen: Update to version 4.9.1 Date: Thu, 23 May 2024 17:59:31 +0100 Message-ID: <5D1CB10A-92F8-4ABB-9B2C-59B903315248@ipfire.org> In-Reply-To: <20240520133525.3502954-7-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6496447727033299049==" List-Id: --===============6496447727033299049== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Reviewed-by: Michael Tremer > On 20 May 2024, at 14:35, Adolf Belka wrote: >=20 > - Update from version 4.9.0 to 4.9.1 > - Update of rootfile > - Changelog > 4.9.1 > * Support stop/parity bits on serial port (#23952) > * Add needed system headers in checks and return values > for implicit function declarations > * Fixes: > - Avoid zombies after shell exit (#25089) > - Missed signal sending permission check on failed > query messages (CVE-2023-24626) > - manpage fixes > - source code fixes during cleanup > - UTF-8 encoding can emit invalid UTF-8 sequences > for out of range unicode values (#62097) >=20 > Signed-off-by: Adolf Belka > --- > config/rootfiles/common/screen | 2 +- > lfs/screen | 11 +++++++---- > 2 files changed, 8 insertions(+), 5 deletions(-) >=20 > diff --git a/config/rootfiles/common/screen b/config/rootfiles/common/screen > index b1e74e734..a367ab078 100644 > --- a/config/rootfiles/common/screen > +++ b/config/rootfiles/common/screen > @@ -1,6 +1,6 @@ > etc/screenrc > usr/bin/screen > -usr/bin/screen-4.9.0 > +usr/bin/screen-4.9.1 > #usr/share/info/screen.info > #usr/share/man/man1/screen.1 > #usr/share/screen > diff --git a/lfs/screen b/lfs/screen > index a78905970..c7bd53a8d 100644 > --- a/lfs/screen > +++ b/lfs/screen > @@ -1,7 +1,7 @@ > ###########################################################################= #### > # = # > # IPFire.org - A linux based firewall = # > -# Copyright (C) 2007-2022 IPFire Team = # > +# Copyright (C) 2007-2024 IPFire Team = # > # = # > # This program is free software: you can redistribute it and/or modify = # > # it under the terms of the GNU General Public License as published by = # > @@ -24,7 +24,7 @@ >=20 > include Config >=20 > -VER =3D 4.9.0 > +VER =3D 4.9.1 >=20 > THISAPP =3D screen-$(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 0f64a14ce9a719bd4a6d045c55069769045a09ee2086c44c2e3d= 9da6d1e5ada2f094e00e16029767e1155ce35d4f360d0e2879995eefa052f3214ced71b7617c > +$(DL_FILE)_BLAKE2 =3D 27d9c100bc1f747e39e109a4957702388d943c7d3b75b4c59dfc= 3894456d5249257742106fb24cf6f07a36764db0a1c5f7e0a44123edda1c570d771d7f46c638 >=20 > install : $(TARGET) >=20 > @@ -71,7 +71,10 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) > @$(PREBUILD) > @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) > cd $(DIR_APP) && ./autogen.sh > - cd $(DIR_APP) && ./configure --prefix=3D/usr --with-socket-dir=3D/var/run= /screen --with-sys-screenrc=3D/etc/screenrc > + cd $(DIR_APP) && ./configure \ > + --prefix=3D/usr \ > + --with-socket-dir=3D/var/run/screen \ > + --with-sys-screenrc=3D/etc/screenrc > cd $(DIR_APP) && sed -i -e "s%/usr/local/etc/screenrc%/etc/screenrc%" {etc,= doc}/* > cd $(DIR_APP) && make $(MAKETUNING) > cd $(DIR_APP) && make install > --=20 > 2.44.0 >=20 --===============6496447727033299049==--