From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Monad code changes Date: Wed, 14 Jan 2015 21:59:22 +0100 Message-ID: <877fwp3wph.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53110) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YBV2I-00029Q-Oa for guix-devel@gnu.org; Wed, 14 Jan 2015 15:59:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YBV2C-0003fH-Un for guix-devel@gnu.org; Wed, 14 Jan 2015 15:59:30 -0500 Received: from hera.aquilenet.fr ([2a01:474::1]:40287) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YBV2C-0003f7-O9 for guix-devel@gnu.org; Wed, 14 Jan 2015 15:59:24 -0500 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 3DE354446 for ; Wed, 14 Jan 2015 21:59:23 +0100 (CET) Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id JioDWNJGDE34 for ; Wed, 14 Jan 2015 21:59:23 +0100 (CET) Received: from pluto (reverse-83.fdn.fr [80.67.176.83]) by hera.aquilenet.fr (Postfix) with ESMTPSA id E762D3F1F for ; Wed, 14 Jan 2015 21:59:22 +0100 (CET) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Guix-devel Commit e87f059 moved monadic procedures =E2=80=9Cwhere they belong=E2=80=9D= =E2=80=93essentially grouping them by abstraction layer rather than by programming style, which meant everything in (guix monads). This has then allowed the conversion of the code to download the package source (the =E2=80=98method=E2=80=99 field of =E2=80=98origin=E2=80=99) to = use monadic style, in commit f220a83. So the API is slowly but surely converging to a unified style. The last step will be to convert build systems to monads + gexps, hopefully in the next =E2=80=98core-updates=E2=80=99 because that will require rebuilds. Ludo=E2=80=99.