Accepting request 97621 from devel:languages:tcl
Removed leftover 8.5.10 tarball OBS-URL: https://build.opensuse.org/request/show/97621 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/tcl?expand=0&rev=33
This commit is contained in:
commit
ba26074190
@ -1,65 +0,0 @@
|
|||||||
Index: ChangeLog
|
|
||||||
===================================================================
|
|
||||||
--- ChangeLog
|
|
||||||
+++ ChangeLog
|
|
||||||
@@ -1,5 +1,11 @@
|
|
||||||
+2011-06-30 Reinhard Max <max@suse.de>
|
|
||||||
+
|
|
||||||
+ * unix/configure.in: Add a volatile declaration to the test for
|
|
||||||
+ TCL_STACK_GROWS_UP to prevent gcc 4.6 from producing invalid
|
|
||||||
+ results due to aggressive optimisation.
|
|
||||||
+
|
|
||||||
2011-06-23 Don Porter <dgp@users.sourceforge.net>
|
|
||||||
|
|
||||||
*** 8.5.10 TAGGED FOR RELEASE ***
|
|
||||||
|
|
||||||
* changes: Update for 8.5.10 release.
|
|
||||||
|
|
||||||
Index: unix/configure
|
|
||||||
===================================================================
|
|
||||||
--- unix/configure
|
|
||||||
+++ unix/configure
|
|
||||||
@@ -18703,14 +18703,16 @@
|
|
||||||
cat >>conftest.$ac_ext <<_ACEOF
|
|
||||||
/* end confdefs.h. */
|
|
||||||
|
|
||||||
int StackGrowsUp(int *parent) {
|
|
||||||
int here;
|
|
||||||
+ volatile int result;
|
|
||||||
if (parent)
|
|
||||||
- return (&here < parent);
|
|
||||||
+ result = (&here < parent);
|
|
||||||
else
|
|
||||||
- return StackGrowsUp(&here);
|
|
||||||
+ result = StackGrowsUp(&here);
|
|
||||||
+ return result;
|
|
||||||
}
|
|
||||||
int main (int argc, char *argv[]) {
|
|
||||||
return StackGrowsUp(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
Index: unix/configure.in
|
|
||||||
===================================================================
|
|
||||||
--- unix/configure.in
|
|
||||||
+++ unix/configure.in
|
|
||||||
@@ -703,14 +703,16 @@
|
|
||||||
|
|
||||||
AC_CACHE_CHECK([if the C stack grows upwards in memory], tcl_cv_stack_grows_up, [
|
|
||||||
AC_TRY_RUN([
|
|
||||||
int StackGrowsUp(int *parent) {
|
|
||||||
int here;
|
|
||||||
+ volatile int result;
|
|
||||||
if (parent)
|
|
||||||
- return (&here < parent);
|
|
||||||
+ result = (&here < parent);
|
|
||||||
else
|
|
||||||
- return StackGrowsUp(&here);
|
|
||||||
+ result = StackGrowsUp(&here);
|
|
||||||
+ return result;
|
|
||||||
}
|
|
||||||
int main (int argc, char *argv[]) {
|
|
||||||
return StackGrowsUp(0);
|
|
||||||
}
|
|
||||||
], tcl_cv_stack_grows_up=yes, tcl_cv_stack_grows_up=no,
|
|
||||||
|
|
25
tcl.changes
25
tcl.changes
@ -1,3 +1,28 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 21 10:45:06 UTC 2011 - coolo@suse.com
|
||||||
|
|
||||||
|
- add autoconf as buildrequire to avoid implicit dependency
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 8 15:18:10 UTC 2011 - max@suse.com
|
||||||
|
|
||||||
|
- New patchlevel release 8.5.11:
|
||||||
|
* [3349507] correct double(1[string repeat 0 23])
|
||||||
|
* [3371644] Tcl_ConvertElement() segfault
|
||||||
|
* [3372130] hypot(.) segfault
|
||||||
|
* [3389764] memleaks due to reference cycles in dup'd paths
|
||||||
|
* [3390272] leak of [info script] value
|
||||||
|
* [3393150] bignum leaks in Tcl_Get*() routines
|
||||||
|
* [3393714] [string toupper] overflow
|
||||||
|
* [3398794] panic in interp limit setting (gavlian,fellows)
|
||||||
|
* [3401704] revised expr parser to permit function names like
|
||||||
|
"nano()" instead of parsing as "nan o()" with missing op
|
||||||
|
*** POTENTIAL INCOMPATIBILITY ***
|
||||||
|
* [3405652] DTrace workaround
|
||||||
|
* [3391977] -headers overrides -type (=> http 2.7.7)
|
||||||
|
* [3400658] wrong num args msg with TclOO
|
||||||
|
* [2935503] [file stat] returns bad mode
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 4 13:08:26 UTC 2011 - uli@suse.com
|
Tue Oct 4 13:08:26 UTC 2011 - uli@suse.com
|
||||||
|
|
||||||
|
28
tcl.spec
28
tcl.spec
@ -15,19 +15,17 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
|
||||||
|
|
||||||
|
|
||||||
Name: tcl
|
Name: tcl
|
||||||
Url: http://www.tcl.tk
|
Url: http://www.tcl.tk
|
||||||
Version: 8.5.10
|
Version: 8.5.11
|
||||||
Release: 1
|
Release: 0
|
||||||
%define TCL_MINOR %(echo %version | cut -c1-3)
|
%define TCL_MINOR %(echo %version | cut -c1-3)
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Summary: The Tcl Programming Language
|
Summary: The Tcl Programming Language
|
||||||
License: BSD3c(or similar)
|
License: BSD-3-Clause
|
||||||
Group: Development/Languages/Tcl
|
Group: Development/Languages/Tcl
|
||||||
AutoReqProv: on
|
|
||||||
# bug437293
|
# bug437293
|
||||||
%ifarch ppc64
|
%ifarch ppc64
|
||||||
Obsoletes: tcl-64bit
|
Obsoletes: tcl-64bit
|
||||||
@ -35,13 +33,13 @@ Obsoletes: tcl-64bit
|
|||||||
#
|
#
|
||||||
Provides: tclsh tclsh%{TCL_MINOR}
|
Provides: tclsh tclsh%{TCL_MINOR}
|
||||||
PreReq: /bin/rm
|
PreReq: /bin/rm
|
||||||
Source0: %name%{version}-src.tar.bz2
|
Source0: %name%{version}-src.tar.gz
|
||||||
Source1: tcl-rpmlintrc
|
Source1: tcl-rpmlintrc
|
||||||
Source2: baselibs.conf
|
Source2: baselibs.conf
|
||||||
Source3: macros.tcl
|
Source3: macros.tcl
|
||||||
Patch0: tcl.patch
|
Patch0: tcl.patch
|
||||||
Patch1: tcl-unload.patch
|
Patch1: tcl-unload.patch
|
||||||
Patch2: tcl-stack.patch
|
BuildRequires: autoconf
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Tcl (Tool Command Language) is a very powerful but easy to learn
|
Tcl (Tool Command Language) is a very powerful but easy to learn
|
||||||
@ -54,16 +52,9 @@ deployed and highly extensible.
|
|||||||
For more information on Tcl see http://www.tcl.tk and
|
For more information on Tcl see http://www.tcl.tk and
|
||||||
http://wiki.tcl.tk .
|
http://wiki.tcl.tk .
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Authors:
|
|
||||||
--------
|
|
||||||
The Tcl Core Team <tcl-core@lists.sourceforge.net>
|
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Group: Development/Libraries/Tcl
|
|
||||||
License: BSD3c(or similar)
|
|
||||||
Summary: Header Files and C API Documentation for Tcl
|
Summary: Header Files and C API Documentation for Tcl
|
||||||
|
Group: Development/Libraries/Tcl
|
||||||
Requires: tcl = %version
|
Requires: tcl = %version
|
||||||
# bug437293
|
# bug437293
|
||||||
%ifarch ppc64
|
%ifarch ppc64
|
||||||
@ -79,17 +70,10 @@ embedding the Tcl interpreter in programs written in such languages.
|
|||||||
This package is not needed for writing extensions or applications in
|
This package is not needed for writing extensions or applications in
|
||||||
the Tcl language itself.
|
the Tcl language itself.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Authors:
|
|
||||||
--------
|
|
||||||
The Tcl Core Team <tcl-core@lists.sourceforge.net>
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %name%version
|
%setup -q -n %name%version
|
||||||
%patch0
|
%patch0
|
||||||
%patch1
|
%patch1
|
||||||
%patch2
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
cd unix
|
cd unix
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:c7c145f9749135f769552d1b10bbd6c9901aae84c37e94828b303a8fc5740e4e
|
|
||||||
size 3480226
|
|
3
tcl8.5.11-src.tar.gz
Normal file
3
tcl8.5.11-src.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:8addc385fa6b5be4605e6d68fbdc4c0e674c5af1dc1c95ec5420390c4b08042a
|
||||||
|
size 4484001
|
Loading…
Reference in New Issue
Block a user