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