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: Fri, 30 Oct 2015 16:03:57 +0100 Message-ID: <87y4ekgzz6.fsf@gnu.org> References: <1438034381-18809-1-git-send-email-a.rottmann@gmx.at> 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 1446217512 859 80.91.229.3 (30 Oct 2015 15:05:12 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 30 Oct 2015 15:05:12 +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 Fri Oct 30 16:05:06 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 1ZsBEm-00089H-MY for guile-devel@m.gmane.org; Fri, 30 Oct 2015 16:05:04 +0100 Original-Received: from localhost ([::1]:51134 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZsBEm-0006DI-4k for guile-devel@m.gmane.org; Fri, 30 Oct 2015 11:05:04 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:43401) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZsBEh-00068e-Hu for guile-devel@gnu.org; Fri, 30 Oct 2015 11:05:00 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZsBEe-0002RJ-B4 for guile-devel@gnu.org; Fri, 30 Oct 2015 11:04:59 -0400 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:50090) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZsBDk-0002I0-7N; Fri, 30 Oct 2015 11:04:00 -0400 Original-Received: from pluto.bordeaux.inria.fr ([193.50.110.57]:36324 helo=pluto) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1ZsBDj-0007Vr-Eq; Fri, 30 Oct 2015 11:03:59 -0400 X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 9 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: <1438034381-18809-1-git-send-email-a.rottmann@gmx.at> (Andreas Rottmann's message of "Mon, 27 Jul 2015 23:59:41 +0200") 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:17961 Archived-At: 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 be = unavailable.) Thanks, Andreas! Ludo=E2=80=99.