6b7353
%{!?tcl_version: %global tcl_version %(echo 'puts $tcl_version' | tclsh)}
6b7353
%{!?tcl_sitearch: %global tcl_sitearch %{_libdir}/tcl%{tcl_version}}
6b7353
%global majorver 5.45.4
6b7353
6b7353
Summary: A program-script interaction and testing utility
6b7353
Name: expect
6b7353
Version: %{majorver}
6b7353
Release: 5%{?dist}
6b7353
License: Public Domain
6b7353
URL: https://core.tcl.tk/expect/index
6b7353
Source: http://downloads.sourceforge.net/%{name}/%{name}%{version}.tar.gz
6b7353
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
6b7353
Buildrequires: tcl-devel autoconf automake chrpath
6b7353
# Patch0: fixes change log file permissions
6b7353
Patch0: expect-5.43.0-log_file.patch
6b7353
# Patch1: fixes install location, change pkgIndex
6b7353
Patch1: expect-5.43.0-pkgpath.patch
6b7353
# Patch2: fixes minor man page formatting issue
6b7353
Patch2: expect-5.45-man-page.patch
6b7353
# Patch3: fixes segmentation fault during matching characters
6b7353
Patch3: expect-5.45-match-gt-numchars-segfault.patch
6b7353
# Patch4: fixes memory leak when using -re, http://sourceforge.net/p/expect/patches/13/
6b7353
Patch4: expect-5.45-re-memleak.patch
6b7353
# Patch5: use vsnprintf instead of vsprintf to avoid buffer overflow
6b7353
Patch5: expect-5.45-exp-log-buf-overflow.patch
6b7353
# Patch6: fixes segfaults if Tcl is built with stubs and Expect is used directly
6b7353
#   from C program rhbz#1091060
6b7353
Patch6: expect-5.45-segfault-with-stubs.patch
6b7353
# Patch7: fixes leaked fd, patch by Matej Mužila, rhbz#1001220
6b7353
Patch7: expect-5.45-fd-leak.patch
6b7353
# Patch8: unificates usage message of expect binary and man page, adds -h flag
6b7353
Patch8: expect-5.45.4-unification-of-usage-and-man-page.patch
6b7353
# Patch9: fixes issues detected by static analysis
6b7353
Patch9: expect-5.45.4-covscan-fixes.patch
6b7353
# examples patches
6b7353
# Patch100: changes random function
6b7353
Patch100: expect-5.32.2-random.patch
6b7353
# Patch101: fixes bz674184 - mkpasswd fails randomly
6b7353
Patch101: expect-5.45-mkpasswd-dash.patch
6b7353
# Patch102: fixes bz703702 - let user know that telnet is needed for
6b7353
# running some examples
6b7353
Patch102: expect-5.45-check-telnet.patch
6b7353
# Patch103: use full path to 'su', it's safer
6b7353
Patch103: expect-5.45-passmass-su-full-path.patch
6b7353
# Patch104: rhbz 963889, fixes inaccuracy in mkpasswd man page
6b7353
Patch104: expect-5.45-mkpasswd-man.patch
6b7353
# Patch105: Fix error with -Werror=format-security
6b7353
Patch105: expect-5.45-format-security.patch
6b7353
6b7353
%description
6b7353
Expect is a tcl application for automating and testing
6b7353
interactive applications such as telnet, ftp, passwd, fsck,
6b7353
rlogin, tip, etc. Expect makes it easy for a script to
6b7353
control another program and interact with it.
6b7353
6b7353
This package contains expect and some scripts that use it.
6b7353
6b7353
%package devel
6b7353
Summary: A program-script interaction and testing utility
6b7353
Requires: expect = %{version}-%{release}
6b7353
6b7353
%description devel
6b7353
Expect is a tcl application for automating and testing
6b7353
interactive applications such as telnet, ftp, passwd, fsck,
6b7353
rlogin, tip, etc. Expect makes it easy for a script to
6b7353
control another program and interact with it.
6b7353
6b7353
This package contains development files for the expect library.
6b7353
6b7353
%package -n expectk
6b7353
Summary: A program-script interaction and testing utility
6b7353
Requires: expect = %{version}-%{release}
6b7353
6b7353
%description -n expectk
6b7353
Expect is a tcl application for automating and testing
6b7353
interactive applications such as telnet, ftp, passwd, fsck,
6b7353
rlogin, tip, etc. Expect makes it easy for a script to
6b7353
control another program and interact with it.
6b7353
6b7353
This package originally contained expectk and some scripts
6b7353
that used it. As expectk was removed from upstream tarball
6b7353
in expect-5.45, now the package contains just these scripts.
6b7353
Please use tclsh with package require Tk and Expect instead
6b7353
of expectk.
6b7353
6b7353
%prep
6b7353
%setup -q -n expect%{version}
6b7353
%patch0 -p1 -b .log_file
6b7353
%patch1 -p1 -b .pkgpath
6b7353
%patch2 -p1 -b .man-page
6b7353
%patch3 -p1 -b .match-gt-numchars-segfault
6b7353
%patch4 -p1 -b .re-memleak
6b7353
%patch5 -p1 -b .exp-log-buf-overflow
6b7353
%patch6 -p1 -b .segfault-with-stubs
6b7353
%patch7 -p1 -b .fd-leak
6b7353
%patch8 -p1 -b .unification-of-usage-and-man-page
6b7353
%patch9 -p1 -b .covscan-fixes
6b7353
# examples fixes
6b7353
%patch100 -p1 -b .random
6b7353
%patch101 -p1 -b .mkpasswd-dash
6b7353
%patch102 -p1 -b .check-telnet
6b7353
%patch103 -p1 -b .passmass-su-full-path
6b7353
%patch104 -p1 -b .mkpasswd-man
6b7353
%patch105 -p0 -b .format-security
6b7353
# -pkgpath.patch touch configure.in
6b7353
aclocal
6b7353
autoconf
6b7353
( cd testsuite
6b7353
  autoconf -I.. )
