This commit is contained in:
parent
4b2b0f046d
commit
a12d51b135
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:d73c39f6de1bc610a452c8d4a29aecee473cb3bac3abf599412e46a5a6d80dd4
|
|
||||||
size 2994764
|
|
3
guile-1.8.3.tar.bz2
Normal file
3
guile-1.8.3.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:afa7dac9c51a7661e871cb4434043bc062955b6ea09c2d55b33a8ed751b776c4
|
||||||
|
size 3031678
|
@ -1,11 +0,0 @@
|
|||||||
--- libguile/continuations.c
|
|
||||||
+++ libguile/continuations.c
|
|
||||||
@@ -105,7 +105,7 @@
|
|
||||||
#ifdef __GNUC__
|
|
||||||
__attribute__ ((returns_twice))
|
|
||||||
#endif /* __GNUC__ */
|
|
||||||
-extern struct rv ia64_getcontext (ucontext_t *) __asm__ ("getcontext");
|
|
||||||
+extern struct rv ia64_getcontext (ucontext_t *) __asm__ ("getcontext") __attribute__ ((returns_twice));
|
|
||||||
#endif /* __ia64__ */
|
|
||||||
|
|
||||||
/* this may return more than once: the first time with the escape
|
|
@ -1,3 +1,24 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Dec 12 14:52:27 CET 2007 - pgajdos@suse.cz
|
||||||
|
|
||||||
|
- upgraded to 1.8.3:
|
||||||
|
* New modules (srfi srfi-35), (srfi srfi-37)
|
||||||
|
* Bug fixes
|
||||||
|
* The reader is now faster, which reduces startup time
|
||||||
|
* Procedures returned by `record-accessor' and `record-modifier'
|
||||||
|
are faster
|
||||||
|
* New procedures set-program-arguments, make-vtable
|
||||||
|
* Incompatible change:
|
||||||
|
~~~~~~~~~~~~~~~~~~~~
|
||||||
|
The body of a top-level `define' no longer sees the binding
|
||||||
|
being created. In a top-level `define', the binding being
|
||||||
|
created is no longer visible from the `define' body. This
|
||||||
|
breaks code like "(define foo (begin (set! foo 1) (+ foo 1)))",
|
||||||
|
where `foo' is now unbound in the body. However, such code
|
||||||
|
was not R5RS-compliant anyway, per Section 5.2.1.
|
||||||
|
- removed getcontext.patch -- no longer needed because
|
||||||
|
of code change
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Mar 5 18:17:05 CET 2007 - sbrabec@suse.cz
|
Mon Mar 5 18:17:05 CET 2007 - sbrabec@suse.cz
|
||||||
|
|
||||||
|
39
guile.spec
39
guile.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package guile (Version 1.8.1)
|
# spec file for package guile (Version 1.8.3)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
# package are under the same license as the package itself.
|
# package are under the same license as the package itself.
|
||||||
#
|
#
|
||||||
@ -12,19 +12,18 @@
|
|||||||
|
|
||||||
Name: guile
|
Name: guile
|
||||||
BuildRequires: gmp-devel readline-devel
|
BuildRequires: gmp-devel readline-devel
|
||||||
License: GNU Library General Public License v. 2.0 and 2.1 (LGPL)
|
License: LGPL v2.1 or later
|
||||||
Group: Development/Languages/Scheme
|
Group: Development/Languages/Scheme
|
||||||
Autoreqprov: on
|
AutoReqProv: on
|
||||||
Version: 1.8.1
|
Version: 1.8.3
|
||||||
Release: 34
|
Release: 1
|
||||||
%define GUILEVERSION 1.8
|
%define GUILEVERSION 1.8
|
||||||
Summary: GNU's Ubiquitous Intelligent Language for Extension
|
Summary: GNU's Ubiquitous Intelligent Language for Extension
|
||||||
URL: http://www.gnu.org/software/guile/
|
Url: http://www.gnu.org/software/guile/
|
||||||
Source0: %{name}-%{version}.tar.bz2
|
Source0: %{name}-%{version}.tar.bz2
|
||||||
Patch1: %{name}-64bit.patch
|
Patch1: %{name}-64bit.patch
|
||||||
Patch2: %{name}-1.6.8-mktemp.patch
|
Patch2: %{name}-1.6.8-mktemp.patch
|
||||||
Patch3: guile-gcc4.patch
|
Patch3: guile-gcc4.patch
|
||||||
Patch4: guile-getcontext.patch
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
PreReq: fileutils sh-utils
|
PreReq: fileutils sh-utils
|
||||||
PreReq: %install_info_prereq
|
PreReq: %install_info_prereq
|
||||||
@ -80,7 +79,7 @@ Authors:
|
|||||||
%setup -q
|
%setup -q
|
||||||
%patch1
|
%patch1
|
||||||
%patch2
|
%patch2
|
||||||
%patch4
|
#%patch3
|
||||||
# guile-1.8.1: The code is not so good for -Werror (unused results of write()).
|
# guile-1.8.1: The code is not so good for -Werror (unused results of write()).
|
||||||
sed -i s/-Werror// configure.in configure
|
sed -i s/-Werror// configure.in configure
|
||||||
|
|
||||||
@ -131,8 +130,8 @@ rm -f usr/share/guile/site/slibcat.SuSEconfig
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc ANON-CVS AUTHORS BUGS COPYING ChangeLog GUILE-VERSION HACKING
|
%doc ABOUT-NLS ANON-CVS AUTHORS COPYING* ChangeLog GUILE-VERSION HACKING
|
||||||
%doc NEWS README THANKS SNAPSHOTS
|
%doc LICENSE NEWS README THANKS SNAPSHOTS
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
%{_datadir}/guile
|
%{_datadir}/guile
|
||||||
%{_libdir}/libguile*.so.*
|
%{_libdir}/libguile*.so.*
|
||||||
@ -152,6 +151,24 @@ rm -f usr/share/guile/site/slibcat.SuSEconfig
|
|||||||
%{_libdir}/libguile*.a
|
%{_libdir}/libguile*.a
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Dec 12 2007 - pgajdos@suse.cz
|
||||||
|
- upgraded to 1.8.3:
|
||||||
|
* New modules (srfi srfi-35), (srfi srfi-37)
|
||||||
|
* Bug fixes
|
||||||
|
* The reader is now faster, which reduces startup time
|
||||||
|
* Procedures returned by `record-accessor' and `record-modifier'
|
||||||
|
are faster
|
||||||
|
* New procedures set-program-arguments, make-vtable
|
||||||
|
* Incompatible change:
|
||||||
|
~~~~~~~~~~~~~~~~~~~~
|
||||||
|
The body of a top-level `define' no longer sees the binding
|
||||||
|
being created. In a top-level `define', the binding being
|
||||||
|
created is no longer visible from the `define' body. This
|
||||||
|
breaks code like "(define foo (begin (set! foo 1) (+ foo 1)))",
|
||||||
|
where `foo' is now unbound in the body. However, such code
|
||||||
|
was not R5RS-compliant anyway, per Section 5.2.1.
|
||||||
|
- removed getcontext.patch -- no longer needed because
|
||||||
|
of code change
|
||||||
* Mon Mar 05 2007 - sbrabec@suse.cz
|
* Mon Mar 05 2007 - sbrabec@suse.cz
|
||||||
- Slib guile library installation moved from guile to slib.
|
- Slib guile library installation moved from guile to slib.
|
||||||
* Thu Jan 11 2007 - sbrabec@suse.cz
|
* Thu Jan 11 2007 - sbrabec@suse.cz
|
||||||
|
Loading…
x
Reference in New Issue
Block a user