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 EC65E429E26 for ; Tue, 13 Dec 2011 02:38:54 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.799 X-Spam-Level: X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] 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 bEWHZa85941W for ; Tue, 13 Dec 2011 02:38:54 -0800 (PST) Received: from mail-qw0-f53.google.com (mail-qw0-f53.google.com [209.85.216.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 50CD2429E25 for ; Tue, 13 Dec 2011 02:38:54 -0800 (PST) Received: by qadb15 with SMTP id b15so5330007qad.5 for ; Tue, 13 Dec 2011 02:38:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=message-id:content-type:mime-version:content-transfer-encoding :references:to:in-reply-to:from:subject:date; bh=84mBR6P/XO1wVYdY7Uy1FKI1wRpGj39B4nxmO84vaRM=; b=fs0Nt4ssjlndHpcBDpvbaSgaRuJ8wTKcbM4fGefCU1JCB2vWkENTHhA2j9/q4ic1HL i42D/he9rQL64kIysrHH4gSuWofXgSPywNNjrO54jZO7dgLkBekfOc/SmDETPTe3Wr2a MloKtggdgpweyt/KceA7CCFyv4IMRH4CaMOtE= Received: by 10.224.32.16 with SMTP id a16mr1879456qad.85.1323772732159; Tue, 13 Dec 2011 02:38:52 -0800 (PST) Received: from localhost (cpc1-sgyl2-0-0-cust548.18-2.cable.virginmedia.com. [82.41.10.37]) by mx.google.com with ESMTPS id cd3sm42794835qab.5.2011.12.13.02.38.48 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 13 Dec 2011 02:38:49 -0800 (PST) Message-ID: <4ee72b39.c3b6e00a.59b4.ffffd012@mx.google.com> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable References: <4ee50aa4.456db40a.587a.ffffd911@mx.google.com> <874nx6642z.fsf@servo.finestructure.net> To: Jameson Graef Rollins , notmuch@notmuchmail.org In-Reply-To: <874nx6642z.fsf@servo.finestructure.net> From: Patrick Totzke Subject: Re: [alot] announcing v0.2 aka. "robot santa" Date: Tue, 13 Dec 2011 10:38:46 +0000 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: Tue, 13 Dec 2011 10:38:55 -0000 Thx Adrian & Jamie! It would be great to get it into Debian, yes. I will have a look at Debian = packaging if we don't find a more capable volunteer in the next few weeks. Thanks for your initial work on this. While we're at it: I heard that there are some build scripts for Arch and G= entoo around. If you authored one of these step forward: I'd gladly include them to the g= it repo. Quoting Jameson Graef Rollins (2011-12-12 00:14:10) >Hey, Patrick. I'm guessing this isn't actually an alot issue, but when >I start up alot I get the following message to the terminal: > >/usr/lib/python2.7/dist-packages/zope/__init__.py:3: UserWarning: Module a= rgparse was already imported from /usr/lib/python2.7/argparse.pyc, but /usr= /lib/python2.7/dist-packages is being added to sys.path > import pkg_resources > >Any idea what's going on there? I have seen this before yes. It seems to be a problem with the python distr= ibution on debian. Apparently, you have two different versions of the argparse module = installed: As of 2.7, argparse is part of the standard lib, but debian ships a separate p= ackage python-argparse. What happens is that I import argparse to alot, which happens to pick the o= ne from "/usr/lib/python2.7/argparse.pyc". Now zope (a 2nd order dependency) explic= itly imports "/usr/lib/python2.7/dist-packages/argparse.pyc" and warns that its overload= ing this namespace. Also see https://bugs.launchpad.net/debian/+source/distribute/+bug/810019 f= or a similar problem with python-distribute, particularly comment #9. Best, /p