6b7353
6b7353
%build
6b7353
%configure --with-tcl=%{_libdir} --with-tk=%{_libdir} --enable-shared \
6b7353
	--with-tclinclude=%{_includedir}/tcl-private/generic
6b7353
make %{?_smp_mflags}
6b7353
6b7353
%check
6b7353
make test
6b7353
6b7353
%install
6b7353
rm -rf "$RPM_BUILD_ROOT"
6b7353
make install DESTDIR="$RPM_BUILD_ROOT"
6b7353
6b7353
# move
6b7353
mv "$RPM_BUILD_ROOT"%{tcl_sitearch}/expect%{version}/libexpect%{version}.so "$RPM_BUILD_ROOT"%{_libdir}
6b7353
6b7353
# for linking with -lexpect
6b7353
ln -s libexpect%{majorver}.so "$RPM_BUILD_ROOT"%{_libdir}/libexpect.so
6b7353
6b7353
# remove cryptdir/decryptdir, as Linux has no crypt command (bug 6668).
6b7353
rm -f "$RPM_BUILD_ROOT"%{_bindir}/{cryptdir,decryptdir}
6b7353
rm -f "$RPM_BUILD_ROOT"%{_mandir}/man1/{cryptdir,decryptdir}.1*
6b7353
rm -f "$RPM_BUILD_ROOT"%{_bindir}/autopasswd
6b7353
6b7353
# remove rpath
6b7353
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/libexpect%{version}.so
6b7353
6b7353
%clean
6b7353
rm -rf "$RPM_BUILD_ROOT"
6b7353
6b7353
6b7353
%files
6b7353
%defattr(-,root,root,-)
6b7353
%doc FAQ HISTORY NEWS README
6b7353
%{_bindir}/expect
6b7353
%{_bindir}/autoexpect
6b7353
%{_bindir}/dislocate
6b7353
%{_bindir}/ftp-rfc
6b7353
%{_bindir}/kibitz
6b7353
%{_bindir}/lpunlock
6b7353
%{_bindir}/mkpasswd
6b7353
%{_bindir}/passmass
6b7353
%{_bindir}/rftp
6b7353
%{_bindir}/rlogin-cwd
6b7353
%{_bindir}/timed-read
6b7353
%{_bindir}/timed-run
6b7353
%{_bindir}/unbuffer
6b7353
%{_bindir}/weather
6b7353
%{_bindir}/xkibitz
6b7353
%dir %{tcl_sitearch}/expect%{version}
6b7353
%{tcl_sitearch}/expect%{version}/pkgIndex.tcl
6b7353
%{_libdir}/libexpect%{version}.so
6b7353
%{_libdir}/libexpect.so
6b7353
%{_mandir}/man1/autoexpect.1.gz
6b7353
%{_mandir}/man1/dislocate.1.gz
6b7353
%{_mandir}/man1/expect.1.gz
6b7353
%{_mandir}/man1/kibitz.1.gz
6b7353
%{_mandir}/man1/mkpasswd.1.gz
6b7353
%{_mandir}/man1/passmass.1.gz
6b7353
%{_mandir}/man1/unbuffer.1.gz
6b7353
%{_mandir}/man1/xkibitz.1.gz
6b7353
6b7353
%files devel
6b7353
%defattr(-,root,root,-)
6b7353
%{_mandir}/man3/libexpect.3*
6b7353
%{_includedir}/*
6b7353
6b7353
%files -n expectk
6b7353
%defattr(-,root,root,-)
6b7353
%{_bindir}/multixterm
6b7353
%{_bindir}/tknewsbiff
6b7353
%{_bindir}/tkpasswd
6b7353
%{_bindir}/xpstat
6b7353
%{_mandir}/man1/multixterm.1*
6b7353
%{_mandir}/man1/tknewsbiff.1*
6b7353
6b7353
%changelog
6b7353
* Thu Nov 29 2018 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.45.4-5
6b7353
- Fix issues detected by static analysis
6b7353
  Resolves: #1602490
6b7353
6b7353
* Thu Oct 18 2018 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.45.4-4
6b7353
- Unificate and improve both man page and usage message of expect
6b7353
  Resolves: #1612588
6b7353
6b7353
* Wed Jun 27 2018 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.45.4-3
6b7353
- Fix wrong log file permissions
6b7353
6b7353
* Wed Jun 20 2018 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.45.4-2
6b7353
- Fix upstream URL
6b7353
6b7353
* Tue Feb 06 2018 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.45.4-1
6b7353
- New upstream release 5.45.4
6b7353
  Resolves: #1541735
6b7353
6b7353
* Mon Oct 23 2017 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.45.3-1
6b7353
- New upstream release 5.45.3
6b7353
  Resolves: #1503372
6b7353
- Removed 'Group' tag from spec file
6b7353
6b7353
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.45-28
6b7353
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
6b7353
6b7353
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.45-27
6b7353
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
6b7353
6b7353
* Mon Apr 24 2017 Nils Philippsen <nils@redhat.com> - 5.45-26
6b7353
- remove unnecessary tk-devel and libXft-devel build dependencies
6b7353
6b7353
* Tue Mar 28 2017 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.45-25
6b7353
- tknewsbiff man page should be only in expectk - removed its duplicate
6b7353
  from expect package
6b7353
6b7353
* Fri Mar 24 2017 Stephen Gallagher <sgallagh@redhat.com> - 5.45-24
6b7353
- Fix build failures with -Werror=format-security
6b7353
6b7353
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.45-23
6b7353
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
6b7353
6b7353
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 5.45-22
6b7353
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
6b7353
6b7353
* Tue Jan 05 2016 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.45-21
6b7353
- Replace 'define' with 'global'
6b7353
6b7353
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.45-20
6b7353
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
6b7353
6b7353
* Wed May 20 2015 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.45-19
6b7353
- Use different and probably better approach of fixing segfaults if Tcl is
6b7353
  built with stubs and Expect is used directly from C program
6b7353
6b7353
* Tue Sep 09 2014 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.45-18
6b7353
- Fix leaked fd (patch by Matej Mužila)
6b7353
  Resolves: #1001220
6b7353
6b7353
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.45-17
6b7353
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
6b7353
6b7353
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.45-16
6b7353
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
6b7353
6b7353
* Wed May 21 2014 Jaroslav Škarvada <jskarvad@redhat.com> - 5.45-15
6b7353
- Rebuilt for https://fedoraproject.org/wiki/Changes/f21tcl86
6b7353
6b7353
* Mon Apr 28 2014 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.45-14
6b7353
- Fix segfaults if Tcl is built with stubs and Expect is used directly from C program
6b7353
  (patch taken from Debian project, written by Sergei Golovan)
6b7353
6b7353
* Thu Dec 12 2013 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.45-13
6b7353
- Use vsnprintf instead of vsprintf to avoid buffer overflow
6b7353
  (it happens e.g. when running systemtap testsuite)
6b7353
6b7353
* Wed Oct 02 2013 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.45-12
6b7353
- Fix memory leak when using -re option
6b7353
6b7353
* Tue Aug 27 2013 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.45-11
6b7353
- Fix inaccuracy in mkpasswd man page
6b7353
  Resolves: #963889
6b7353
6b7353
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.45-10
6b7353
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
6b7353
6b7353
* Thu Apr 04 2013 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.45-9
6b7353
- Fix repeated words in man pages
6b7353
6b7353
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.45-8
6b7353
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
6b7353
6b7353
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.45-7
6b7353
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
6b7353
6b7353
* Mon Feb 06 2012 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.45-6
6b7353
- Fix character matching to avoid segmentation fault
6b7353
- Move libexpect link out of -devel subpackage
6b7353
6b7353
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.45-5
6b7353
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
6b7353
6b7353
* Tue Sep 06 2011 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.45-4
6b7353
- Let user know when expample script needs telnet and it is missing
6b7353
  Resolves: #703702
6b7353
- Use full path to 'su' in passmass example, it's safer
6b7353
- Fix expect man page minor formatting issue
6b7353
6b7353
* Wed Mar 16 2011 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.45-3
6b7353
- Fix mkpasswd fails randomly
6b7353
  Resolves: #674184
6b7353
6b7353
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.45-2
6b7353
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
6b7353
6b7353
* Tue Jan 18 2011 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.45-1
6b7353
- Update to expect-5.45
6b7353
6b7353
* Wed Mar 10 2010 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.44.1.15-1
6b7353
- Update to 5.44.1.15 from upstream CVS
6b7353
  Resolves: #528654, Resolves: #501820
6b7353
- Remove config.sub (no longer needed), remove unused patches (few are
6b7353
  upstream now, few are pointless with new version), comment patches
6b7353
- Fix unbuffer to return exit code of ubuffered program
6b7353
  Resolves: #547686
6b7353
- Fix Tk initialization
6b7353
  Resolves: #456738
6b7353
6b7353
* Mon Aug 10 2009 Ville Skyttä <ville.skytta@iki.fi> - 5.43.0-19
6b7353
- Use bzipped upstream tarball.
6b7353
6b7353
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.43.0-18
6b7353
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
6b7353
6b7353
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.43.0-17
6b7353
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
6b7353
6b7353
* Wed Feb 11 2009 Vitezslav Crhonek <vcrhonek@redhat.com> - 5:43.0-16
6b7353
- Modify and rebuild for new Tcl
6b7353
6b7353
* Thu Sep 25 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 5:43.0-15
6b7353
- Rediff all patches to work with patch --fuzz=0
6b7353
6b7353
* Mon Jun  9 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 5:43.0-14
6b7353
- Use latest config.sub file for package build
6b7353
  Resolves: #449560
6b7353
6b7353
* Mon Feb 11 2008 Vitezslav Crhonek <vcrhonek@redhat.com> - 5:43.0-13
6b7353
- Rebuild
6b7353
6b7353
* Mon Jan 14 2008 Wart <wart@kobold.org> - 5.43.0-12
6b7353
- Update install locations to reflect updated auto_path in the tcl 8.5 package
6b7353
6b7353
* Mon Jan 07 2008 Adam Tkac <atkac redhat com> - 5.43.0-11
6b7353
- updated "tcl8.5" patch
6b7353
6b7353
* Sat Jan  5 2008 Alex Lancaster <alexlan[AT]fedoraproject org> - 5.43.0-10
6b7353
- Rebuild for new Tcl 8.5
6b7353
6b7353
* Thu Aug 23 2007 Vitezslav Crhonek <vcrhonek@redhat.com> - 5.43.0-9
6b7353
- rebuild
6b7353
6b7353
* Sat Feb 10 2007 Jakub Jelinek <jakub@redhat.com> - 5.43.0-8
6b7353
- Update to build this time with Tcl 8.4
6b7353
6b7353
* Thu Feb  8 2007 Miloslav Trmac <mitr@redhat.com> - 5.43.0-7
6b7353
- s/%%{buildroot}/"$RPM_BUILD_ROOT"/g
6b7353
- s,/usr/share/man,%%{_mandir},g
6b7353
- Use the Fedora-specified Buildroot:
6b7353
- Remove BuildRequires: libX11-devel
6b7353
- Don't install pkgIndex.tcl as an executable file
6b7353
- Drop the incorrect expect-5.32.2-fixcat.patch
6b7353
- Remove comments from *.h.in because they confuse config.status; this makes
6b7353
  the workaround expect-5.43.0-cfg-setpgrp.patch unnecesary.
6b7353
6b7353
* Sat Feb  3 2007 Miloslav Trmac <mitr@redhat.com> - 5.43.0-6
6b7353
- Update to build with Tcl 8.5
6b7353
- Drop static libraries
6b7353
- Ship more documentation
6b7353
- Use %%check for (make test), remove the conditional
6b7353
6b7353
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 5.43.0-5.1
6b7353
- rebuild
6b7353
6b7353
* Mon May 15 2006 David Cantrell <dcantrell@redhat.com> - 5.43.0-5
6b7353
- BuildRequires libX11-devel
6b7353
6b7353
* Fri Feb 24 2006 David Cantrell <dcantrell@redhat.com> - 5.43.0-4
6b7353
- Patch expLogChannelOpen() to create files with 0666 permissions (#182724)
6b7353
6b7353
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 5.43.0-3.1
6b7353
- bump again for double-long bug on ppc(64)
6b7353
6b7353
* Tue Feb 07 2006 David Cantrell <dcantrell@redhat.com> - 5.43.0-3
6b7353
- Rebuilt
6b7353
6b7353
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
6b7353
- rebuilt
6b7353
6b7353
* Tue May 31 2005 Jens Petersen <petersen@redhat.com> - 5.43.0-2
6b7353
- fix flushing of unbuffer script (Charles Sullivan, #143963)
6b7353
  with unbuffer-child-flush-143963.patch (Don Libes)
6b7353
- make autoconf include parent dir in testsuite to avoid error
6b7353
  (Robert Scheck, 150369)
6b7353
- separate the examples scripts patches from the rest
6b7353
6b7353
* Mon Mar  7 2005 Jens Petersen <petersen@redhat.com>
6b7353
- replace expect-5.32.2-setpgrp.patch by expect-5.43.0-cfg-setpgrp.patch
6b7353
  to set SETPGRP_VOID correctly
6b7353
6b7353
* Mon Mar  7 2005 Jens Petersen <petersen@redhat.com> - 5.43.0-1
6b7353
- run test make target by default
6b7353
  - can be turned off with --without check
6b7353
6b7353
* Sat Mar 05 2005 Robert Scheck <redhat@linuxnetz.de>
6b7353
- update to 5.43.0 (150369)
6b7353
  - no longer need expect-5.39.0-64bit-82547.patch,
6b7353
    expect-5.38.0-autopasswd-9917.patch
6b7353
    and expect-5.42-mkpasswd-verbose-user-141454.patch
6b7353
- run aclocal and configure with current autoconf (116777)
6b7353
  - buildrequire autoconf and automake instead of autoconf213
6b7353
6b7353
* Fri Dec  3 2004 Jens Petersen <petersen@redhat.com> - 5.42.1-2
6b7353
- fix "mkpasswd -v" failure when user not specified with
6b7353
  expect-5.42-mkpasswd-verbose-user-141454.patch (J F Wheeler, 141454)
6b7353
6b7353
* Thu Aug  5 2004 Jens Petersen <petersen@redhat.com> - 5.42.1-1
6b7353
- update to 5.42.1 (Robert Scheck, 126536)
6b7353
  - no longer need expect-5.32.2-kibitz.patch
6b7353
  - update expect-5.38.0-autopasswd-9917.patch
6b7353
- drop explicit tcl and tk requires
6b7353
6b7353
* Mon Jun 21 2004 Alan Cox <alan@redhat.com>
6b7353
- Autopasswd doesnt work and isnt ever going to work with pam around
6b7353
  since password setting depends on the modules in use (think "fingerprint"
6b7353
  or "smartcard"..). Remove it.
6b7353
6b7353
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
6b7353
- rebuilt
6b7353
6b7353
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
6b7353
- rebuilt
6b7353
6b7353
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
6b7353
- rebuilt
6b7353
6b7353
* Fri Nov 28 2003 Jens Petersen <petersen@redhat.com> - 5.39.0-95
6b7353
- new package split out from tcltk
6b7353
- build against installed tcl and tk
6b7353
- filtered changelog for expect
6b7353
- buildrequire autoconf213 (#110583) [mvd@mylinux.com.ua]
6b7353
6b7353
* Mon Nov 17 2003 Thomas Woerner <twoerner@redhat.com> 8.3.5-94
6b7353
- fixed RPATH for expect and expectk: expect-5.39.0-libdir.patch
6b7353
6b7353
* Wed Oct 15 2003 Jens Petersen <petersen@redhat.com> - 8.3.5-93
6b7353
- update expect to 5.39.0 (fixes #58317)
6b7353
- drop first hunk of 64bit patch and rename to expect-5.39.0-64bit-82547.patch
6b7353
- expect-5.32.2-weather.patch and expect-5.32.2-expectk.patch no longer needed
6b7353
6b7353
* Wed Sep 17 2003 Matt Wilson <msw@redhat.com> 8.3.5-92
6b7353
- rebuild again for #91211
6b7353
6b7353
* Wed Sep 17 2003 Matt Wilson <msw@redhat.com> 8.3.5-91
6b7353
- rebuild to fix gzipped file md5sums (#91211)
6b7353
6b7353
* Fri Jul 04 2003 Jens Petersen <petersen@redhat.com> - 8.3.5-90
6b7353
- make sure expect and itcl are linked against buildroot not installroot libs
6b7353
6b7353
* Tue Jan 28 2003 Jens Petersen <petersen@redhat.com> - 8.3.5-87
6b7353
- bring back expect alpha patch, renamed to 64bit patch (#82547)
6b7353
6b7353
* Fri Jan 17 2003 Jens Petersen <petersen@redhat.com> - 8.3.5-85
6b7353
- add some requires
6b7353
6b7353
* Tue Jan 14 2003 Jens Petersen <petersen@redhat.com> - 8.3.5-84
6b7353
- drop synthetic lib provides
6b7353
- remove obsolete patches from srpm
6b7353
- update buildrequires
6b7353
- use buildroot instead of RPM_BUILD_ROOT
6b7353
- install all man pages under mandir, instead of moving some from /usr/man
6b7353
- introduce _genfilelist macro for clean single-sweep find filelist generation
6b7353
  for each package
6b7353
- use perl to remove buildroot prefix from filelists
6b7353
6b7353
* Tue Jan  7 2003 Jeff Johnson <jbj@redhat.com> 8.3.5-80
6b7353
- rebuild to generate deps for4 DSO's w/o DT_SONAME correctly.
6b7353
6b7353
* Sat Jan  4 2003 Jeff Johnson <jbj@redhat.com> 8.3.5-79
6b7353
- set execute bits on library so that requires are generated.
6b7353
6b7353
* Tue Dec 10 2002 Jens Petersen <petersen@redhat.com> 8.3.5-78
6b7353
- make lib symlinks to .so not .so.0
6b7353
6b7353
* Mon Dec  9 2002 Jens Petersen <petersen@redhat.com> 8.3.5-76
6b7353
- make it build on x86_64 (details below)
6b7353
- add 100 to expect patches
6b7353
- patch expect configure to get EXP_LIB_SPEC to use libdir
6b7353
- don't explicitly update config.{guess,sub} since %%configure does it for us
6b7353
- added "--without check" rpmbuild option to disable running tests in future
6b7353
- generate filelists from datadir and not from mandir from now on
6b7353
6b7353
* Tue Dec  3 2002 Jens Petersen <petersen@redhat.com>
6b7353
- build without all makecfg patches for now
6b7353
  - in particular use upstream versioned library name convention
6b7353
- add backward compatible lib symlinks for now
6b7353
- add unversioned symlinks for versioned bindir files
6b7353
- use make's -C option rather than jumping in and out of source dirs
6b7353
  during install
6b7353
- use INSTALL_ROOT destdir-like make variable instead of makeinstall
6b7353
  for all subpackages except tix and itcl
6b7353
6b7353
* Mon Oct 21 2002 Jens Petersen <petersen@redhat.com>
6b7353
- move expectk and expect-devel files out of expect into separate packages
6b7353
  (#9832)
6b7353
- drop the crud compat dir symlinks in libdir
6b7353
- correct expect license
6b7353
- don't explicitly provide 64bit libs on ia64 and sparc64
6b7353
6b7353
* Tue Aug 20 2002 Jens Petersen <petersen@redhat.com> 8.3.3-74
6b7353
- fix compat symlink from /usr/lib/expect (#71606)
6b7353
6b7353
* Wed Aug 14 2002 Jens Petersen <petersen@redhat.com> 8.3.3-73
6b7353
- update to expect spawn patch from hjl@gnu.org (bug 43310)
6b7353
6b7353
* Tue Aug 13 2002 Jens Petersen <petersen@redhat.com> 8.3.3-72
6b7353
- update expect to 5.38.0
6b7353
- fixes #71113 (reported by yarnall@lvc.edu)
6b7353
6b7353
* Mon Jan 07 2002 Florian La Roche <Florian.LaRoche@redhat.de>
6b7353
- quick hack to have a correct setpgrp() call in expect
6b7353
- fix config.guess and config.sub to newer versions
6b7353
6b7353
* Tue Aug 28 2001 Adrian Havill <havill@redhat.com>
6b7353
- expect's fixline1 busted for expectk scripts (tkpasswd/tknewsbiff/tkterm)
6b7353
6b7353
* Wed Aug  8 2001 Adrian Havill <havill@redhat.com>
6b7353
- re-enable glibc string and math inlines; recent gcc is a-ok.
6b7353
- optimize at -O2 instead of -O
6b7353
- rename "soname" patches related to makefile/autoconf changes
6b7353
6b7353
* Wed Jul 25 2001 Adrian Havill <havill@redhat.com>
6b7353
- fixed 64 bit RPM provides for dependencies
6b7353
6b7353
* Thu Jul 19 2001 Adrian Havill <havill@redhat.com>
6b7353
- used %%makeinstall to brute force fix any remaining unflexible makefile dirs
6b7353
- improved randomness of expect's mkpasswd script via /dev/random (bug 9507)
6b7353
- revert --enable-threads, linux is (still) not ready (yet) (bug 49251)
6b7353
6b7353
* Sun Jul  8 2001 Adrian Havill <havill@redhat.com>
6b7353
- refresh all sources to latest stable (TODO: separate expect/expectk)
6b7353
- massage out some build stuff to patches (TODO: libtoolize hacked constants)
6b7353
- remove patches already rolled into the upstream
6b7353
- removed RPATH (bugs 45569, 46085, 46086), added SONAMEs to ELFs
6b7353
- changed shared object filenames to something less gross
6b7353
- reenable threads which seem to work now
6b7353
- fixed spawn/eof read problem with expect (bug 43310)
6b7353
- made compile-friendly for IA64
6b7353
6b7353
* Fri Mar 23 2001 Bill Nottingham <notting@redhat.com>
6b7353
- bzip2 sources
6b7353
6b7353
* Mon Mar 19 2001 Bill Nottingham <notting@redhat.com>
6b7353
- build with -D_GNU_SOURCE - fixes expect on ia64
6b7353
6b7353
* Mon Mar 19 2001 Preston Brown <pbrown@redhat.com>
6b7353
- build fix from ahavill.
6b7353
6b7353
* Wed Feb 21 2001 Tim Powers <timp@redhat.com>
6b7353
- fixed weather expect script using wrong server (#28505)
6b7353
6b7353
* Tue Feb 13 2001 Adrian Havill <havill@redhat.com>
6b7353
- rebuild so make check passes
6b7353
6b7353
* Fri Oct 20 2000 Than Ngo <than@redhat.com>
6b7353
- rebuild with -O0 on alpha (bug #19461)
6b7353
6b7353
* Thu Aug 17 2000 Jeff Johnson <jbj@redhat.com>
6b7353
- summaries from specspo.
6b7353
6b7353
* Thu Jul 27 2000 Jeff Johnson <jbj@redhat.com>
6b7353
- rebuild against "working" util-linux col.
6b7353
6b7353
* Fri Jun 16 2000 Jeff Johnson <jbj@redhat.com>
6b7353
- don't mess with %%{_libdir}, it's gonna be a FHS pita.
6b7353
6b7353
* Fri Jun  2 2000 Jeff Johnson <jbj@redhat.com>
6b7353
- FHS packaging changes.
6b7353
- revert --enable-threads, linux is not ready (yet) (#11789).
6b7353
- expect: update to 5.31.7+ (#11595).
6b7353
6b7353
* Sat Mar 18 2000 Jeff Johnson <jbj@redhat.com>
6b7353
- update to (tcl,tk}-8.2.3, expect-5.31, and itcl-3.1.0, URL's as well.
6b7353
- use perl to drill out pre-pended RPM_BUILD_ROOT.
6b7353
- configure with --enable-threads (experimental).
6b7353
- autopasswd needs to handle password starting with hyphen (#9917).
6b7353
- handle 553 ftp status in rftp expect script (#7869).
6b7353
- remove cryptdir/decryptdir, as Linux has not crypt command (#6668).
6b7353
- correct hierarchy spelling (#7082).
6b7353
- fix "expect -d ...", format string had int printed as string (#7775).
6b7353
6b7353
* Tue Mar  7 2000 Jeff Johnson <jbj@redhat.com>
6b7353
- rebuild for sparc baud rates > 38400.
6b7353
6b7353
* Mon Feb  7 2000 Bill Nottingham <notting@redhat.com>
6b7353
- handle compressed manpages
6b7353
6b7353
* Thu Feb 03 2000 Elliot Lee <sopwith@redhat.com>
6b7353
- Make changes from bug number 7602
6b7353
- Apply patch from bug number 7537
6b7353
- Apply fix from bug number 7157
6b7353
- Add fixes from bug #7601 to the runtcl patch
6b7353
6b7353
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
6b7353
- fix descriptions
6b7353
- man pages are compressed (whatapain)
6b7353
6b7353
* Tue Nov 30 1999 Jakub Jelinek <jakub@redhat.com>
6b7353
- compile on systems where SIGPWR == SIGLOST.
6b7353
6b7353
* Thu Apr  8 1999 Jeff Johnson <jbj@redhat.com>
6b7353
- use /usr/bin/write in kibitz (#1320).
6b7353
- use cirrus.sprl.umich.edu in weather (#1926).
6b7353
6b7353
* Tue Feb 16 1999 Jeff Johnson <jbj@redhat.com>
6b7353
- expect does unaligned access on alpha (#989)
6b7353
- upgrade expect to 5.28.
6b7353
6b7353
* Tue Jan 12 1999 Cristian Gafton <gafton@redhat.com>
6b7353
- call libtoolize to allow building on the arm
6b7353
- build for glibc 2.1
6b7353
- strip binaries
6b7353
6b7353
* Thu Sep 10 1998 Jeff Johnson <jbj@redhat.com>
6b7353
- update tcl/tk/tclX to 8.0.3, expect is updated also.
6b7353
6b7353
* Mon Jun 29 1998 Jeff Johnson <jbj@redhat.com>
6b7353
- expect: mkpasswd needs delay before sending password (problem #576)
6b7353
6b7353
* Thu May 07 1998 Prospector System <bugs@redhat.com>
6b7353
- translations modified for de, fr, tr
6b7353
6b7353
* Sat May 02 1998 Cristian Gafton <gafton@redhat.com>
6b7353
- fixed expect binaries exec permissions
6b7353
6b7353
* Wed Oct 22 1997 Otto Hammersmith <otto@redhat.com>
6b7353
- fixed src urls
6b7353
6b7353
* Mon Oct 06 1997 Erik Troan <ewt@redhat.com>
6b7353
- removed version numbers from descriptions
6b7353
6b7353
* Mon Sep 22 1997 Erik Troan <ewt@redhat.com>
6b7353
- updated to tcl/tk 8.0 and related versions of packages
6b7353
6b7353
* Tue Jun 17 1997 Erik Troan <ewt@redhat.com>
6b7353
- built against glibc
6b7353
- fixed dangling tclx/tkx symlinks