From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: Re: [PATCH 3/6] gnu: attic: Specify dependency on python-llfuse@0.41. Date: Tue, 15 Mar 2016 11:58:59 +0300 Message-ID: <87d1qw2k30.fsf@gmail.com> References: 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]:33335) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1afkoP-0003N2-QX for guix-devel@gnu.org; Tue, 15 Mar 2016 04:58:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1afkoL-0006Cy-Qp for guix-devel@gnu.org; Tue, 15 Mar 2016 04:58:45 -0400 Received: from mail-lb0-x243.google.com ([2a00:1450:4010:c04::243]:35405) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1afkoL-0006Cm-IO for guix-devel@gnu.org; Tue, 15 Mar 2016 04:58:41 -0400 Received: by mail-lb0-x243.google.com with SMTP id wn5so1005304lbb.2 for ; Tue, 15 Mar 2016 01:58:41 -0700 (PDT) In-Reply-To: (Leo Famulari's message of "Mon, 14 Mar 2016 19:34:23 -0400") 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: Leo Famulari Cc: guix-devel@gnu.org Leo Famulari (2016-03-15 02:34 +0300) wrote: > * gnu/packages/backup.scm (attic)[inputs]: Specify dependency on > python-llfuse@0.41. > --- > gnu/packages/backup.scm | 12 ++++++++++-- > 1 file changed, 10 insertions(+), 2 deletions(-) > > > diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm > index aa8ccbc..88b54f0 100644 > --- a/gnu/packages/backup.scm > +++ b/gnu/packages/backup.scm > @@ -348,8 +348,16 @@ rdiff-backup is easy to use and settings have sensib= le defaults.") > (inputs > `(("acl" ,acl) > ("openssl" ,openssl) > - ("python-llfuse" ,python-llfuse) > - ("python-msgpack" ,python-msgpack))) > + ("python-msgpack" ,python-msgpack) > + > + ;; Attic is probably incompatible with llfuse > 0.41. > + ;; These links are to discussions of llfuse compatibility from > + ;; the borg project. Borg is a recent fork of attic, and attic > + ;; has not been updated since the fork, so it's likely that > + ;; llfuse compatibility requirements are still the same. > + ;; https://github.com/borgbackup/borg/issues/642 > + ;; https://github.com/borgbackup/borg/issues/643 > + ("python-llfuse" ,python-llfuse@0.41))) You use a variable =E2=80=98python-llfuse@0.41=E2=80=99 (which should be =E2=80=98python-llfuse-0.41=E2=80=99 IMO) that does not exist yet, as it wi= ll be introduced in the next patch. I think you should swap patches 3 and 4. --=20 Alex