From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marcel Lorenz To: development@lists.ipfire.org Subject: [PATCH] expect: update to 5.45 Date: Sun, 29 May 2016 08:15:11 +0200 Message-ID: <1464502511-11669-1-git-send-email-marcel.lorenz@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4385975333374160349==" List-Id: --===============4385975333374160349== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Marcel Lorenz --- lfs/expect | 18 +-- src/patches/expect-5.43.0-spawn-1.patch | 217 ------------------------------= -- 2 files changed, 11 insertions(+), 224 deletions(-) delete mode 100644 src/patches/expect-5.43.0-spawn-1.patch diff --git a/lfs/expect b/lfs/expect index d885f2f..5e5c7a6 100644 --- a/lfs/expect +++ b/lfs/expect @@ -1,7 +1,7 @@ ############################################################################= ### # = # # IPFire.org - A linux based firewall = # -# Copyright (C) 2007-2016 IPFire Team = # +# Copyright (C) 2007-2016 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,12 +24,12 @@ =20 include Config =20 -VER =3D 5.43.0 +VER =3D 5.45 =20 -THISAPP =3D expect-$(VER) +THISAPP =3D expect$(VER) DL_FILE =3D $(THISAPP).tar.gz DL_FROM =3D $(URL_IPFIRE) -DIR_APP =3D $(DIR_SRC)/expect-5.43 +DIR_APP =3D $(DIR_SRC)/$(THISAPP) TARGET =3D $(DIR_INFO)/$(THISAPP)-tools =20 ############################################################################= ### @@ -40,7 +40,7 @@ objects=3D$(DL_FILE) =20 $(DL_FILE) =3D $(DL_FROM)/$(DL_FILE) =20 -$(DL_FILE)_MD5 =3D 43e1dc0e0bc9492cf2e1a6f59f276bc3 +$(DL_FILE)_MD5 =3D 44e1a4f4c877e9ddc5a542dfa7ecc92b =20 install : $(TARGET) =20 @@ -70,8 +70,12 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) $(DIR_SRC)/tcl* && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(= DL_FILE) - cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-spawn-1.pat= ch - cd $(DIR_APP) && ./configure --prefix=3D/tools --host=3D$(BUILDTARGET) --wi= th-tcl=3D/tools/lib --with-tclinclude=3D/tools/include --with-x=3Dno --disabl= e-nls + cd $(DIR_APP) && ./configure \ + --prefix=3D/tools \ + --with-tcl=3D/tools/lib \ + --with-tclinclude=3D/tools/include \ + --with-x=3Dno \ + --disable-nls cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make SCRIPTS=3D"" install @rm -rf $(DIR_APP) $(DIR_SRC)/tcl* diff --git a/src/patches/expect-5.43.0-spawn-1.patch b/src/patches/expect-5.4= 3.0-spawn-1.patch deleted file mode 100644 index c2033c0..0000000 --- a/src/patches/expect-5.43.0-spawn-1.patch +++ /dev/null @@ -1,217 +0,0 @@ -Submitted By: LFS Book -Date: 2003-10-05 -Initial Package Version: 5.38 -Origin: Redhat RPM (Patch by HJ Lu) -Description: NA -diff -uNr expect-5.38.orig/exp_chan.c expect-5.38/exp_chan.c ---- expect-5.38.orig/exp_chan.c 2002-02-12 13:00:55.000000000 +1100 -+++ expect-5.38/exp_chan.c 2003-03-01 10:36:18.000000000 +1100 -@@ -519,6 +519,7 @@ - esPtr->buffer =3D Tcl_NewStringObj("",0); - Tcl_IncrRefCount(esPtr->buffer); - esPtr->umsize =3D exp_default_match_max; -+ esPtr->umsize_changed =3D exp_default_match_max_changed; - /* this will reallocate object with an appropriate sized buffer */ - expAdjust(esPtr); -=20 -diff -uNr expect-5.38.orig/exp_command.h expect-5.38/exp_command.h ---- expect-5.38.orig/exp_command.h 2002-04-08 08:57:20.000000000 +1000 -+++ expect-5.38/exp_command.h 2003-03-01 10:36:18.000000000 +1100 -@@ -25,6 +25,7 @@ - EXTERN char * exp_get_var _ANSI_ARGS_((Tcl_Interp *,char *)); -=20 - EXTERN int exp_default_match_max; -+EXTERN int exp_default_match_max_changed; - EXTERN int exp_default_parity; - EXTERN int exp_default_rm_nulls; -=20 -@@ -97,6 +98,7 @@ - int msize; /* # of bytes that buffer can hold (max) */ - int umsize; /* # of bytes (min) that is guaranteed to match */ - /* this comes from match_max command */ -+ int umsize_changed; /* is umsize changed by user? */ - int printed; /* # of bytes written to stdout (if logging on) */ - /* but not actually returned via a match yet */ - int echoed; /* additional # of bytes (beyond "printed" above) */ -diff -uNr expect-5.38.orig/expect.c expect-5.38/expect.c ---- expect-5.38.orig/expect.c 2002-04-08 09:00:33.000000000 +1000 -+++ expect-5.38/expect.c 2003-03-01 10:36:18.000000000 +1100 -@@ -41,8 +41,17 @@ - #include "tcldbg.h" - #endif -=20 -+/* The initial length is 2000. We increment it by 2000. The maximum -+ is 8MB (0x800000). */ -+#define EXP_MATCH_MAX 2000 -+#define EXP_MATCH_INC 2000 -+#define EXP_MATCH_STEP_LIMIT 0x700000 -+#define EXP_MATCH_LIMIT 0x800000 -+#define EXP_MATCH_LIMIT_QUOTE "0x800000" -+ - /* initial length of strings that we can guarantee patterns can match */ --int exp_default_match_max =3D 2000; -+int exp_default_match_max =3D EXP_MATCH_MAX; -+int exp_default_match_max_changed =3D 0; - #define INIT_EXPECT_TIMEOUT_LIT "10" /* seconds */ - #define INIT_EXPECT_TIMEOUT 10 /* seconds */ - int exp_default_parity =3D TRUE; -@@ -1618,6 +1627,76 @@ - return newsize; - } -=20 -+/* returns # of bytes until we see a newline at the end or EOF. */ -+/*ARGSUSED*/ -+static int -+expReadNewLine(interp,esPtr,save_flags) /* INTL */ -+Tcl_Interp *interp; -+ExpState *esPtr; -+int save_flags; -+{ -+ int size; -+ int exp_size; -+ int full_size; -+ int count; -+ char *str; -+ -+ count =3D 0; -+ for (;;) { -+ exp_size =3D expSizeGet(esPtr); -+ -+ /* When we reach the limit, we will only read one char at a -+ time. */ -+ if (esPtr->umsize >=3D EXP_MATCH_STEP_LIMIT) -+ size =3D TCL_UTF_MAX; -+ else -+ size =3D exp_size; -+ -+ if (exp_size + TCL_UTF_MAX >=3D esPtr->msize) { -+ if (esPtr->umsize >=3D EXP_MATCH_LIMIT) { -+ expDiagLogU("WARNING: interact buffer is full. probably your program\r\n"= ); -+ expDiagLogU("is not interactive or has a very long output line. The\r\n"); -+ expDiagLogU("current limit is " EXP_MATCH_LIMIT_QUOTE ".\r\n"); -+ expDiagLogU("Dumping first half of buffer in order to continue\r\n"); -+ expDiagLogU("Recommend you enlarge the buffer.\r\n"); -+ exp_buffer_shuffle(interp,esPtr,save_flags,EXPECT_OUT,"expect"); -+ return count; -+ } -+ else { -+ esPtr->umsize +=3D EXP_MATCH_INC; -+ expAdjust(esPtr); -+ } -+ } -+ -+ full_size =3D esPtr->msize - (size / TCL_UTF_MAX); -+ size =3D Tcl_ReadChars(esPtr->channel, -+ esPtr->buffer, -+ full_size, -+ 1 /* append */); -+ if (size > 0) { -+ count +=3D size; -+ /* We try again if there are more to read and we haven't -+ seen a newline at the end. */ -+ if (size =3D=3D full_size) { -+ str =3D Tcl_GetStringFromObj(esPtr->buffer, &size); -+ if (str[size - 1] !=3D '\n') -+ continue; -+ } -+ } -+ else { -+ /* It is even trickier. We got an error from read. We have -+ to recover from it. Let's make sure the size of -+ buffer is correct. It can be corrupted. */ -+ str =3D Tcl_GetString(esPtr->buffer); -+ Tcl_SetObjLength(esPtr->buffer, strlen(str)); -+ } -+ -+ break; -+ } -+ -+ return count; -+} -+ - /* returns # of bytes read or (non-positive) error of form EXP_XXX */ - /* returns 0 for end of file */ - /* If timeout is non-zero, set an alarm before doing the read, else assume = */ -@@ -1632,6 +1711,8 @@ - { - int cc =3D EXP_TIMEOUT; - int size =3D expSizeGet(esPtr); -+ int full_size; -+ int count; -=20 - if (size + TCL_UTF_MAX >=3D esPtr->msize)=20 - exp_buffer_shuffle(interp,esPtr,save_flags,EXPECT_OUT,"expect"); -@@ -1648,11 +1729,43 @@ - } - #endif -=20 -- =20 -+ /* FIXME: If we ask less than what is available in the tcl buffer -+ when tcl has seen EOF, we will throw away the remaining data -+ since the next read will get EOF. Since expect is line-oriented, -+ we exand our buffer to get EOF or the next newline at the end of -+ the input buffer. I don't know if it is the right fix. H.J. */ -+ count =3D 0; -+ full_size =3D esPtr->msize - (size / TCL_UTF_MAX); - cc =3D Tcl_ReadChars(esPtr->channel, -- esPtr->buffer, -- esPtr->msize - (size / TCL_UTF_MAX), -- 1 /* append */); -+ esPtr->buffer, -+ full_size, -+ 1 /* append */); -+ if (cc > 0) { -+ count +=3D cc; -+ /* It gets very tricky. There are more to read. We will expand -+ our buffer and get EOF or a newline at the end unless the -+ buffer length has been changed. */ -+ if (cc =3D=3D full_size) { -+ char *str; -+ str =3D Tcl_GetStringFromObj(esPtr->buffer, &size); -+ if (str[size - 1] !=3D '\n') { -+ if (esPtr->umsize_changed) { -+ char buf[20]; /* big enough for 64bit int in hex. */ -+ snprintf(buf,sizeof(buf),"0x%x", esPtr->umsize); -+ expDiagLogU("WARNING: interact buffer is not large enough to hold\r\n= "); -+ expDiagLogU("all output. probably your program is not interactive or\= r\n"); -+ expDiagLogU("has a very long output line. The current limit is "); -+ expDiagLogU(buf); -+ expDiagLogU(".\r\n"); -+ } -+ else { -+ cc =3D expReadNewLine(interp,esPtr,save_flags); -+ if (cc > 0) -+ count +=3D cc; -+ } -+ } -+ } -+ } - i_read_errno =3D errno; -=20 - #ifdef SIMPLE_EVENT -@@ -1673,7 +1786,7 @@ - } - } - #endif -- return cc;=09 -+ return count > 0 ? count : cc; - } -=20 - /* -@@ -2746,8 +2859,14 @@ - return(TCL_ERROR); - } -=20 -- if (Default) exp_default_match_max =3D size; -- else esPtr->umsize =3D size; -+ if (Default) { -+ exp_default_match_max =3D size; -+ exp_default_match_max_changed =3D 1; -+ } -+ else { -+ esPtr->umsize =3D size; -+ esPtr->umsize_changed =3D 1; -+ } -=20 - return(TCL_OK); - } --=20 1.9.1 --===============4385975333374160349==--