summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/expect/expect
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/expect/expect')
-rw-r--r--meta/recipes-devtools/expect/expect/0001-configure.in.patch108
-rw-r--r--meta/recipes-devtools/expect/expect/0001-expect-install-scripts-without-using-the-fixline1-tc.patch34
-rw-r--r--meta/recipes-devtools/expect/expect/0002-tcl.m4.patch17
-rw-r--r--meta/recipes-devtools/expect/expect/01-example-shebang.patch144
4 files changed, 303 insertions, 0 deletions
diff --git a/meta/recipes-devtools/expect/expect/0001-configure.in.patch b/meta/recipes-devtools/expect/expect/0001-configure.in.patch
new file mode 100644
index 0000000000..7595a254a8
--- /dev/null
+++ b/meta/recipes-devtools/expect/expect/0001-configure.in.patch
@@ -0,0 +1,108 @@
1Allow cross compiling.
2
3Signed-off-by: Anders Roxell <anders.roxell@enea.com>
4Upstream-Status: Pending
5---
6diff -uNr a/configure.in b/configure.in
7--- a/configure.in 2012-12-14 15:31:32.623180450 +0100
8+++ b/configure.in 2012-12-14 15:53:34.518233519 +0100
9@@ -481,7 +481,7 @@
10 ,
11 AC_MSG_RESULT(no)
12 ,
13- AC_MSG_ERROR([Expect can't be cross compiled])
14+ AC_MSG_RESULT(no)
15 )
16
17 AC_MSG_CHECKING([if any value exists for WNOHANG])
18@@ -506,7 +506,9 @@
19 AC_MSG_RESULT(no)
20 AC_DEFINE(WNOHANG_BACKUP_VALUE, 1)
21 ,
22- AC_MSG_ERROR([Expect can't be cross compiled])
23+ AC_MSG_RESULT(yes)
24+ AC_DEFINE_UNQUOTED(WNOHANG_BACKUP_VALUE, `cat wnohang`)
25+ rm -f wnohang
26 )
27
28 #
29@@ -574,7 +576,8 @@
30 AC_DEFINE(REARM_SIG)
31 ,
32 AC_MSG_RESULT(no)
33-, AC_MSG_WARN([Expect can't be cross compiled])
34+,
35+ AC_MSG_RESULT(no)
36 )
37
38 # HPUX7 has trouble with the big cat so split it
39@@ -725,7 +728,9 @@
40 ,
41 AC_MSG_RESULT(no)
42 ,
43- AC_MSG_ERROR([Expect can't be cross compiled])
44+ AC_MSG_RESULT(yes)
45+ AC_DEFINE(HAVE_SGTTYB)
46+ PTY_TYPE=sgttyb
47 )
48
49 # mach systems have include files for unimplemented features
50@@ -749,7 +754,9 @@
51 ,
52 AC_MSG_RESULT(no)
53 ,
54- AC_MSG_ERROR([Expect can't be cross compiled])
55+ AC_DEFINE(HAVE_TERMIO)
56+ PTY_TYPE=termios
57+ AC_MSG_RESULT(yes)
58 )
59
60 # now check for the new style ttys (not yet posix)
61@@ -771,7 +778,9 @@
62 ,
63 AC_MSG_RESULT(no)
64 ,
65- AC_MSG_ERROR([Expect can't be cross compiled])
66+ AC_DEFINE(HAVE_TERMIOS)
67+ PTY_TYPE=termios
68+ AC_MSG_RESULT(yes)
69 )
70 fi
71
72@@ -794,7 +803,7 @@
73 ,
74 AC_MSG_RESULT(no)
75 ,
76- AC_MSG_ERROR([Expect can't be cross compiled])
77+ AC_MSG_RESULT(no)
78 )
79
80 AC_MSG_CHECKING([if TIOCGWINSZ in termios.h])
81@@ -816,7 +825,7 @@
82 ,
83 AC_MSG_RESULT(no)
84 ,
85- AC_MSG_ERROR([Expect can't be cross compiled])
86+ AC_MSG_RESULT(no)
87 )
88
89 # finally check for Cray style ttys
90@@ -837,7 +846,7 @@
91 ,
92 AC_MSG_RESULT(no)
93 ,
94- AC_MSG_ERROR([Expect can't be cross compiled])
95+ AC_MSG_RESULT(no)
96 )
97
98 #
99@@ -889,7 +898,8 @@
100 AC_MSG_RESULT(yes),
101 AC_MSG_RESULT(no)
102 ,
103- AC_MSG_ERROR([Expect can't be cross compiled])
104+ AC_DEFINE(HAVE_SV_TIMEZONE)
105+ AC_MSG_RESULT(yes),
106 )
107
108
diff --git a/meta/recipes-devtools/expect/expect/0001-expect-install-scripts-without-using-the-fixline1-tc.patch b/meta/recipes-devtools/expect/expect/0001-expect-install-scripts-without-using-the-fixline1-tc.patch
new file mode 100644
index 0000000000..274ad86353
--- /dev/null
+++ b/meta/recipes-devtools/expect/expect/0001-expect-install-scripts-without-using-the-fixline1-tc.patch
@@ -0,0 +1,34 @@
1Upstream-Status: Inappropriate [wrlinux specific]
2
3Subject: expect: install scripts without using the fixline1 tcl script
4
5On older machines like SLED11.2, we are encountering do_install failures
6complaining that 'GLIBC_2.14' is not found in /lib64/libc.so.6 but is required
7by libtcl8.6.so.0.
8
9This is because that we're executing the fixline1 tcl script which requires
10libtcl8.6.so.0 in sysroot. However, all commands in SCRIPTS already have got
11the correct first line, that is '#!/bin/sh'. We don't need to modify anything.
12That's why we could just copy them.
13
14Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
15---
16 Makefile.in | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19diff --git a/Makefile.in b/Makefile.in
20index c05c880..f1394ff 100644
21--- a/Makefile.in
22+++ b/Makefile.in
23@@ -380,7 +380,7 @@ dist: dist-clean doc
24 cp $(DIST_ROOT)/$(PKG_DIR).tar.gz $(top_builddir)
25
26 $(SCRIPTS):
27- $(TCLSH) $(srcdir)/fixline1 $(SHORT_BINDIR) < $(srcdir)/example/$@ > $@
28+ cp $(srcdir)/example/$@ $@
29
30 ## We cannot use TCL_LIBS below (after TCL_LIB_SPEC) because its
31 ## expansion references the contents of LIBS, which contains linker
32--
331.7.10.4
34
diff --git a/meta/recipes-devtools/expect/expect/0002-tcl.m4.patch b/meta/recipes-devtools/expect/expect/0002-tcl.m4.patch
new file mode 100644
index 0000000000..dc4c6ba406
--- /dev/null
+++ b/meta/recipes-devtools/expect/expect/0002-tcl.m4.patch
@@ -0,0 +1,17 @@
1Use proper -L path when cross compiling.
2
3Signed-off-by: Anders Roxell <anders.roxell@enea.com>
4Upstream-Status: Pending
5---
6diff -uNr a/tclconfig/tcl.m4 b/tclconfig/tcl.m4
7--- a/tclconfig/tcl.m4 2012-12-14 09:16:58.789861281 +0100
8+++ b/tclconfig/tcl.m4 2012-12-14 10:55:43.542297010 +0100
9@@ -371,7 +371,7 @@
10 # of TCL_BUILD_LIB_SPEC. An extension should make use of TCL_LIB_SPEC
11 # instead of TCL_BUILD_LIB_SPEC since it will work with both an
12 # installed and uninstalled version of Tcl.
13- if test -f "${TCL_BIN_DIR}/Makefile" ; then
14+ if test -f "${TCL_BIN_DIR}/Makefile" || test "$cross_compiling" = yes; then
15 TCL_LIB_SPEC="${TCL_BUILD_LIB_SPEC}"
16 TCL_STUB_LIB_SPEC="${TCL_BUILD_STUB_LIB_SPEC}"
17 TCL_STUB_LIB_PATH="${TCL_BUILD_STUB_LIB_PATH}"
diff --git a/meta/recipes-devtools/expect/expect/01-example-shebang.patch b/meta/recipes-devtools/expect/expect/01-example-shebang.patch
new file mode 100644
index 0000000000..8597f31387
--- /dev/null
+++ b/meta/recipes-devtools/expect/expect/01-example-shebang.patch
@@ -0,0 +1,144 @@
1Author: Mike Markley <mike@markley.org>
2Author: Sergei Golovan <sgolovan@debian.org>
3Description: Fixes shebangs in examples (Closes: #152367).
4
5Backported from Debian
6
7Upstream-Status: Pending
8Index: expect5.45/example/beer.exp
9===================================================================
10--- expect5.45.orig/example/beer.exp 2006-01-25 13:51:39.000000000 -0800
11+++ expect5.45/example/beer.exp 2013-11-01 17:35:19.817318341 -0700
12@@ -1,4 +1,9 @@
13-#!/depot/path/expect -f
14+#!/bin/sh
15+# -*- tcl -*-
16+# The next line is executed by /bin/sh, but not tcl \
17+exec tclsh "$0" ${1+"$@"}
18+
19+package require Expect
20
21 # 99 bottles of beer on the wall, Expect-style
22 # Author: Don Libes <libes@nist.gov>
23Index: expect5.45/example/expectd.proto
24===================================================================
25--- expect5.45.orig/example/expectd.proto 2010-07-02 09:03:31.000000000 -0700
26+++ expect5.45/example/expectd.proto 2013-11-01 17:35:19.821318341 -0700
27@@ -1,4 +1,10 @@
28-#!/depot/tcl/src/expect/e --
29+#!/bin/sh
30+# -*- tcl -*-
31+# The next line is executed by /bin/sh, but not tcl \
32+exec tclsh "$0" ${1+"$@"}
33+
34+package require Expect
35+
36 # Description: Simple fragment to begin a telnet daemon
37 # For more information, see Chapter 17 of "Exploring Expect"
38 # Author: Don Libes, NIST
39Index: expect5.45/example/irsh
40===================================================================
41--- expect5.45.orig/example/irsh 2010-07-02 09:03:31.000000000 -0700
42+++ expect5.45/example/irsh 2013-11-01 17:35:19.821318341 -0700
43@@ -1,4 +1,9 @@
44-#!/depot/path/expect --
45+#!/bin/sh
46+# -*- tcl -*-
47+# The next line is executed by /bin/sh, but not tcl \
48+exec tclsh "$0" ${1+"$@"}
49+
50+package require Expect
51
52 # Do rsh interactively. For example, consider the following command:
53 # rsh <remote> ls -l "|" more
54Index: expect5.45/example/passwd.cgi
55===================================================================
56--- expect5.45.orig/example/passwd.cgi 2000-01-06 15:22:07.000000000 -0800
57+++ expect5.45/example/passwd.cgi 2013-11-01 17:35:19.821318341 -0700
58@@ -1,4 +1,9 @@
59-#!/depot/path/expect --
60+#!/bin/sh
61+# -*- tcl -*-
62+# The next line is executed by /bin/sh, but not tcl \
63+exec tclsh "$0" ${1+"$@"}
64+
65+package require Expect
66
67 # This is a CGI script to process requests created by the accompanying
68 # passwd.html form. This script is pretty basic, although it is
69Index: expect5.45/example/passwdprompt
70===================================================================
71--- expect5.45.orig/example/passwdprompt 2003-09-05 12:01:59.000000000 -0700
72+++ expect5.45/example/passwdprompt 2013-11-01 17:35:19.821318341 -0700
73@@ -1,4 +1,9 @@
74-#!/depot/path/expect
75+#!/bin/sh
76+# -*- tcl -*-
77+# The next line is executed by /bin/sh, but not tcl \
78+exec tclsh "$0" ${1+"$@"}
79+
80+package require Expect
81
82 # This script prompts for a passwd from stdin while echoing *'s
83
84Index: expect5.45/example/reprompt
85===================================================================
86--- expect5.45.orig/example/reprompt 2000-01-06 15:22:07.000000000 -0800
87+++ expect5.45/example/reprompt 2013-11-01 17:35:19.821318341 -0700
88@@ -1,4 +1,9 @@
89-#!/depot/path/expect --
90+#!/bin/sh
91+# -*- tcl -*-
92+# The next line is executed by /bin/sh, but not tcl \
93+exec tclsh "$0" ${1+"$@"}
94+
95+package require Expect
96
97 # Name: reprompt
98 # Description: reprompt every so often until user enters something
99Index: expect5.45/example/term_expect
100===================================================================
101--- expect5.45.orig/example/term_expect 2005-02-15 10:11:31.000000000 -0800
102+++ expect5.45/example/term_expect 2013-11-01 17:35:19.821318341 -0700
103@@ -1,4 +1,9 @@
104-#!/depot/path/expectk
105+#!/bin/sh
106+# -*- tcl -*-
107+# The next line is executed by /bin/sh, but not tcl \
108+exec wish "$0" ${1+"$@"}
109+
110+package require Expect
111
112 # Name: tkterm - terminal emulator using Expect and Tk text widget, v3.0
113 # Author: Don Libes, July '94
114Index: expect5.45/example/vrfy
115===================================================================
116--- expect5.45.orig/example/vrfy 2010-07-02 09:03:31.000000000 -0700
117+++ expect5.45/example/vrfy 2013-11-01 17:35:19.821318341 -0700
118@@ -1,4 +1,9 @@
119-#!/depot/path/expect -f
120+#!/bin/sh
121+# -*- tcl -*-
122+# The next line is executed by /bin/sh, but not tcl \
123+exec tclsh "$0" ${1+"$@"}
124+
125+package require Expect
126
127
128 # separate address into user and host
129Index: expect5.45/example/xrlogin
130===================================================================
131--- expect5.45.orig/example/xrlogin 2000-01-06 15:22:08.000000000 -0800
132+++ expect5.45/example/xrlogin 2013-11-01 17:35:19.821318341 -0700
133@@ -1,4 +1,10 @@
134-#!/depot/path/expect --
135+#!/bin/sh
136+# -*- tcl -*-
137+# The next line is executed by /bin/sh, but not tcl \
138+exec tclsh "$0" ${1+"$@"}
139+
140+package require Expect
141+
142 # xrlogin - rlogin but with current DISPLAY
143 #
144 # You can extend this idea to save any arbitrary information across rlogin