From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36415) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cxgyk-0005be-5Q for guix-patches@gnu.org; Mon, 10 Apr 2017 17:36:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cxgyg-0008GB-4q for guix-patches@gnu.org; Mon, 10 Apr 2017 17:36:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43413) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cxgyg-0008G5-0n for guix-patches@gnu.org; Mon, 10 Apr 2017 17:36:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cxgyf-0003Sg-Ov for guix-patches@gnu.org; Mon, 10 Apr 2017 17:36:01 -0400 Subject: bug#26373: [PATCH 2/6] import cran: Add predicate for Bioconductor experiment packages. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20170405164210.29428-1-rekado@elephly.net> <20170405164210.29428-2-rekado@elephly.net> <87vaqcegk7.fsf@gnu.org> <87lgr81idy.fsf@elephly.net> Date: Mon, 10 Apr 2017 23:34:51 +0200 In-Reply-To: <87lgr81idy.fsf@elephly.net> (Ricardo Wurmus's message of "Mon, 10 Apr 2017 15:50:33 +0200") Message-ID: <878tn8eykk.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Ricardo Wurmus Cc: 26373@debbugs.gnu.org Ricardo Wurmus skribis: > Ludovic Court=C3=A8s writes: > >> Ricardo Wurmus skribis: >> >>> * guix/import/cran.scm (bioconductor-experiment-package?): New variable. >> >> It seems to be a private and unused procedure. Is it really needed? >> :-) > > Oh, it wasn=E2=80=99t supposed to be private. There are three kinds of > bioconductor packages: the normal ones, experiment packages, and > annotation packages. > > The latter two cannot be updated the usual way, so they are excluded > from =E2=80=9Cbioconductor-package?=E2=80=9D, but I thought that one may = still want to > be able to distinguish between them. It=E2=80=99s true, though, that the= re=E2=80=99s > nothing that can use =E2=80=9Cbioconductor-experiment-package?=E2=80=9D y= et, but it=E2=80=99s > possible to add an updater for just the experiment packages. (They use > a different SVN repository.) OK, I see. Make sure to export it, then! :-) Thanks for the explanation, Ludo=E2=80=99.