Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 93040431FBD for ; Sat, 2 Mar 2013 16:17:00 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0.001 X-Spam-Level: X-Spam-Status: No, score=0.001 tagged_above=-999 required=5 tests=[MIME_QP_LONG_LINE=0.001] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gOKASOEbczK6 for ; Sat, 2 Mar 2013 16:17:00 -0800 (PST) Received: from smtp.rcn.com (smtp.rcn.com [69.168.97.78]) by olra.theworths.org (Postfix) with ESMTP id E035C431FAF for ; Sat, 2 Mar 2013 16:16:59 -0800 (PST) X_CMAE_Category: 0,0 Undefined,Undefined X-CNFS-Analysis: v=2.0 cv=cKhiQyiN c=1 sm=0 a=C2bPeGdon5f+QfTtoGFpIg==:17 a=97V-WqMTq8EA:10 a=3wHbS4G-AAAA:8 a=dSxMaU7jJ00A:10 a=zd2uoN0lAAAA:8 a=By_YAzpLAAAA:8 a=NEAV23lmAAAA:8 a=4A4OpbE5Pd7i6XWksjAA:9 a=wu_e27o_rKQA:10 a=C2bPeGdon5f+QfTtoGFpIg==:117 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine Authentication-Results: smtp02.rcn.cmh.synacor.com header.from=wuzzeb@wuzzeb.org; sender-id=pass Authentication-Results: smtp02.rcn.cmh.synacor.com smtp.mail=wuzzeb@wuzzeb.org; spf=pass; sender-id=pass Received-SPF: pass (smtp02.rcn.cmh.synacor.com: domain wuzzeb.org designates 205.178.10.182 as permitted sender) Received: from [205.178.10.182] ([205.178.10.182:58943] helo=wuzzeb.org) by smtp.rcn.com (envelope-from ) (ecelerity 2.2.3.49 r(42060/42061)) with ESMTP id 41/E2-25623-A7692315; Sat, 02 Mar 2013 19:16:58 -0500 Received: from wuzzeb by wuzzeb.org with local (Exim 4.80.1) (envelope-from ) id 1UBwbq-0003ss-92; Sat, 02 Mar 2013 18:16:58 -0600 From: =?utf-8?Q?John_Lenz?= To: =?utf-8?Q?Mark_Anderson?= Subject: Re: notmuch webmails In-reply-to: <3wd1uc0z3gb.fsf@testarossa.amd.com> References: <20130214204917.12166.59790@hermes> <87d2w2ml8n.fsf@endefensadelsl.org> <20130216195946.21525.5975@mail-np.tu.ail> <87txpb5b7o.fsf@zancas.localnet> <20130219155005.2945.90450@mail-np.tu.ail> <3wd1uc0z3gb.fsf@testarossa.amd.com> MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Message-Id: Sender: Date: Sat, 02 Mar 2013 18:16:58 -0600 Cc: notmuch@notmuchmail.org X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2013 00:17:00 -0000 On 2013-02-28 18:41:08 UTC, Mark Anderson wrote: > John, > > Where should I look to figure out how to resolve these dependencies? > On a fresh install from scratch today I got the same problem, and was able to=20= resolve it by first installing yesod-platform and then after that the few addit= ional dependencies. I can't wait until stackage (http://www.yesodweb.com/blog/= 2012/11/solving-cabal-hell) is functional, hackage can be great for weeks and=20= then on some random day have dependency problems. Looks like the github projec= t is active https://github.com/fpco/stackage so hopefully it will be soon. =20= In any case, I don't think the "--only-dependencies" flag works very well, so=20= "cabal install yesod-platform" lets cabal figure out better what to install. How I got it to work is rm -r ~/.ghc ~/.cabal cabal update cabal install yesod-platform cd path/to/notmuch-web cabal install --only-dependencies yesod devel As a side note, I plan on creating some binaries and marking the first release=20= later today. Also, if I put it on hackage it should be "cabal install notmuch-= web", and then cabal seems to be better at figuring out what to do. John