Blame SPECS/tcl.spec

ae5dd1
%define majorver 8.5
ae5dd1
%define	vers %{majorver}.13
ae5dd1
%{!?sdt:%define sdt 1}
ae5dd1
ae5dd1
Summary: Tool Command Language, pronounced tickle
ae5dd1
Name: tcl
ae5dd1
Version: %{vers}
2e5d8e
Release: 8%{?dist}
ae5dd1
Epoch: 1
ae5dd1
License: TCL
ae5dd1
Group: Development/Languages
ae5dd1
URL: http://tcl.sourceforge.net/
ae5dd1
Source0: http://downloads.sourceforge.net/sourceforge/tcl/tcl%{version}-src.tar.gz
ae5dd1
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
ae5dd1
Buildrequires: autoconf
ae5dd1
Provides: tcl(abi) = %{majorver}
ae5dd1
Obsoletes: tcl-tcldict <= %{vers}
ae5dd1
Provides: tcl-tcldict = %{vers}
ae5dd1
Patch0: tcl-8.5.1-autopath.patch
ae5dd1
Patch1: tcl-8.5.10-conf.patch
ae5dd1
Patch2: tcl-8.5.12-hidden.patch
2e5d8e
Patch3: tcl-8.5.13-notifier-thread-fork-fix.patch
ae5dd1
ae5dd1
%if %sdt
ae5dd1
BuildRequires: systemtap-sdt-devel
ae5dd1
%endif
ae5dd1
ae5dd1
%description
ae5dd1
The Tcl (Tool Command Language) provides a powerful platform for
ae5dd1
creating integration applications that tie together diverse
ae5dd1
applications, protocols, devices, and frameworks. When paired with the
ae5dd1
Tk toolkit, Tcl provides a fastest and powerful way to create
ae5dd1
cross-platform GUI applications.  Tcl can also be used for a variety
ae5dd1
of web-related tasks and for creating powerful command languages for
ae5dd1
applications.
ae5dd1
ae5dd1
%package devel
ae5dd1
Summary: Tcl scripting language development environment
ae5dd1
Group: Development/Languages
ae5dd1
Requires: %{name} = %{epoch}:%{version}-%{release}
ae5dd1
ae5dd1
%description devel
ae5dd1
The Tcl (Tool Command Language) provides a powerful platform for
ae5dd1
creating integration applications that tie together diverse
ae5dd1
applications, protocols, devices, and frameworks. When paired with the
ae5dd1
Tk toolkit, Tcl provides a fastest and powerful way to create
ae5dd1
cross-platform GUI applications.  Tcl can also be used for a variety
ae5dd1
of web-related tasks and for creating powerful command languages for
ae5dd1
applications.
ae5dd1
ae5dd1
The package contains the development files and man pages for tcl.
ae5dd1
ae5dd1
%prep
ae5dd1
%setup -q -n %{name}%{version}
ae5dd1
chmod -x generic/tclThreadAlloc.c
ae5dd1
ae5dd1
%patch0 -p1 -b .autopath
ae5dd1
%patch1 -p1 -b .conf
ae5dd1
%patch2 -p1 -b .hidden
2e5d8e
%patch3 -p1 -b .notifier-thread-fork-fix
ae5dd1
ae5dd1
%build
ae5dd1
pushd unix
2e5d8e
autoconf -f
ae5dd1
%configure \
ae5dd1
%if %sdt
ae5dd1
--enable-dtrace \
ae5dd1
%endif
2e5d8e
--enable-threads \
ae5dd1
--enable-symbols \
ae5dd1
--enable-shared
ae5dd1
ae5dd1
make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" TCL_LIBRARY=%{_datadir}/%{name}%{majorver}
ae5dd1
ae5dd1
%check
ae5dd1
%{?_without_check: %define _without_check 1}
ae5dd1
%{!?_without_check: %define _without_check 0}
ae5dd1
ae5dd1
%if ! %{_without_check}
ae5dd1
  cd unix
ae5dd1
  make test
