From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.ciao.gmane.io!not-for-mail From: =?utf-8?Q?Ludovic_Court=C3=A8s?= Newsgroups: gmane.lisp.guile.devel Subject: Re: guile pipeline do-over Date: Sat, 16 May 2020 22:38:49 +0200 Message-ID: <877dxbpqcm.fsf@gnu.org> References: <8736al24jt.fsf@verum.com> <87imjgi2vs.fsf@gnu.org> <877dzsy84v.fsf@verum.com> <87pnczeb32.fsf@gnu.org> <87imifr85k.fsf@verum.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="ciao.gmane.io:159.69.161.202"; logging-data="16161"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) Cc: Andy Wingo , Guile Devel To: Rutger van Beusekom Original-X-From: guile-devel-bounces+guile-devel=m.gmane-mx.org@gnu.org Sat May 16 22:39:06 2020 Return-path: Envelope-to: guile-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ja3aM-00046k-Mm for guile-devel@m.gmane-mx.org; Sat, 16 May 2020 22:39:06 +0200 Original-Received: from localhost ([::1]:59944 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ja3aL-0005Po-Pp for guile-devel@m.gmane-mx.org; Sat, 16 May 2020 16:39:05 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:38586) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ja3aC-0005PW-4v for guile-devel@gnu.org; Sat, 16 May 2020 16:38:56 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:47902) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ja3a9-0002vp-7Q; Sat, 16 May 2020 16:38:53 -0400 Original-Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=44036 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1ja3a8-0007K8-S5; Sat, 16 May 2020 16:38:53 -0400 X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 28 =?utf-8?Q?Flor=C3=A9al?= an 228 de la =?utf-8?Q?R?= =?utf-8?Q?=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 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-pc-linux-gnu In-Reply-To: <87imifr85k.fsf@verum.com> (Rutger van Beusekom's message of "Sat, 04 Apr 2020 10:01:59 +0200") X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.23 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-mx.org@gnu.org Original-Sender: "guile-devel" Xref: news.gmane.io gmane.lisp.guile.devel:20521 Archived-At: Hi Rutger, It=E2=80=99s been a looong process (apologies!), but I=E2=80=99m happy to s= ay that this patch is now in master! Hopefully your future contributions will be quicker to get in, otherwise there won=E2=80=99t be anyone to blame but the maintainers. ;-) Rutger van Beusekom skribis: > From 9fa48fa3917eb1fab61b703de936471c3c24f4f4 Mon Sep 17 00:00:00 2001 > From: Rutger van Beusekom > Date: Mon, 2 Mar 2020 10:38:57 +0100 > Subject: [PATCH] Add pipeline procedure. > > * libguile/posix.c (scm_open_process): Remove. > (scm_piped_process): Add to replace open_process. > * module/ice-9/popen.scm (pipe->fdes): Add to convert pipe pair to fdes p= air. > (open-process): Add open-process for backwards compatibility. > (pipeline): Add to implement a pipeline using piped-process. I added bits that were missing from the commit log and followed up with cosmetic tweaks to the tests and doc. It=E2=80=99s all good, thank you for sharing this! Ludo=E2=80=99.