Accepting request 540243 from devel:languages:tcl
OBS-URL: https://build.opensuse.org/request/show/540243 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/expect?expand=0&rev=26
This commit is contained in:
commit
d8721c2657
3
expect-5.45.3.tar.gz
Normal file
3
expect-5.45.3.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c520717b7195944a69ce1492ec82ca0ac3f3baf060804e6c5ee6d505ea512be9
|
||||||
|
size 624919
|
@ -1,3 +1,39 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Nov 8 20:29:35 UTC 2017 - aavindraa@gmail.com
|
||||||
|
|
||||||
|
- New version 5.45.3:
|
||||||
|
* expect.c: On finding a full buffer during matching the sliding
|
||||||
|
window mechanism slides too far, truncating the whole buffer and
|
||||||
|
preventing matches across the boundary. Fix is shortening the
|
||||||
|
slide distance (slide only one 1/3).
|
||||||
|
* expect.c: Replaced a cc==0 check with proper Tcl_Eof() check.
|
||||||
|
- Includes changes from 5.45.2:
|
||||||
|
* configure: Extended Tcl header detection for OS X Mountain Lion.
|
||||||
|
* expect.c: Replaced memcpy with memmove to properly handle
|
||||||
|
overlapping memory.
|
||||||
|
- Includes changes from 5.45.1:
|
||||||
|
* exp_chan.c: Fix a problem when talking a tty where the writer
|
||||||
|
dies. Some operating systems report the condition as EIO with
|
||||||
|
nothing read, while this actually an EOF. Previously, returned
|
||||||
|
data was incomplete due to the error causing data in buffers to
|
||||||
|
be dropped.
|
||||||
|
* exp_chan.c: Fix a problem with the iteration over the expect
|
||||||
|
channel list where the loop code may modify the list, breaking
|
||||||
|
the iterator.
|
||||||
|
* Fixes for exp_chan.c and exp_command.h
|
||||||
|
* expect.c: Convert #bytes information to #chars to prevent later
|
||||||
|
code to fail when copying strings around and miscalculating how
|
||||||
|
much to copy, for strings containing non-ASCII utf chars.
|
||||||
|
* exp_inter.c: Hack access to TCL_REG_BOSONLY when not present,
|
||||||
|
became private with Tcl 8.5 and higher.
|
||||||
|
* expect.h: Remove the local fiddling with the memory allocation
|
||||||
|
and panic macros.
|
||||||
|
* example/unbuffer: Prevent unbuffer from swallowing exit code of
|
||||||
|
the command it ran (regular mode only, not -p)
|
||||||
|
* Various deduplications and cleanups
|
||||||
|
- cleanup with spec-cleaner
|
||||||
|
- use %make_install macro
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 17 09:01:09 UTC 2015 - max@suse.com
|
Fri Jul 17 09:01:09 UTC 2015 - max@suse.com
|
||||||
|
|
||||||
@ -48,7 +84,7 @@ Mon May 25 16:30:18 CEST 2009 - max@suse.de
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 14 18:31:49 CEST 2008 - max@suse.de
|
Tue Oct 14 18:31:49 CEST 2008 - max@suse.de
|
||||||
|
|
||||||
- Updagte to version 5.44.1.11 from CVS. The changes mainly consist
|
- Update to version 5.44.1.11 from CVS. The changes mainly consist
|
||||||
of our former expect-fixes.patch and expect-warnings.patch, plus
|
of our former expect-fixes.patch and expect-warnings.patch, plus
|
||||||
some more bug fixes, e.g. for the [expect -exact] crash reported
|
some more bug fixes, e.g. for the [expect -exact] crash reported
|
||||||
at bnc#427270 .
|
at bnc#427270 .
|
||||||
|
36
expect.spec
36
expect.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package expect
|
# spec file for package expect
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,23 +16,21 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Url: http://expect.nist.gov
|
|
||||||
|
|
||||||
Name: expect
|
Name: expect
|
||||||
BuildRequires: autoconf
|
Version: 5.45.3
|
||||||
BuildRequires: tcl-devel
|
|
||||||
Version: 5.45
|
|
||||||
Release: 0
|
Release: 0
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
Summary: A Tool for Automating Interactive Programs
|
Summary: A Tool for Automating Interactive Programs
|
||||||
License: SUSE-Public-Domain
|
License: SUSE-Public-Domain
|
||||||
Group: Development/Languages/Tcl
|
Group: Development/Languages/Tcl
|
||||||
Source: http://downloads.sourceforge.net/project/%{name}/Expect/%{version}/%{name}%{version}.tar.gz
|
Url: http://expect.nist.gov
|
||||||
|
Source: http://downloads.sourceforge.net/project/%{name}/Expect/%{version}/%{name}%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
||||||
Source1: expect-rpmlintrc
|
Source1: expect-rpmlintrc
|
||||||
Patch1: expect.patch
|
Patch1: expect.patch
|
||||||
Patch2: expect-fixes.patch
|
Patch2: expect-fixes.patch
|
||||||
Patch3: expect-log.patch
|
Patch3: expect-log.patch
|
||||||
Patch4: config-guess-sub-update.patch
|
Patch4: config-guess-sub-update.patch
|
||||||
|
BuildRequires: autoconf
|
||||||
|
BuildRequires: tcl-devel
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Expect is a tool primarily for automating interactive applications,
|
Expect is a tool primarily for automating interactive applications,
|
||||||
@ -70,31 +68,29 @@ autoreconf
|
|||||||
make %{?_smp_mflags} all pkglibdir=%_libdir/tcl/%name%version
|
make %{?_smp_mflags} all pkglibdir=%_libdir/tcl/%name%version
|
||||||
|
|
||||||
%check
|
%check
|
||||||
make test
|
make %{?_smp_mflags} test
|
||||||
|
|
||||||
%install
|
%install
|
||||||
# set the right path to the expect binary...
|
# set the right path to the expect binary...
|
||||||
sed -i \
|
sed -i \
|
||||||
-e '1s,^#![^ ]*expectk,#!/usr/bin/wish\npackage require Expect,' \
|
-e '1s,^#![^ ]*expectk,#!%_bindir/wish\npackage require Expect,' \
|
||||||
-e '1s,^#![^ ]*expect,#!/usr/bin/expect,' \
|
-e '1s,^#![^ ]*expect,#!%_bindir/expect,' \
|
||||||
example/*
|
example/*
|
||||||
make install DESTDIR=$RPM_BUILD_ROOT pkglibdir=%_libdir/tcl/%name%version
|
%make_install pkglibdir=%_libdir/tcl/%name%version
|
||||||
# Remove some executables and manpages we don't want to ship
|
# Remove some executables and manpages we don't want to ship
|
||||||
rm $RPM_BUILD_ROOT%_prefix/bin/*passwd
|
rm %buildroot%_bindir/*passwd
|
||||||
rm $RPM_BUILD_ROOT%_prefix/bin/weather
|
rm %buildroot%_bindir/weather
|
||||||
rm $RPM_BUILD_ROOT%_mandir/*/*passwd*
|
rm %buildroot%_mandir/*/*passwd*
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%_bindir/*
|
||||||
%_prefix/bin/*
|
|
||||||
%_libdir/tcl/*
|
%_libdir/tcl/*
|
||||||
%_libdir/lib*.so
|
%_libdir/lib*.so
|
||||||
%doc %_mandir/man1/*
|
%_mandir/man1/*
|
||||||
%doc ChangeLog HISTORY INSTALL FAQ NEWS README
|
%doc ChangeLog HISTORY INSTALL FAQ NEWS README
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
|
||||||
%_includedir/*
|
%_includedir/*
|
||||||
%doc %_mandir/man3/*
|
%_mandir/man3/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b28dca90428a3b30e650525cdc16255d76bb6ccd65d448be53e620d95d5cc040
|
|
||||||
size 628808
|
|
Loading…
Reference in New Issue
Block a user