From owner-freebsd-ports@FreeBSD.ORG Fri Aug 1 03:35:16 2014 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 32A94153 for ; Fri, 1 Aug 2014 03:35:16 +0000 (UTC) Received: from mail-wi0-x234.google.com (mail-wi0-x234.google.com [IPv6:2a00:1450:400c:c05::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C408722D8 for ; Fri, 1 Aug 2014 03:35:15 +0000 (UTC) Received: by mail-wi0-f180.google.com with SMTP id n3so614250wiv.13 for ; Thu, 31 Jul 2014 20:35:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc:content-type:content-transfer-encoding; bh=rfANCzXMd/hQ8H/R0zf5r7CghI5z55IWawodCRIWqD0=; b=sglIS/1+ZqRqzo6hy6mdUSIAebOScYgxnGChEoLTdPRTF9y3yAQgPkIFE0O8t7k7+/ pDSsl7b1Pf7NivfJN3IywKPgKlDrHq7FaCIF3bHq7vpnrzDTo8ifg8JNV+HTJExZZicy Hxdr7IgJI393Yn+SPcpOUMyPsQ7eHP+8JJLdRrn6NDhOBLOwC1dCN7IopqyuBQti9f0c 2deSVYFMBUsffl5mL1eNw3yVkquWLbGkfX5oEmKv8w+5k7POw3XFXS97N2TteujVcZlz LcSO5nafq069bW+QCWu8AJEPGM85ATB89Y/7A0V8PAJMB43eY2OpggAKlT8UFB55skEI Id1Q== X-Received: by 10.180.205.212 with SMTP id li20mr2798627wic.2.1406864113004; Thu, 31 Jul 2014 20:35:13 -0700 (PDT) MIME-Version: 1.0 Sender: nicovit@gmail.com Received: by 10.180.4.73 with HTTP; Thu, 31 Jul 2014 20:34:32 -0700 (PDT) In-Reply-To: <53DAA828.90205@klahnpages.net> References: <53DAA828.90205@klahnpages.net> From: Nicola Vitale Date: Fri, 1 Aug 2014 05:34:32 +0200 X-Google-Sender-Auth: kGDzDrYFcXE8SeKjSjZfNygvf2s Message-ID: Subject: Re: FreeBSD Port: google-appengine-1.9.6 To: Brian Klahn Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: ports@freebsd.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Aug 2014 03:35:16 -0000 Hi Brian, > [2014-07-31 22:33 GMT+02:00 Brian Klahn ] > Might you be able to help me? I've been searching for hours. Is your port > supposed to allow this to not fail?: > >>>> from google.appengine.api import mail > Traceback (most recent call last): > File "", line 1, in > ImportError: No module named google.appengine.api You have to add /usr/local/share/google-appengine to the environment variab= le PYTHONPATH or to sys.path in your scripts: =E2=9E=9C ~ python Python 2.7.8 (default, Jul 19 2014, 13:56:51) [GCC 4.2.1 Compatible FreeBSD Clang 3.3 (tags/RELEASE_33/final 183502)] on freebsd10 Type "help", "copyright", "credits" or "license" for more information. >>> from google.appengine.api import mail Traceback (most recent call last): File "", line 1, in ImportError: No module named google.appengine.api >>> import sys >>> sys.path.insert(1, '/usr/local/share/google-appengine') >>> from google.appengine.api import mail >>> Best regards. -- Nicola Vitale