From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Newsgroups: gmane.lisp.guile.devel Subject: Re: [PATCH] Add SRFI-25 implementation Date: Thu, 05 Nov 2015 21:07:43 +0100 Message-ID: <87ziysdxbk.fsf@gnu.org> References: <1438034381-18809-1-git-send-email-a.rottmann@gmx.at> <87y4ekgzz6.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1446754080 32076 80.91.229.3 (5 Nov 2015 20:08:00 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 5 Nov 2015 20:08:00 +0000 (UTC) Cc: Andy Wingo , Mark H Weaver , guile-devel To: Andreas Rottmann Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Thu Nov 05 21:07:55 2015 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ZuQp8-0006PF-CB for guile-devel@m.gmane.org; Thu, 05 Nov 2015 21:07:54 +0100 Original-Received: from localhost ([::1]:35097 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZuQp8-00041n-2L for guile-devel@m.gmane.org; Thu, 05 Nov 2015 15:07:54 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:54734) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZuQp4-00041W-Ap for guile-devel@gnu.org; Thu, 05 Nov 2015 15:07:51 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZuQp1-0007dV-0s for guile-devel@gnu.org; Thu, 05 Nov 2015 15:07:50 -0500 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:56332) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZuQp0-0007dR-U4; Thu, 05 Nov 2015 15:07:46 -0500 Original-Received: from reverse-83.fdn.fr ([80.67.176.83]:49854 helo=pluto) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1ZuQoz-0000lg-Vy; Thu, 05 Nov 2015 15:07:46 -0500 X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 15 Brumaire an 224 de la =?utf-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x3D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-unknown-linux-gnu In-Reply-To: <87y4ekgzz6.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Fri, 30 Oct 2015 16:03:57 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::e X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:17987 Archived-At: ludo@gnu.org (Ludovic Court=C3=A8s) skribis: > Andreas Rottmann skribis: > >> Adds an implementation of SRFI 25 on top of Guile's native arrays. The >> implementation does not introduce a disjoint type; Guile arrays and >> SRFI-25 arrays can be used interchangably, though with different, partly >> conflicting APIs. >> >> * NEWS: Add preliminary, incomplete section on 2.0.12, noting the >> addition of SRFI-25. >> * doc/ref/srfi-modules.texi (SRFI-25): New node. >> * module/srfi/srfi-25.scm: New file. >> * test-suite/tests/srfi-25.test: New file. >> * module/Makefile.am: >> * test-suite/Makefile.am: Add new files. >> --- >> NEWS | 15 +- >> doc/ref/srfi-modules.texi | 240 +++++++++++++++++++++- >> module/Makefile.am | 1 + >> module/srfi/srfi-25.scm | 159 +++++++++++++++ >> test-suite/Makefile.am | 3 +- >> test-suite/tests/srfi-25.test | 461 +++++++++++++++++++++++++++++++++++= +++++++ >> 6 files changed, 876 insertions(+), 3 deletions(-) >> create mode 100644 module/srfi/srfi-25.scm >> create mode 100644 test-suite/tests/srfi-25.test > > If there are no objections, you can push this patch within a day or two > to =E2=80=98stable-2.0=E2=80=99 (or I=E2=80=99ll do it if you happen to b= e unavailable.) Done in aaea5b2 with minor modifications in srfi-modules.texi to make it more consistent with the rest of the manual. Thanks! Ludo=E2=80=99.