ae5dd1
%endif
ae5dd1
ae5dd1
%install
ae5dd1
rm -rf $RPM_BUILD_ROOT
ae5dd1
make install -C unix INSTALL_ROOT=$RPM_BUILD_ROOT TCL_LIBRARY=%{_datadir}/%{name}%{majorver}
ae5dd1
ae5dd1
ln -s tclsh%{majorver} $RPM_BUILD_ROOT%{_bindir}/tclsh
ae5dd1
ae5dd1
# for linking with -lib%%{name}
ae5dd1
ln -s lib%{name}%{majorver}.so $RPM_BUILD_ROOT%{_libdir}/lib%{name}.so
ae5dd1
ae5dd1
mkdir -p $RPM_BUILD_ROOT/%{_libdir}/%{name}%{majorver}
ae5dd1
ae5dd1
# postgresql and maybe other packages too need tclConfig.sh
ae5dd1
# paths don't look at /usr/lib for efficiency, so we symlink into tcl8.5 for now
ae5dd1
ln -s %{_libdir}/%{name}Config.sh $RPM_BUILD_ROOT/%{_libdir}/%{name}%{majorver}/%{name}Config.sh
ae5dd1
ae5dd1
mkdir -p $RPM_BUILD_ROOT/%{_includedir}/%{name}-private/{generic,unix}
ae5dd1
find generic unix -name "*.h" -exec cp -p '{}' $RPM_BUILD_ROOT/%{_includedir}/%{name}-private/'{}' ';'
ae5dd1
( cd $RPM_BUILD_ROOT/%{_includedir}
ae5dd1
	for i in *.h ; do
ae5dd1
		[ -f $RPM_BUILD_ROOT/%{_includedir}/%{name}-private/generic/$i ] && ln -sf ../../$i $RPM_BUILD_ROOT/%{_includedir}/%{name}-private/generic ;
ae5dd1
	done
ae5dd1
)
ae5dd1
ae5dd1
# remove buildroot traces
ae5dd1
sed -i -e "s|$PWD/unix|%{_libdir}|; s|$PWD|%{_includedir}/%{name}-private|" $RPM_BUILD_ROOT/%{_libdir}/%{name}Config.sh
ae5dd1
rm -rf $RPM_BUILD_ROOT/%{_datadir}/%{name}%{majorver}/ldAix
ae5dd1
ae5dd1
%clean
ae5dd1
rm -rf $RPM_BUILD_ROOT
ae5dd1
ae5dd1
%post -p /sbin/ldconfig
ae5dd1
ae5dd1
%postun -p /sbin/ldconfig
ae5dd1
ae5dd1
%files
ae5dd1
%defattr(-,root,root,-)
ae5dd1
%{_bindir}/tclsh*
ae5dd1
%{_datadir}/%{name}%{majorver}
ae5dd1
%exclude %{_datadir}/%{name}%{majorver}/tclAppInit.c
ae5dd1
%{_datadir}/%{name}8
ae5dd1
%{_libdir}/lib%{name}%{majorver}.so
ae5dd1
%{_mandir}/man1/*
ae5dd1
%{_mandir}/man3/*
ae5dd1
%{_mandir}/mann/*
ae5dd1
%dir %{_libdir}/%{name}%{majorver}
ae5dd1
%doc README changes 
ae5dd1
%doc license.terms
ae5dd1
ae5dd1
%files devel
ae5dd1
%defattr(-,root,root,-)
ae5dd1
%{_includedir}/*
ae5dd1
%{_libdir}/lib%{name}stub%{majorver}.a
ae5dd1
%{_libdir}/lib%{name}.so
ae5dd1
%{_libdir}/%{name}Config.sh
ae5dd1
%{_libdir}/%{name}8.5/%{name}Config.sh
ae5dd1
%{_datadir}/%{name}%{majorver}/tclAppInit.c
ae5dd1
ae5dd1
%changelog
2e5d8e
* Wed Jul 29 2015 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.13-8
2e5d8e
- Dropped 'configure' patch hunks, because 'configure' is re-generated
2e5d8e
  Related: rhbz#1247555
2e5d8e
2e5d8e
* Wed Jul 29 2015 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.13-7
2e5d8e
- Forced autoconf to rebuild its files
2e5d8e
  Related: rhbz#1247555
2e5d8e
2e5d8e
* Tue Jul 28 2015 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.13-6
2e5d8e
- Rebuilt due to wrong tcl_pkgPath on s390x and ppc64le
2e5d8e
  Resolves: rhbz#1247555
2e5d8e
2e5d8e
* Mon Jul  6 2015 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.13-5
2e5d8e
- Fixed fork, enabled threading (by notifier-thread-fork-fix patch)
2e5d8e
  Resolves: rhbz#869315
2e5d8e
- Rebuild to fix systemtap on aarch64
2e5d8e
  Resolves: rhbz#1238479
2e5d8e
cc281a
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 1:8.5.13-4
cc281a
- Mass rebuild 2014-01-24
cc281a
cc281a
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1:8.5.13-3
cc281a
- Mass rebuild 2013-12-27
cc281a
ae5dd1
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:8.5.13-2
ae5dd1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
ae5dd1
ae5dd1
* Mon Nov 12 2012 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.13-1
ae5dd1
- New version
ae5dd1
  Resolves: rhbz#875830
ae5dd1
ae5dd1
* Tue Aug 21 2012 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.12-3
ae5dd1
- Removed pic patch
ae5dd1
ae5dd1
* Fri Aug 10 2012 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.12-2
ae5dd1
- Enabled upstream test suite
ae5dd1
- Enabled stack checking
ae5dd1
ae5dd1
* Mon Jul 30 2012 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.12-1
ae5dd1
- New version
ae5dd1
  Resolves: rhbz#843902
ae5dd1
ae5dd1
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:8.5.11-3
ae5dd1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
ae5dd1
ae5dd1
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:8.5.11-2
ae5dd1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
ae5dd1
ae5dd1
* Tue Nov  8 2011 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.11-1
ae5dd1
- New version
ae5dd1
  Resolves: rhbz#752041
ae5dd1
ae5dd1
* Mon Jun 27 2011 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.10-1
ae5dd1
- New version
ae5dd1
  Resolves: rhbz#716877
ae5dd1
ae5dd1
* Thu May 05 2011 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.9-3
ae5dd1
- Packaged tclAppInit.c into devel subpackage (#702088)
ae5dd1
- Removed rpmlint warning - macro in comment
ae5dd1
ae5dd1
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:8.5.9-2
ae5dd1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
ae5dd1
ae5dd1
* Mon Oct 11 2010 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.9-1
ae5dd1
- New version (#641574)
ae5dd1
- Updated hidden patch
ae5dd1
- Removed sigabrt patch (integraged upstream)
ae5dd1
ae5dd1
* Wed Sep 29 2010 jkeating - 1:8.5.8-4
ae5dd1
- Rebuilt for gcc bug 634757
ae5dd1
ae5dd1
* Wed Sep 15 2010 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.8-3
ae5dd1
- rebuilt with TCL_NO_STACK_CHECK
ae5dd1
ae5dd1
* Wed Jun 09 2010 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.8-2
ae5dd1
- Reverted back tk paths (#540296)
ae5dd1
ae5dd1
* Wed Mar 17 2010 Jaroslav Å karvada <jskarvad@redhat.com> - 1:8.5.8-1
ae5dd1
- 562148 update to 8.5.8
ae5dd1
ae5dd1
* Thu Jan 21 2010 Nikola Pajkovsky <npajkovs@redhat.com> - 1:8.5.7-5
ae5dd1
- fix sigabort patch(add +1 to length)
ae5dd1
ae5dd1
* Mon Aug 10 2009 Nikola Pajkovsky <npajkovs@redhat.com> - 1:8.5.7-4
ae5dd1
- Enable SEPolicy for libtcl. 
ae5dd1
- fix sigabort
ae5dd1
ae5dd1
* Tue Jul 28 2009 Nikola Pajkovsky <npajkovs@redhat.com> - 1:8.5.7-3
ae5dd1
- 513997 fixed. SELinux policy problem with libtcl8.5.so
ae5dd1
ae5dd1
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:8.5.7-2
ae5dd1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
ae5dd1
ae5dd1
* Mon May 18  2009 Marcela Mašláňová <mmaslano@redhat.com> - 1:8.5.7-1
ae5dd1
- 489017 update to 8.5.7 with systemtap support
ae5dd1
ae5dd1
* Wed Apr 1  2009 Marcela Mašláňová <mmaslano@redhat.com> - 1:8.5.6-6
ae5dd1
- add missing part of patch
ae5dd1
ae5dd1
* Tue Mar 31 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1:8.5.6-5
ae5dd1
- 492541 newer http prevents connection (reproduced on amsn)
ae5dd1
ae5dd1
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:8.5.6-4
ae5dd1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
ae5dd1
ae5dd1
* Wed Feb 11 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1:8.5.6-3
ae5dd1
- fix hidden patch for functional expect
ae5dd1
ae5dd1
* Mon Feb  9 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1:8.5.6-1
ae5dd1
- update to 8.5.6
ae5dd1
ae5dd1
* Mon Nov 24 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.5-2
ae5dd1
- change summary according to discussion on fedora-devel 
ae5dd1
	RFC fix summary :)
ae5dd1
ae5dd1
* Wed Nov 19 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.5-1
ae5dd1
- update to 8.5.5
ae5dd1
ae5dd1
* Fri Jul 25 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.3-1
ae5dd1
- update to 8.5.3
ae5dd1
- create vers macro for provides, obsoletes
ae5dd1
ae5dd1
* Mon Jul  2 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.2-3
ae5dd1
- tclConfig.sh was fixed again with symlink into libdir/tcl8.5.
ae5dd1
Many packages are looking in /usr/lib, because tcl dir is versioned.
ae5dd1
ae5dd1
* Tue Jun 24 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.2-2
ae5dd1
- update to 8.5.2
ae5dd1
- 451750 PostgreSQL need tclConfig.sh in paths
ae5dd1
- 437399 now really own directories
ae5dd1
ae5dd1
* Wed Apr 23 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.1-4
ae5dd1
- #443246 configure with disabled threads. Threads could lead to segfaults
ae5dd1
	of dependent programme.
ae5dd1
ae5dd1
* Mon Mar 17 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.1-3
ae5dd1
- #436567 change auto path, tk can't be found.
ae5dd1
- #437399 fix files permission
ae5dd1
ae5dd1
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1:8.5.1-2
ae5dd1
- Autorebuild for GCC 4.3
ae5dd1
ae5dd1
* Mon Jan 18 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.1-1
ae5dd1
- new version tcl8.5.1
ae5dd1
- fix 433151 problem with regular expression
ae5dd1
- Version 2.5.3 of the http package requires Tcl 8.4 or better ->
ae5dd1
	change make patch, add tm files back to 8.4
ae5dd1
ae5dd1
* Tue Jan 15 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.0-6
ae5dd1
- tclsh8.5 is back because of back compatibility #428712
ae5dd1
ae5dd1
* Tue Jan  8 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.0-5
ae5dd1
- stack checking is ok, error is in application. Removing withouth stack.
ae5dd1
- tcl-8.5.0-hidden.patch isn't ok, fix should be in expect. In the meantime
ae5dd1
	the patch stay here.
ae5dd1
ae5dd1
* Mon Jan  7 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.0-4
ae5dd1
- add patch from atkac at redhat dot com - fix linking with hidden objects
ae5dd1
ae5dd1
* Sat Jan  5 2008 Wart <wart@kobold.org> - 1:8.5.0-3
ae5dd1
- Obsolete the tcl-tcldict package that has been incorporated
ae5dd1
  into the main Tcl source code.
ae5dd1
- Disable the the stack checking code; it makes assumptions that are
ae5dd1
  not necessarily true on Fedora and causes some apps to fail (BZ #425799)
ae5dd1
ae5dd1
* Thu Jan  3 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.0-2
ae5dd1
- rebuilt because of nonsense in tag
ae5dd1
ae5dd1
* Wed Jan  2 2008 Marcela Maslanova <mmaslano@redhat.com> - 1:8.5.0-1
ae5dd1
- upgrade on the new whole version 8.5.0
ae5dd1
- thank you for patches and clean spec to wart (at kobold)
ae5dd1
ae5dd1
* Fri Nov 16 2007 Marcela Maslanova <mmaslano@redhat.com> - 1:8.4.15-6
ae5dd1
- CVE-2007-4772 NFA optimization cause hang in loop. Back ported patch
ae5dd1
	from upstream development version.
ae5dd1
ae5dd1
* Wed Sep 26 2007 Marcela Maslanova <mmaslano@redhat.com> - 1:8.4.15-5
ae5dd1
- fix of patch - set auto_path was broken
ae5dd1
- Resolves: rhbz#306321
ae5dd1
ae5dd1
* Fri Aug 24 2007 Marcela Maslanova <mmaslano@redhat.com> - 1:8.4.15-4
ae5dd1
- rebuild for mass rebuild
ae5dd1
- check license & path for 32b/64b fix
ae5dd1
ae5dd1
* Thu Aug  9 2007 Marcela Maslanova <mmaslano@redhat.com> - 1:8.4.15-3
ae5dd1
- Resolves: rhbz#251410
ae5dd1
ae5dd1
* Mon Aug 6 2007 Michael Thomas <wart@kobold.org> - 1:8.4.15-2
ae5dd1
- Explicitly add %%{_datadir}/tcl8.4 and %%{_libdir}/tcl8.4 to the
ae5dd1
  auto_path.
ae5dd1
ae5dd1
* Tue May 22 2007 Marcela Maslanova <mmaslano@redhat.com> - 1:8.4.15-1
ae5dd1
- Update Tcl-8.4.15
ae5dd1
ae5dd1
* Tue May 22 2007 Marcela Maslanova <mmaslano@redhat.com> - 1:8.4.13-18
ae5dd1
- rhbz#235812
ae5dd1
ae5dd1
* Tue Apr  3 2007 Marcela Maslanova <mmaslano@redhat.com> - 1:8.4.13-16
ae5dd1
- rhbz#227725
ae5dd1
ae5dd1
* Tue Apr  3 2007 Marcela Maslanova <mmaslano@redhat.com> - 1:8.4.13-15
ae5dd1
- cleaning spec
ae5dd1
ae5dd1
* Tue Mar 21 2007 Marcela Maslanova <mmaslano@redhat.com> - 1:8.4.13-14
ae5dd1
- multilib problem, rhbz#227200
ae5dd1
ae5dd1
* Tue Feb 27 2007 Marcela Maslanova <mmaslano@redhat.com> - 1:8.4.13-12
ae5dd1
- review
ae5dd1
ae5dd1
* Thu Feb 21 2007 Marcela Maslanova <mmaslano@redhat.com> - 1:8.4.13-11
ae5dd1
- review
ae5dd1
ae5dd1
* Thu Feb 15 2007 Marcela Maslanova <mmaslano@redhat.com> - 1:8.4.13-10
ae5dd1
- review
ae5dd1
ae5dd1
* Tue Feb 13 2007 Marcela Maslanova <mmaslano@redhat.com> - 1:8.4.13-9
ae5dd1
- review again
ae5dd1
ae5dd1
* Fri Feb 09 2007 David Cantrell <dcantrell@redhat.com> - 1:8.4.13-8
ae5dd1
- rebuild
ae5dd1
ae5dd1
* Thu Feb  8 2007 Marcela Maslanova <mmaslano@redhat.com> - 1:8.4.13-7
ae5dd1
- downgrade back to 8.4.13
ae5dd1
- rhbz #226479 review
ae5dd1
ae5dd1
* Mon Feb  5 2007 Marcela Maslanova <mmaslano@redhat.com> - 8.5a5-8
ae5dd1
- rhbz#227173
ae5dd1
ae5dd1
* Sun Feb  4 2007 Jakub Jelinek <jakub@redhat.com> - 8.5a5-7
ae5dd1
- fix broken stack checking code (#226785)
ae5dd1
ae5dd1
* Thu Jan 25 2007 Marcela Maslanova <mmaslano@redhat.com> - 8.5a5-6
ae5dd1
- rebuilt for obsoletes rhbz#217735
ae5dd1
ae5dd1
* Thu Jan 25 2007 Marcela Maslanova <mmaslano@redhat.com> - 8.5a5-5
ae5dd1
- rebuilt
ae5dd1
ae5dd1
* Mon Dec 18 2006 Marcela Maslanova <mmaslano@redhat.com> - 8.5a5-4
ae5dd1
- change in spec for compatibility with tk, version 8.5a5
ae5dd1
- Resolves: rhbz#160441
ae5dd1
ae5dd1
* Thu Jul 20 2006 David Cantrell <dcantrell@redhat.com> - 8.4.13-3
ae5dd1
- Fix cflags patch so it applies correctly
ae5dd1
- Changes $(CFLAGS) to ${CFLAGS} in cflags patch
ae5dd1
ae5dd1
* Thu Jul 20 2006 David Cantrell <dcantrell@redhat.com> - 8.4.13-2
ae5dd1
- Patch from Dennis Gilmore <dennis@ausil.us> for sparc64 (#199375)
ae5dd1
ae5dd1
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 8.4.13-1.2
ae5dd1
- rebuild
ae5dd1
ae5dd1
* Wed Apr 19 2006 David Cantrell <dcantrell@redhat.com> - 8.4.13-1
ae5dd1
- Upgraded to Tcl 8.4.13
ae5dd1
ae5dd1
* Fri Feb 17 2006 David Cantrell <dcantrell@redhat.com> - 8.4.12-4
ae5dd1
- Enable threads (#181871)
ae5dd1
ae5dd1
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 8.4.12-3.2
ae5dd1
- bump again for double-long bug on ppc(64)
ae5dd1
ae5dd1
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 8.4.12-3.1
ae5dd1
- rebuilt for new gcc4.1 snapshot and glibc changes
ae5dd1
ae5dd1
* Thu Feb 02 2006 David Cantrell <dcantrell@redhat.com> - 8.4.12-3
ae5dd1
- Patched syntax errors in configure and tcl.m4 so it works with bash
ae5dd1
ae5dd1
* Thu Feb 02 2006 David Cantrell <dcantrell@redhat.com> - 8.4.12-2
ae5dd1
- Don't use ksh on ia64
ae5dd1
ae5dd1
* Thu Feb 02 2006 David Cantrell <dcantrell@redhat.com> - 8.4.12-1
ae5dd1
- Upgraded to tcl-8.4.12
ae5dd1
- Use ksh rather than bash for the configure script (known bug w/ bash-3.1)
ae5dd1
- Generate HTML docs from source
ae5dd1
- Add in the Tk source for HTML doc generation
ae5dd1
ae5dd1
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
ae5dd1
- rebuilt
ae5dd1
ae5dd1
* Fri Jul  1 2005 Jens Petersen <petersen@redhat.com> - 8.4.11-1
ae5dd1
- update to latest stable release
ae5dd1
  - update tcl-8.4-autoconf.patch
ae5dd1
- buildrequire sed and use it instead of perl for editting tclConfig.sh
ae5dd1
ae5dd1
* Wed Mar  9 2005 Jens Petersen <petersen@redhat.com> - 8.4.9-3
ae5dd1
- rebuild with gcc 4
ae5dd1
ae5dd1
* Tue Dec 14 2004 Jens Petersen <petersen@redhat.com> - 8.4.9-2
ae5dd1
- move tclConfig.sh into -devel (Axel Thimm, 142724)
ae5dd1
ae5dd1
* Thu Dec  9 2004 Jens Petersen <petersen@redhat.com> - 8.4.9-1
ae5dd1
- new stable release
ae5dd1
ae5dd1
* Wed Nov 24 2004 Jens Petersen <petersen@redhat.com> - 8.4.8-1
ae5dd1
- update to latest release
ae5dd1
ae5dd1
* Fri Oct 15 2004 Jens Petersen <petersen@redhat.com> - 8.4.7-2
ae5dd1
- improve tcl8.3.5-tclConfig-package-path-90160.patch to look in libdir in
ae5dd1
  addition to datadir for packages, so that tclsh can load binary packages
ae5dd1
  in lib64 (135310)
ae5dd1
ae5dd1
* Fri Jul 30 2004 Jens Petersen <petersen@redhat.com> - 8.4.7-1
ae5dd1
- update to 8.4.7
ae5dd1
  - replace tcl-8.4.5-no_rpath.patch by tcl-8.4-no_rpath.patch
ae5dd1
  - replace tcl-8.4.5-autoconf.patch by tcl-8.4-autoconf.patch
ae5dd1
- no longer obsolete itcl
ae5dd1
ae5dd1
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
ae5dd1
- rebuilt
ae5dd1
ae5dd1
* Thu May 13 2004 Jens Petersen <petersen@redhat.com> - 8.4.6-1
ae5dd1
- update to 8.4.6
ae5dd1
ae5dd1
* Wed Apr 21 2004 Warren Togami <wtogami@redhat.com> - 8.4.5-7
ae5dd1
- obsolete former itcl package (#121414)
ae5dd1
ae5dd1
* Wed Mar 10 2004 Jens Petersen <petersen@redhat.com> - 8.4.5-6
ae5dd1
- apply tcl-8.4.5-autoconf.patch to build with autoconf 2.5x
ae5dd1
  (Robert Scheck, #116773)
ae5dd1
- use %%{name} more extensively for script portability
ae5dd1
- run "make test" by default when building (can be disabled with
ae5dd1
  "--without check")
ae5dd1
- add a backwards compatible symlink {_prefix}/lib/tk8.4 ->
ae5dd1
  {_datadir}/tk8.4 (Michal Jaegermann, part of #90160)
ae5dd1
- use "mkdir -p" instead of "mkdirhier" (Robert Scheck, #116771)
ae5dd1
- include some doc files
ae5dd1
ae5dd1
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com> - 8.4.5-5.1
ae5dd1
- rebuilt
ae5dd1
ae5dd1
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> - 8.4.5-5
ae5dd1
- rebuilt
ae5dd1
ae5dd1
* Mon Feb  2 2004 Jens Petersen <petersen@redhat.com> - 8.4.5-4
ae5dd1
- include all private .h files under {_includedir}/tcl-private
ae5dd1
ae5dd1
* Mon Dec  1 2003 Thomas Woerner <twoerner@redhat.com> 8.4.5-3
ae5dd1
- removed rpath (patch 4)
ae5dd1
ae5dd1
* Fri Nov 28 2003 Jens Petersen <petersen@redhat.com> - 8.4.5-2
ae5dd1
- put private header files under generic and unix subdirs
ae5dd1
- include real generic/tclPort.h not just a symlink to tclUnixPort.h
ae5dd1
- add tclMath.h to {_includedir}/tcl-private/generic for building tk
ae5dd1
- remove build remnants from tclConfig.sh
ae5dd1
ae5dd1
* Thu Nov 27 2003 Jens Petersen <petersen@redhat.com> - 8.4.5-1
ae5dd1
- new package split out from tcltk
ae5dd1
- update to tcl 8.4.5 (#88429)
ae5dd1
  - drop tcl-8.3.3-heiierarchy.patch, tcl-8.3.3-dlopen.patch
ae5dd1
	 and tcl8.3.5-koi8-u.enc-88806.patch
ae5dd1
- include private include headers under {_includedir}/tcl-private
ae5dd1
- filtered changelog for tcl
ae5dd1
- buildrequire autoconf213 (#110583) [mvd@mylinux.com.ua]
ae5dd1
ae5dd1
* Wed Sep 17 2003 Matt Wilson <msw@redhat.com> 8.3.5-92
ae5dd1
- rebuild again for #91211
ae5dd1
ae5dd1
* Wed Sep 17 2003 Matt Wilson <msw@redhat.com> 8.3.5-91
ae5dd1
- rebuild to fix gzipped file md5sums (#91211)
ae5dd1
ae5dd1
* Fri Jul 04 2003 Jens Petersen <petersen@redhat.com> - 8.3.5-90
ae5dd1
- split out devel files from tcl and tk into -devel subpackages (#90087)
ae5dd1
- fix tcl package path in tclConfig.sh to point to datadir (#90160)
ae5dd1
  [reported by Michal Jaegermann]
ae5dd1
- remove gratuitous whitespace in koi8-u.enc (#88806)
ae5dd1
  [reported with fix by Victor Cheburkin]
ae5dd1
- update ucs4 patch to also change regcustom.h, but disable it for now (#89098)
ae5dd1
ae5dd1
* Thu Feb  6 2003 Jens Petersen <petersen@redhat.com> - 8.3.5-88
ae5dd1
- use ucs4 wide chars since python now does (tkinter)
ae5dd1
ae5dd1
* Fri Jan 17 2003 Jens Petersen <petersen@redhat.com> - 8.3.5-85
ae5dd1
- add some requires
ae5dd1
ae5dd1
* Tue Jan 14 2003 Jens Petersen <petersen@redhat.com> - 8.3.5-84
ae5dd1
- link all libs with DT_SONAME using tcl.m4 patch (#81297)
ae5dd1
- drop synthetic lib provides
ae5dd1
- remove obsolete patches from srpm
ae5dd1
- update buildrequires
ae5dd1
- use buildroot instead of RPM_BUILD_ROOT
ae5dd1
- install all man pages under mandir, instead of moving some from /usr/man
ae5dd1
- install libtcl and libtk mode 755
ae5dd1
- introduce _genfilelist macro for clean single-sweep find filelist generation
ae5dd1
  for each package
ae5dd1
- use perl to remove buildroot prefix from filelists
ae5dd1
ae5dd1
* Tue Jan  7 2003 Jeff Johnson <jbj@redhat.com> 8.3.5-80
ae5dd1
- rebuild to generate deps for4 DSO's w/o DT_SONAME correctly.
ae5dd1
ae5dd1
* Sat Jan  4 2003 Jeff Johnson <jbj@redhat.com> 8.3.5-79
ae5dd1
- set execute bits on library so that requires are generated.
ae5dd1
ae5dd1
* Tue Dec 10 2002 Jens Petersen <petersen@redhat.com> 8.3.5-78
ae5dd1
- make lib symlinks to .so not .so.0
ae5dd1
ae5dd1
* Tue Dec 10 2002 Jens Petersen <petersen@redhat.com> 8.3.5-77
ae5dd1
- fix summary-not-capitalized for tclx, tcllib, tcl-html
ae5dd1
ae5dd1
* Mon Dec  9 2002 Jens Petersen <petersen@redhat.com> 8.3.5-76
ae5dd1
- make it build on x86_64 (details below)
ae5dd1
- don't explicitly update config.{guess,sub} since %%configure does it for us
ae5dd1
- added "--without check" rpmbuild option to disable running tests in future
ae5dd1
- build and install tcl and tk with script files under datadir (not libdir)
ae5dd1
- generate filelists from datadir and not from mandir from now on
ae5dd1
ae5dd1
* Tue Dec  3 2002 Jens Petersen <petersen@redhat.com>
ae5dd1
- update to tcl-8.3.5, tk-8.3.5, tcl-html-8.3.5
ae5dd1
- update url for tcl, tk, tclx, itcl, tcllib
ae5dd1
- build without all makecfg patches for now
ae5dd1
  - in particular use upstream versioned library name convention
ae5dd1
- add backward compatible lib symlinks for now
ae5dd1
- add unversioned symlinks for versioned bindir files
ae5dd1
- use make's -C option rather than jumping in and out of source dirs
ae5dd1
  during install
ae5dd1
- use INSTALL_ROOT destdir-like make variable instead of makeinstall
ae5dd1
  for all subpackages except tix and itcl
ae5dd1
ae5dd1
* Mon Oct 21 2002 Jens Petersen <petersen@redhat.com>
ae5dd1
- update to tcl-8.3.4, tk-8.3.4 (#75600), tcllib-1.3, itcl-3.2.1,
ae5dd1
  tix-8.1.3 (#59098)
ae5dd1
- drop obsolete tcl cruft, tcl refcount, tix perf patches
ae5dd1
- added tcltk html manual
ae5dd1
- drop the crud compat dir symlinks in libdir
ae5dd1
- package now builds without tcl or tk installed (partly #52606)
ae5dd1
  - replace all relative paths by absolutes ones, using new tcltktop
ae5dd1
  - give absolute paths to tcl and tk when configuring
ae5dd1
  - give buildroot bindir path to tcllib make
ae5dd1
  - export buildroot libdir in LD_LIBRARY_PATH when installing
ae5dd1
- replace tclvers and tkvers by tcltkvers and use it
ae5dd1
- replace tcl_major and tk_major by tcltk_major and use it
ae5dd1
- don't explicitly provide 64bit libs on ia64 and sparc64
ae5dd1
ae5dd1
* Mon Jan 07 2002 Florian La Roche <Florian.LaRoche@redhat.de>
ae5dd1
- fix config.guess and config.sub to newer versions
ae5dd1
ae5dd1
* Mon Aug 29 2001 Adrian Havill <havill@redhat.com>
ae5dd1
ae5dd1
* Mon Aug  8 2001 Adrian Havill <havill@redhat.com>
ae5dd1
- re-enable glibc string and math inlines; recent gcc is a-ok.
ae5dd1
- optimize at -O2 instead of -O
ae5dd1
- rename "soname" patches related to makefile/autoconf changes
ae5dd1
- added elf "needed" for tk, tclx, tix, itk
ae5dd1
ae5dd1
* Thu Jul 19 2001 Adrian Havill <havill@redhat.com>
ae5dd1
- used %%makeinstall to brute force fix any remaining unflexible makefile dirs
ae5dd1
- fixed bad ref count release in tcl (bug 49406)
ae5dd1
- revert --enable-threads, linux is (still) not ready (yet) (bug 49251)
ae5dd1
ae5dd1
* Sun Jul  8 2001 Adrian Havill <havill@redhat.com>
ae5dd1
- refresh all sources to latest stable (TODO: separate expect/expectk)
ae5dd1
- massage out some build stuff to patches (TODO: libtoolize hacked constants)
ae5dd1
- remove patches already rolled into the upstream
ae5dd1
- removed RPATH (bugs 45569, 46085, 46086), added SONAMEs to ELFs
ae5dd1
- changed shared object filenames to something less gross
ae5dd1
- reenable threads which seem to work now
ae5dd1
- made compile-friendly for IA64
ae5dd1
ae5dd1
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
ae5dd1
- Bump release + rebuild for 7.2.
ae5dd1
ae5dd1
* Fri Mar 23 2001 Bill Nottingham <notting@redhat.com>
ae5dd1
- bzip2 sources
ae5dd1
ae5dd1
* Mon Mar 19 2001 Preston Brown <pbrown@redhat.com>
ae5dd1
- build fix from ahavill.
ae5dd1
ae5dd1
* Tue Feb 13 2001 Adrian Havill <havill@redhat.com>
ae5dd1
- added "ja_JP.eucJP" to locale list for tcl
ae5dd1
ae5dd1
* Tue Feb 13 2001 Adrian Havill <havill@redhat.com>
ae5dd1
- rebuild so make check passes
ae5dd1
ae5dd1
* Fri Oct 20 2000 Than Ngo <than@redhat.com>
ae5dd1
- rebuild with -O0 on alpha (bug #19461)
ae5dd1
ae5dd1
* Thu Aug 17 2000 Jeff Johnson <jbj@redhat.com>
ae5dd1
- summaries from specspo.
ae5dd1
ae5dd1
* Thu Aug  3 2000 Jeff Johnson <jbj@redhat.com>
ae5dd1
- merge "best known" patches from searching, stubs were broken.
ae5dd1
ae5dd1
* Thu Jul 27 2000 Jeff Johnson <jbj@redhat.com>
ae5dd1
- rebuild against "working" util-linux col.
ae5dd1
ae5dd1
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
ae5dd1
- automatic rebuild
ae5dd1
ae5dd1
* Fri Jun 16 2000 Jeff Johnson <jbj@redhat.com>
ae5dd1
- don't mess with %%{_libdir}, it's gonna be a FHS pita.
ae5dd1
ae5dd1
* Fri Jun  2 2000 Jeff Johnson <jbj@redhat.com>
ae5dd1
- FHS packaging changes.
ae5dd1
- revert --enable-threads, linux is not ready (yet) (#11789).
ae5dd1
- tcl/tk: update to 8.3.1 (#10779).
ae5dd1
- abstract major tcltk version for soname expansion etc.
ae5dd1
ae5dd1
* Sat Mar 18 2000 Jeff Johnson <jbj@redhat.com>
ae5dd1
- update to (tcl,tk}-8.2.3, expect-5.31, and itcl-3.1.0, URL's as well.
ae5dd1
- use perl to drill out pre-pended RPM_BUILD_ROOT.
ae5dd1
- configure with --enable-threads (experimental).
ae5dd1
- correct hierarchy spelling (#7082).
ae5dd1
ae5dd1
* Tue Mar  7 2000 Jeff Johnson <jbj@redhat.com>
ae5dd1
- rebuild for sparc baud rates > 38400.
ae5dd1
ae5dd1
* Mon Feb  7 2000 Bill Nottingham <notting@redhat.com>
ae5dd1
- handle compressed manpages
ae5dd1
ae5dd1
* Thu Feb 03 2000 Elliot Lee <sopwith@redhat.com>
ae5dd1
- Make changes from bug number 7602
ae5dd1
- Apply patch from bug number 7537
ae5dd1
- Apply fix from bug number 7157
ae5dd1
- Add fixes from bug #7601 to the runtcl patch
ae5dd1
ae5dd1
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
ae5dd1
- fix descriptions
ae5dd1
- man pages are compressed (whatapain)
ae5dd1
ae5dd1
* Tue Nov 30 1999 Jakub Jelinek <jakub@redhat.com>
ae5dd1
- compile on systems where SIGPWR == SIGLOST.
ae5dd1
ae5dd1
* Sat May  1 1999 Jeff Johnson <jbj@redhat.com>
ae5dd1
- update tcl/tk to 8.0.5.
ae5dd1
ae5dd1
* Tue Feb 16 1999 Jeff Johnson <jbj@redhat.com>
ae5dd1
- upgrade tcl/tk/tclX to 8.0.4
ae5dd1
ae5dd1
* Tue Jan 12 1999 Cristian Gafton <gafton@redhat.com>
ae5dd1
- call libtoolize to allow building on the arm
ae5dd1
- build for glibc 2.1
ae5dd1
- strip binaries
ae5dd1
ae5dd1
* Thu Sep 10 1998 Jeff Johnson <jbj@redhat.com>
ae5dd1
- update tcl/tk/tclX to 8.0.3, expect is updated also.
ae5dd1
ae5dd1
* Thu May 07 1998 Prospector System <bugs@redhat.com>
ae5dd1
- translations modified for de, fr, tr
ae5dd1
ae5dd1
* Thu Apr 09 1998 Erik Troan <ewt@redhat.com>
ae5dd1
- updated version numbers of tcl/tk to relflect inclusion of p2
ae5dd1
ae5dd1
* Wed Mar 25 1998 Cristian Gafton <gafton@redhat.com>
ae5dd1
- updated tcl/tk to patch level 2
ae5dd1
ae5dd1
* Wed Oct 22 1997 Otto Hammersmith <otto@redhat.com>
ae5dd1
- added patch to remove libieee test in configure.in for tcl and tk.
ae5dd1
  Shouldn't be needed anymore for glibc systems, but this isn't the "proper" 
ae5dd1
  solution for all systems
ae5dd1
- fixed src urls
ae5dd1
ae5dd1
* Mon Oct 06 1997 Erik Troan <ewt@redhat.com>
ae5dd1
- removed version numbers from descriptions
ae5dd1
ae5dd1
* Mon Sep 22 1997 Erik Troan <ewt@redhat.com>
ae5dd1
- updated to tcl/tk 8.0 and related versions of packages
ae5dd1
ae5dd1
* Tue Jun 17 1997 Erik Troan <ewt@redhat.com>
ae5dd1
- built against glibc