Accepting request 145644 from devel:languages:misc

- fixed build: net-db.test takes EAI_SYSTEM error by
  * net-db-test.patch [bnc#794696]
- turn off one test in gc.test
  * gc-test.patch
    http://lists.gnu.org/archive/html/bug-guile/2012-07/msg00069.html

- update to 2.0.7:
  * Notable changes
  ** SRFI-105 curly infix expressions are supported
  ** Reader options may now be per-port
  ** Futures may now be nested
  ** `GUILE_LOAD_PATH' et al can now add directories to the end of 
     the path
  ** `load-in-vicinity' search for `.go' files in `%load-compiled-path'
  ** Extension search order fixed, and LD_LIBRARY_PATH preserved
  ** Optimize calls to `equal?' or `eqv?' with a constant argument
  * Manual updates
  ** SRFI-9 records now documented under "Compound Data Types"
  ** (ice-9 and-let-star) and (ice-9 curried-definitions) now documented
  * New interfaces
  ** New "functional record setters" as a GNU extension of SRFI-9
  ** web: New `http-get*', `response-body-port', and `text-content-type?'
     procedures
  ** `string-split' accepts character sets and predicates
  ** R6RS SRFI support
  ** `define-public' is no a longer curried definition by default
  etc. see NEWS

OBS-URL: https://build.opensuse.org/request/show/145644
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/guile?expand=0&rev=36
This commit is contained in:
Stephan Kulow 2012-12-19 09:57:04 +00:00 committed by Git OBS Bridge
commit 1929fec514
7 changed files with 103 additions and 8 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3ece055145a5020dd36b84f5fbccd4b3846a671960dd5ee55931555f03200950
size 7109506

3
guile-2.0.7.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:043ae7a44aefaec2b2fe6cd09b0e31e206340633aa4b53df88684d808890fc63
size 7163916

View File

@ -2,7 +2,7 @@ Index: libguile/hash.c
===================================================================
--- libguile/hash.c.orig
+++ libguile/hash.c
@@ -270,7 +270,7 @@ scm_hasher(SCM obj, unsigned long n, siz
@@ -273,7 +273,7 @@ scm_hasher(SCM obj, unsigned long n, siz
unsigned long
scm_ihashq (SCM obj, unsigned long n)
{
@ -11,7 +11,7 @@ Index: libguile/hash.c
}
@@ -306,7 +306,7 @@ scm_ihashv (SCM obj, unsigned long n)
@@ -309,7 +309,7 @@ scm_ihashv (SCM obj, unsigned long n)
if (SCM_NUMP(obj))
return (unsigned long) scm_hasher(obj, n, 10);
else
@ -24,7 +24,7 @@ Index: libguile/struct.c
===================================================================
--- libguile/struct.c.orig
+++ libguile/struct.c
@@ -942,7 +942,7 @@ scm_struct_ihashq (SCM obj, unsigned lon
@@ -919,7 +919,7 @@ scm_struct_ihashq (SCM obj, unsigned lon
{
/* The length of the hash table should be a relative prime it's not
necessary to shift down the address. */
@ -32,4 +32,4 @@ Index: libguile/struct.c
+ return (unsigned long) SCM_UNPACK (obj) % n;
}
SCM_DEFINE (scm_struct_vtable_name, "struct-vtable-name", 1, 0, 0,
/* Return the hash of struct OBJ, modulo N. Traverse OBJ's fields to

36
guile-gc-test.patch Normal file
View File

@ -0,0 +1,36 @@
Index: guile-2.0.7/test-suite/tests/gc.test
===================================================================
--- guile-2.0.7.orig/test-suite/tests/gc.test
+++ guile-2.0.7/test-suite/tests/gc.test
@@ -88,17 +88,17 @@
(if (guard)
(lp (1+ i))
i))
- total))))
-
- (pass-if "Lexical vars are collectable"
- (let ((l (compile
- '(begin
- (define guardian (make-guardian))
- (let ((f (list 'foo)))
- (guardian f))
- ((@ (test-suite lib) clear-stale-stack-references))
- (gc)(gc)(gc)
- (guardian))
- ;; Prevent the optimizer from propagating f.
- #:opts '(#:partial-eval? #f))))
- (equal? l '(foo)))))
+ total)))))
+;; turn off this test: http://lists.gnu.org/archive/html/bug-guile/2012-07/msg00069.html
+;; (pass-if "Lexical vars are collectable"
+;; (let ((l (compile
+;; '(begin
+;; (define guardian (make-guardian))
+;; (let ((f (list 'foo)))
+;; (guardian f))
+;; ((@ (test-suite lib) clear-stale-stack-references))
+;; (gc)(gc)(gc)
+;; (guardian))
+;; ;; Prevent the optimizer from propagating f.
+;; #:opts '(#:partial-eval? #f))))
+;; (equal? l '(foo)))))

20
guile-net-db-test.patch Normal file
View File

@ -0,0 +1,20 @@
Index: guile-2.0.7/test-suite/tests/net-db.test
===================================================================
--- guile-2.0.7.orig/test-suite/tests/net-db.test
+++ guile-2.0.7/test-suite/tests/net-db.test
@@ -79,6 +79,7 @@
(and (defined? 'EAI_NODATA) ; GNU extension
(= errcode EAI_NODATA))
(= errcode EAI_AGAIN)
+ (= errcode EAI_SYSTEM)
(begin
(format #t "unexpected error code: ~a ~s~%"
errcode (gai-strerror errcode))
@@ -105,6 +106,7 @@
;; `EAI_NONAME'.)
(and (or (= errcode EAI_SERVICE)
(= errcode EAI_NONAME)
+ (= errcode EAI_SYSTEM)
(and (defined? 'EAI_NODATA)
(= errcode EAI_NODATA)))
(string? (gai-strerror errcode))))))))

View File

@ -1,3 +1,38 @@
-------------------------------------------------------------------
Mon Dec 17 08:15:45 UTC 2012 - pgajdos@suse.com
- fixed build: net-db.test takes EAI_SYSTEM error by
* net-db-test.patch [bnc#794696]
- turn off one test in gc.test
* gc-test.patch
http://lists.gnu.org/archive/html/bug-guile/2012-07/msg00069.html
-------------------------------------------------------------------
Mon Dec 3 09:20:21 UTC 2012 - pgajdos@suse.com
- update to 2.0.7:
* Notable changes
** SRFI-105 curly infix expressions are supported
** Reader options may now be per-port
** Futures may now be nested
** `GUILE_LOAD_PATH' et al can now add directories to the end of
the path
** `load-in-vicinity' search for `.go' files in `%load-compiled-path'
** Extension search order fixed, and LD_LIBRARY_PATH preserved
** Optimize calls to `equal?' or `eqv?' with a constant argument
* Manual updates
** SRFI-9 records now documented under "Compound Data Types"
** (ice-9 and-let-star) and (ice-9 curried-definitions) now documented
* New interfaces
** New "functional record setters" as a GNU extension of SRFI-9
** web: New `http-get*', `response-body-port', and `text-content-type?'
procedures
** `string-split' accepts character sets and predicates
** R6RS SRFI support
** `define-public' is no a longer curried definition by default
etc. see NEWS
-------------------------------------------------------------------
Wed Jul 11 07:39:47 UTC 2012 - pgajdos@suse.com

View File

@ -33,7 +33,7 @@ BuildRequires: libltdl-devel
BuildRequires: libunistring-devel
BuildRequires: pkg-config
BuildRequires: readline-devel
Version: %{guilevers}.6
Version: %{guilevers}.7
Release: 0
Summary: GNU's Ubiquitous Intelligent Language for Extension
License: GFDL-1.3 and GPL-3.0+ and LGPL-3.0+
@ -43,6 +43,8 @@ Source0: %{name}-%{version}.tar.gz
Patch1: %{name}-64bit.patch
Patch2: %{name}-1.6.10-mktemp.patch
Patch3: %{name}-threads-test.patch
Patch4: %{name}-net-db-test.patch
Patch5: %{name}-gc-test.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
PreReq: fileutils sh-utils
PreReq: %install_info_prereq
@ -112,6 +114,8 @@ linked in as a library when building extensible programs.
%patch1
%patch2
%patch3 -p1
%patch4 -p1
%patch5 -p1
# force rebuild with non-broken makeinfo
#rm -f doc/*/*.info