Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mako Lookup Exception for Namespace in 1.3.1 #606

Closed
jayd3e opened this issue May 20, 2012 · 18 comments
Closed

Mako Lookup Exception for Namespace in 1.3.1 #606

jayd3e opened this issue May 20, 2012 · 18 comments

Comments

@jayd3e
Copy link
Contributor

jayd3e commented May 20, 2012

Issue

When I attempt to load a page, and it's respective template includes a <%namespace>, I receive the following error https://gist.github.com/2732756. I looked into it, and it definitely has something to do with this recent change:

-We now replace the colon in the Mako module filename with a dollar sign, so it can work on Windows. See #512 for more information.

The template lookup works fine for the base template, but somehow the template.uri gets changed to an asset spec, where the ':' is replaced with a '$'. Then on subsequent lookups for the base template's resources(inherited templates and namespaces), mako attempts to use the modified asset spec and doesn't know what to do with it.

How to Reproduce

I haven't tested this, but I'm pretty sure it can be reproduced simply by including a namespace within a template and attaching that template to a view.

@aclark4life
Copy link

Yep, me too in 1.3.2: https://gist.github.com/2766150

@blaflamme
Copy link
Member

Overriding a template using asset specs no longer works :(

@mcdonc
Copy link
Member

mcdonc commented Jun 29, 2012

FWIW, @aclark4life reported that pull #607 doesn't fix the issue for him.

@aclark4life
Copy link

Sorry, I should have added a comment here. I pip installed my pyramid 1.3 site, then:

$ bin/pip install -e git+https://github.com/aodag/pyramid/tree/fix.mako_inheritance#egg=pyramid -U

Then ran pyramid and loaded a page. I still get:

TemplateLookupException: Cant locate template for uri u'vanity_app$templates/header.html'

@blaflamme
Copy link
Member

The problem seems to be related with the inherited template who already get the myproject$templates/base.mako format instead of the original uri so the conditional is not called and then it tries to render immediately. Switching back $ for : at the beginning solves the problem with inherited templates, if we assume we always switch : for $ for windows. The problem probably also exists on windows too, wouldn't be better to look for windows and then apply the $ hack instead of using it for all platforms?

@blaflamme
Copy link
Member

@jayd3e
Copy link
Contributor Author

jayd3e commented Jul 12, 2012

Just wanted to say that blaise's fix worked for me.

@aclark4life
Copy link

I still get an error (on a clean build):

aclark@Alexs-MacBook-Pro-2:~/Developer/pythonpackages.com/ > virtualenv .
New python executable in ./bin/python2.7
Also creating executable in ./bin/python
Installing distribute..............................................................................................................................................................................................done.
Installing pip...............done.
aclark@Alexs-MacBook-Pro-2:~/Developer/pythonpackages.com/ > bin/pip install -r requirements.txt 
Unpacking ./vendor/python-dateutil-1.5.tar.gz
  Running setup.py egg_info for package from file:///Users/aclark/Developer/pythonpackages.com/vendor/python-dateutil-1.5.tar.gz

Unpacking ./src/vanity_app
  Running setup.py egg_info for package from file:///Users/aclark/Developer/pythonpackages.com/src/vanity_app
    /Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'paster_plugins'
      warnings.warn(msg)

Downloading/unpacking distribute==0.6.27 (from -r requirements.txt (line 1))
  Downloading distribute-0.6.27.tar.gz (624Kb): 624Kb downloaded
  Running setup.py egg_info for package distribute

Downloading/unpacking errormator-client==0.4 (from -r requirements.txt (line 2))
  Downloading errormator_client-0.4.tar.gz
  Running setup.py egg_info for package errormator-client

Downloading/unpacking grizzled-python==1.0.2 (from -r requirements.txt (line 3))
  Downloading grizzled-python-1.0.2.tar.gz (62Kb): 62Kb downloaded
  Running setup.py egg_info for package grizzled-python

Downloading/unpacking pycryptopp (from -r requirements.txt (line 4))
  Downloading pycryptopp-0.6.0.1206569328141510525648634803928199668821045408958.tar.gz (2.0Mb): 2.0Mb downloaded
  Running setup.py egg_info for package pycryptopp

Obtaining pyramid from git+git://github.com/Pylons/pyramid.git#egg=pyramid (from -r requirements.txt (line 7))
  Cloning git://github.com/Pylons/pyramid.git to ./src/pyramid
  Running setup.py egg_info for package pyramid

Downloading/unpacking ZopeSkel==2.21.2 (from -r requirements.txt (line 10))
  Downloading ZopeSkel-2.21.2.zip (353Kb): 353Kb downloaded
  Running setup.py egg_info for package ZopeSkel

Downloading/unpacking Paste (from vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading Paste-1.7.5.1.tar.gz (523Kb): 523Kb downloaded
  Running setup.py egg_info for package Paste

    warning: no previously-included files matching '*' found under directory 'docs/_build/_sources'
Downloading/unpacking deform (from vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading deform-0.9.5.tar.gz (1.3Mb): 1.3Mb downloaded
  Running setup.py egg_info for package deform

Downloading/unpacking deform-bootstrap (from vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading deform_bootstrap-0.2.2.tar.gz (172Kb): 172Kb downloaded
  Running setup.py egg_info for package deform-bootstrap

Downloading/unpacking docutils (from vanity-app==0.0.0->-r requirements.txt (line 8))
  Error timed out while getting http://prdownloads.sourceforge.net/docutils/docutils-0.9.1.tar.gz?download (from http://docutils.sourceforge.net/)
Exception:
Traceback (most recent call last):
  File "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/pip-1.1-py2.7.egg/pip/basecommand.py", line 104, in main
    status = self.run(options, args)
  File "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/pip-1.1-py2.7.egg/pip/commands/install.py", line 245, in run
    requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bundle=self.bundle)
  File "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/pip-1.1-py2.7.egg/pip/req.py", line 985, in prepare_files
    self.unpack_url(url, location, self.is_download)
  File "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/pip-1.1-py2.7.egg/pip/req.py", line 1109, in unpack_url
    retval = unpack_http_url(link, location, self.download_cache, self.download_dir)
  File "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/pip-1.1-py2.7.egg/pip/download.py", line 431, in unpack_http_url
    resp = _get_response_from_url(target_url, link)
  File "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/pip-1.1-py2.7.egg/pip/download.py", line 466, in _get_response_from_url
    resp = urlopen(target_url)
  File "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/pip-1.1-py2.7.egg/pip/download.py", line 85, in __call__
    response = urllib2.urlopen(self.get_request(url))
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/urllib2.py", line 126, in urlopen
    return _opener.open(url, data, timeout)
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/urllib2.py", line 406, in open
    response = meth(req, response)
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/urllib2.py", line 519, in http_response
    'http', request, response, code, msg, hdrs)
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/urllib2.py", line 438, in error
    result = self._call_chain(*args)
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/urllib2.py", line 378, in _call_chain
    result = func(*args)
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/urllib2.py", line 625, in http_error_302
    return self.parent.open(new, timeout=req.timeout)
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/urllib2.py", line 406, in open
    response = meth(req, response)
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/urllib2.py", line 519, in http_response
    'http', request, response, code, msg, hdrs)
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/urllib2.py", line 438, in error
    result = self._call_chain(*args)
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/urllib2.py", line 378, in _call_chain
    result = func(*args)
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/urllib2.py", line 625, in http_error_302
    return self.parent.open(new, timeout=req.timeout)
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/urllib2.py", line 400, in open
    response = self._open(req, data)
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/urllib2.py", line 418, in _open
    '_open', req)
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/urllib2.py", line 378, in _call_chain
    result = func(*args)
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/urllib2.py", line 1207, in http_open
    return self.do_open(httplib.HTTPConnection, req)
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/urllib2.py", line 1180, in do_open
    r = h.getresponse(buffering=True)
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/httplib.py", line 1030, in getresponse
    response.begin()
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/httplib.py", line 407, in begin
    version, status, reason = self._read_status()
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/httplib.py", line 365, in _read_status
    line = self.fp.readline()
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/socket.py", line 447, in readline
    data = self._sock.recv(self._rbufsize)
timeout: timed out

Storing complete log in /Users/aclark/.pip/pip.log
aclark@Alexs-MacBook-Pro-2:~/Developer/pythonpackages.com/ > bin/pip install -r requirements.txt
Unpacking ./vendor/python-dateutil-1.5.tar.gz
  Running setup.py egg_info for package from file:///Users/aclark/Developer/pythonpackages.com/vendor/python-dateutil-1.5.tar.gz

Unpacking ./src/vanity_app
  Running setup.py egg_info for package from file:///Users/aclark/Developer/pythonpackages.com/src/vanity_app
    /Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'paster_plugins'
      warnings.warn(msg)

Downloading/unpacking distribute==0.6.27 (from -r requirements.txt (line 1))
  Running setup.py egg_info for package distribute

Downloading/unpacking errormator-client==0.4 (from -r requirements.txt (line 2))
  Running setup.py egg_info for package errormator-client

Downloading/unpacking grizzled-python==1.0.2 (from -r requirements.txt (line 3))
  Running setup.py egg_info for package grizzled-python

Downloading/unpacking pycryptopp (from -r requirements.txt (line 4))
  Running setup.py egg_info for package pycryptopp

Obtaining pyramid from git+git://github.com/Pylons/pyramid.git#egg=pyramid (from -r requirements.txt (line 7))
  Updating ./src/pyramid clone
  Running setup.py egg_info for package pyramid

Downloading/unpacking ZopeSkel==2.21.2 (from -r requirements.txt (line 10))
  Running setup.py egg_info for package ZopeSkel

Downloading/unpacking Paste (from vanity-app==0.0.0->-r requirements.txt (line 8))
  Running setup.py egg_info for package Paste

    warning: no previously-included files matching '*' found under directory 'docs/_build/_sources'
Downloading/unpacking deform (from vanity-app==0.0.0->-r requirements.txt (line 8))
  Running setup.py egg_info for package deform

Downloading/unpacking deform-bootstrap (from vanity-app==0.0.0->-r requirements.txt (line 8))
  Running setup.py egg_info for package deform-bootstrap

Downloading/unpacking docutils (from vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading docutils-0.9.1.tar.gz (1.5Mb): 1.5Mb downloaded
  Running setup.py egg_info for package docutils

    warning: no files found matching 'MANIFEST'
    warning: no files found matching '*' under directory 'extras'
    warning: no previously-included files matching '.cvsignore' found under directory '*'
    warning: no previously-included files matching '*.pyc' found under directory '*'
    warning: no previously-included files matching '*~' found under directory '*'
    warning: no previously-included files matching '.DS_Store' found under directory '*'
Downloading/unpacking fortune (from vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading fortune-1.0.zip
  Running setup.py egg_info for package fortune

Downloading/unpacking pbs (from vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading pbs-0.107.tar.gz
  Running setup.py egg_info for package pbs

Downloading/unpacking pypi.trashfinder (from vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading pypi.trashfinder-0.0.5.tar.gz
  Running setup.py egg_info for package pypi.trashfinder

Downloading/unpacking pyramid-beaker (from vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading pyramid_beaker-0.7.tar.gz
  Running setup.py egg_info for package pyramid-beaker

Downloading/unpacking python-twitter (from vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading python-twitter-0.8.2.tar.gz (63Kb): 63Kb downloaded
  Running setup.py egg_info for package python-twitter

    no previously-included directories found matching '.DS_Store'
Downloading/unpacking redis (from vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading redis-2.4.13.tar.gz
  Running setup.py egg_info for package redis

Downloading/unpacking requests (from vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading requests-0.13.2.tar.gz (514Kb): 514Kb downloaded
  Running setup.py egg_info for package requests

    warning: no files found matching 'tests/*.'
Downloading/unpacking rq (from vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading rq-0.1.2.tar.gz
  Running setup.py egg_info for package rq

Downloading/unpacking stripe (from vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading stripe-1.7.2.tar.gz (140Kb): 140Kb downloaded
  Running setup.py egg_info for package stripe

Downloading/unpacking vanity (from vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading vanity-1.2.1.tar.gz
  Running setup.py egg_info for package vanity

Downloading/unpacking waitress (from vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading waitress-0.8.1.tar.gz (102Kb): 102Kb downloaded
  Running setup.py egg_info for package waitress

Downloading/unpacking yolk (from vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading yolk-0.4.3.tar.gz (86Kb): 86Kb downloaded
  Running setup.py egg_info for package yolk

    warning: no files found matching '*.txt' under directory 'tests'
    warning: no files found matching '*.conf' under directory 'docs'
    warning: no files found matching '*.css_t' under directory 'docs'
    warning: no files found matching 'indexsidebar.html' under directory 'docs'
    warning: no files found matching 'tests/test_cli.py'
Downloading/unpacking webob (from errormator-client==0.4->-r requirements.txt (line 2))
  Downloading WebOb-1.2.zip (216Kb): 216Kb downloaded
  Running setup.py egg_info for package webob

    no previously-included directories found matching '*.pyc'
    no previously-included directories found matching '*.pyo'
Downloading/unpacking decorator (from errormator-client==0.4->-r requirements.txt (line 2))
  Downloading decorator-3.3.3.tar.gz
  Running setup.py egg_info for package decorator

    warning: no previously-included files found matching 'Makefile'
Downloading/unpacking enum>=0.4.4 (from grizzled-python==1.0.2->-r requirements.txt (line 3))
  Downloading enum-0.4.4.tar.gz
  Running setup.py egg_info for package enum

Downloading/unpacking Chameleon>=1.2.3 (from pyramid->-r requirements.txt (line 7))
  Downloading Chameleon-2.9.2.tar.gz (151Kb): 151Kb downloaded
  Running setup.py egg_info for package Chameleon

Downloading/unpacking Mako>=0.3.6 (from pyramid->-r requirements.txt (line 7))
  Downloading Mako-0.7.1.tar.gz (400Kb): 400Kb downloaded
  Running setup.py egg_info for package Mako

    warning: no files found matching '*.xml' under directory 'examples'
    warning: no files found matching '*.mako' under directory 'examples'
    warning: no files found matching 'ez_setup.py'
    no previously-included directories found matching 'doc/build/output'
Downloading/unpacking repoze.lru>=0.4 (from pyramid->-r requirements.txt (line 7))
  Downloading repoze.lru-0.6.tar.gz
  Running setup.py egg_info for package repoze.lru

Downloading/unpacking zope.interface>=3.8.0 (from pyramid->-r requirements.txt (line 7))
  Downloading zope.interface-4.0.1.tar.gz (136Kb): 136Kb downloaded
  Running setup.py egg_info for package zope.interface

Downloading/unpacking zope.deprecation>=3.5.0 (from pyramid->-r requirements.txt (line 7))
  Downloading zope.deprecation-4.0.0.tar.gz
  Running setup.py egg_info for package zope.deprecation

Downloading/unpacking venusian>=1.0a3 (from pyramid->-r requirements.txt (line 7))
  Downloading venusian-1.0a6.tar.gz (43Kb): 43Kb downloaded
  Running setup.py egg_info for package venusian

Downloading/unpacking translationstring>=0.4 (from pyramid->-r requirements.txt (line 7))
  Downloading translationstring-1.1.tar.gz
  Running setup.py egg_info for package translationstring

    no previously-included directories found matching 'docs/_build'
Downloading/unpacking PasteDeploy>=1.5.0 (from pyramid->-r requirements.txt (line 7))
  Downloading PasteDeploy-1.5.0.tar.gz
  Running setup.py egg_info for package PasteDeploy

Downloading/unpacking PasteScript>=1.7.2 (from ZopeSkel==2.21.2->-r requirements.txt (line 10))
  Downloading PasteScript-1.7.5.tar.gz (129Kb): 129Kb downloaded
  Running setup.py egg_info for package PasteScript

    warning: no previously-included files matching '*' found under directory 'docs/_build/_sources'
    warning: no files found matching '*.js' under directory 'paste'
    warning: no files found matching '*.jpg' under directory 'paste'
Downloading/unpacking Cheetah>1.0,<=2.2.1 (from ZopeSkel==2.21.2->-r requirements.txt (line 10))
  Downloading Cheetah-2.2.1.tar.gz (243Kb): 243Kb downloaded
  Running setup.py egg_info for package Cheetah

    warning: no files found matching '*.cfg'
    warning: no files found matching 'examples'
    warning: no files found matching 'docs'
    warning: no files found matching 'bin'
    warning: no files found matching '*' under directory 'docs'
    warning: no files found matching '*' under directory 'examples'
    warning: no previously-included files matching '*.pyc' found under directory 'src'
    warning: no previously-included files matching '*~' found under directory 'src'
    warning: no previously-included files matching '*.aux' found under directory 'src'
    warning: no previously-included files matching '*~' found under directory 'docs'
    warning: no previously-included files matching '*.aux' found under directory 'docs'
Downloading/unpacking colander>=0.8 (from deform->vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading colander-0.9.8.tar.gz (81Kb): 81Kb downloaded
  Running setup.py egg_info for package colander

Downloading/unpacking peppercorn>=0.3 (from deform->vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading peppercorn-0.4.tar.gz
  Running setup.py egg_info for package peppercorn

Downloading/unpacking beaker (from pyramid-beaker->vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading Beaker-1.6.3.tar.gz (52Kb): 52Kb downloaded
  Running setup.py egg_info for package beaker

Downloading/unpacking simplejson (from python-twitter->vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading simplejson-2.6.0.tar.gz (53Kb): 53Kb downloaded
  Running setup.py egg_info for package simplejson

Downloading/unpacking oauth2 (from python-twitter->vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading oauth2-1.5.211.tar.gz
  Running setup.py egg_info for package oauth2

Downloading/unpacking procname (from rq->vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading procname-0.3.tar.gz
  Running setup.py egg_info for package procname

Downloading/unpacking times (from rq->vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading times-0.4.tar.gz
  Running setup.py egg_info for package times

Downloading/unpacking logbook (from rq->vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading Logbook-0.3.tar.gz (89Kb): 89Kb downloaded
  Running setup.py egg_info for package logbook

Downloading/unpacking blessings (from vanity->vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading blessings-1.5.tar.gz
  Running setup.py egg_info for package blessings

Downloading/unpacking MarkupSafe>=0.9.2 (from Mako>=0.3.6->pyramid->-r requirements.txt (line 7))
  Downloading MarkupSafe-0.15.tar.gz
  Running setup.py egg_info for package MarkupSafe

Downloading/unpacking httplib2 (from oauth2->python-twitter->vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading httplib2-0.7.4.zip (112Kb): 112Kb downloaded
  Running setup.py egg_info for package httplib2

Downloading/unpacking pytz (from times->rq->vanity-app==0.0.0->-r requirements.txt (line 8))
  Downloading pytz-2012c.tar.bz2 (166Kb): 166Kb downloaded
  Running setup.py egg_info for package pytz

    warning: no files found matching '*.pot' under directory 'pytz'
    warning: no previously-included files found matching 'test_zdump.py'
Installing collected packages: distribute, errormator-client, grizzled-python, pycryptopp, pyramid, ZopeSkel, python-dateutil, Paste, deform, deform-bootstrap, docutils, fortune, pbs, pypi.trashfinder, pyramid-beaker, python-twitter, redis, requests, rq, stripe, vanity, waitress, yolk, vanity-app, webob, decorator, enum, Chameleon, Mako, repoze.lru, zope.interface, zope.deprecation, venusian, translationstring, PasteDeploy, PasteScript, Cheetah, colander, peppercorn, beaker, simplejson, oauth2, procname, times, logbook, blessings, MarkupSafe, httplib2, pytz
  Found existing installation: distribute 0.6.24
    Uninstalling distribute:
      Successfully uninstalled distribute
  Running setup.py install for distribute
    Before install bootstrap.
    Scanning installed packages
    No setuptools distribution found

    Installing easy_install script to /Users/aclark/Developer/pythonpackages.com/bin
    Installing easy_install-2.7 script to /Users/aclark/Developer/pythonpackages.com/bin
    After install bootstrap.
    Don't have permissions to write /Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg-info, skipping
    Creating /Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/setuptools-0.6c11-py2.7.egg-info
    Creating /Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/setuptools.pth
  Running setup.py install for errormator-client

  Running setup.py install for grizzled-python

  Running setup.py install for pycryptopp

    building 'pycryptopp._pycryptopp' extension
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/algebra.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/algebra.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/algparam.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/algparam.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/asn.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/asn.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/basecode.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/basecode.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/cpu.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/cpu.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/cryptlib.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/cryptlib.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/des.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/des.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/dessp.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/dessp.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/dll.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/dll.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/dsa.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/dsa.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/ec2n.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/ec2n.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/eccrypto.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/eccrypto.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/ecp.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/ecp.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/eprecomp.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/eprecomp.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/filters.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/filters.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/fips140.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/fips140.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/gf2n.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/gf2n.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/gfpcrypt.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/gfpcrypt.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/hex.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/hex.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/hmac.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/hmac.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/integer.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/integer.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/iterhash.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/iterhash.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/misc.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/misc.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/modes.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/modes.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/mqueue.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/mqueue.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/nbtheory.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/nbtheory.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/oaep.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/oaep.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/osrng.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/osrng.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/pkcspad.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/pkcspad.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/pssr.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/pssr.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/pubkey.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/pubkey.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/queue.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/queue.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/randpool.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/randpool.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/rdtables.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/rdtables.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/rijndael.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/rijndael.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/rng.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/rng.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/rsa.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/rsa.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/salsa.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/salsa.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/serpent.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/serpent.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/sha.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/sha.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/sosemanuk.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/sosemanuk.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/strciphr.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/strciphr.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/tiger.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/tiger.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-cryptopp/tigertab.cpp -o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/tigertab.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src/pycryptopp/_pycryptoppmodule.cpp -o build/temp.macosx-10.7-x86_64-2.7/src/pycryptopp/_pycryptoppmodule.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src/pycryptopp/publickey/rsamodule.cpp -o build/temp.macosx-10.7-x86_64-2.7/src/pycryptopp/publickey/rsamodule.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src/pycryptopp/hash/sha256module.cpp -o build/temp.macosx-10.7-x86_64-2.7/src/pycryptopp/hash/sha256module.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src/pycryptopp/cipher/aesmodule.cpp -o build/temp.macosx-10.7-x86_64-2.7/src/pycryptopp/cipher/aesmodule.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src/pycryptopp/cipher/xsalsa20module.cpp -o build/temp.macosx-10.7-x86_64-2.7/src/pycryptopp/cipher/xsalsa20module.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -DCRYPTOPP_DISABLE_ASM=1 -I. -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src/pycryptopp/publickey/ecdsamodule.cpp -o build/temp.macosx-10.7-x86_64-2.7/src/pycryptopp/publickey/ecdsamodule.o -w
    cc1plus: warning: command line option "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++
    g++ -bundle -undefined dynamic_lookup build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/algebra.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/algparam.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/asn.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/basecode.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/cpu.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/cryptlib.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/des.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/dessp.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/dll.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/dsa.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/ec2n.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/eccrypto.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/ecp.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/eprecomp.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/filters.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/fips140.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/gf2n.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/gfpcrypt.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/hex.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/hmac.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/integer.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/iterhash.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/misc.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/modes.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/mqueue.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/nbtheory.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/oaep.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/osrng.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/pkcspad.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/pssr.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/pubkey.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/queue.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/randpool.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/rdtables.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/rijndael.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/rng.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/rsa.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/salsa.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/serpent.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/sha.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/sosemanuk.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/strciphr.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/tiger.o build/temp.macosx-10.7-x86_64-2.7/src-cryptopp/tigertab.o build/temp.macosx-10.7-x86_64-2.7/src/pycryptopp/_pycryptoppmodule.o build/temp.macosx-10.7-x86_64-2.7/src/pycryptopp/publickey/rsamodule.o build/temp.macosx-10.7-x86_64-2.7/src/pycryptopp/hash/sha256module.o build/temp.macosx-10.7-x86_64-2.7/src/pycryptopp/cipher/aesmodule.o build/temp.macosx-10.7-x86_64-2.7/src/pycryptopp/cipher/xsalsa20module.o build/temp.macosx-10.7-x86_64-2.7/src/pycryptopp/publickey/ecdsamodule.o -o build/lib.macosx-10.7-x86_64-2.7/pycryptopp/_pycryptopp.so
    building 'pycryptopp.publickey.ed25519._ed25519' extension
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Isrc-ed25519/supercop-ref -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-ed25519/glue/ed25519module.c -o build/temp.macosx-10.7-x86_64-2.7/src-ed25519/glue/ed25519module.o
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Isrc-ed25519/supercop-ref -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-ed25519/supercop-ref/ed25519.c -o build/temp.macosx-10.7-x86_64-2.7/src-ed25519/supercop-ref/ed25519.o
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Isrc-ed25519/supercop-ref -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-ed25519/supercop-ref/fe25519.c -o build/temp.macosx-10.7-x86_64-2.7/src-ed25519/supercop-ref/fe25519.o
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Isrc-ed25519/supercop-ref -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-ed25519/supercop-ref/ge25519.c -o build/temp.macosx-10.7-x86_64-2.7/src-ed25519/supercop-ref/ge25519.o
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Isrc-ed25519/supercop-ref -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-ed25519/supercop-ref/sc25519.c -o build/temp.macosx-10.7-x86_64-2.7/src-ed25519/supercop-ref/sc25519.o
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Isrc-ed25519/supercop-ref -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-ed25519/supercop-ref/sha512-blocks.c -o build/temp.macosx-10.7-x86_64-2.7/src-ed25519/supercop-ref/sha512-blocks.o
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Isrc-ed25519/supercop-ref -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-ed25519/supercop-ref/sha512-hash.c -o build/temp.macosx-10.7-x86_64-2.7/src-ed25519/supercop-ref/sha512-hash.o
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Isrc-ed25519/supercop-ref -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src-ed25519/supercop-ref/verify.c -o build/temp.macosx-10.7-x86_64-2.7/src-ed25519/supercop-ref/verify.o
    gcc -bundle -undefined dynamic_lookup build/temp.macosx-10.7-x86_64-2.7/src-ed25519/glue/ed25519module.o build/temp.macosx-10.7-x86_64-2.7/src-ed25519/supercop-ref/ed25519.o build/temp.macosx-10.7-x86_64-2.7/src-ed25519/supercop-ref/fe25519.o build/temp.macosx-10.7-x86_64-2.7/src-ed25519/supercop-ref/ge25519.o build/temp.macosx-10.7-x86_64-2.7/src-ed25519/supercop-ref/sc25519.o build/temp.macosx-10.7-x86_64-2.7/src-ed25519/supercop-ref/sha512-blocks.o build/temp.macosx-10.7-x86_64-2.7/src-ed25519/supercop-ref/sha512-hash.o build/temp.macosx-10.7-x86_64-2.7/src-ed25519/supercop-ref/verify.o -o build/lib.macosx-10.7-x86_64-2.7/pycryptopp/publickey/ed25519/_ed25519.so
  Running setup.py develop for pyramid

    Creating /Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/pyramid.egg-link (link to .)
    Adding pyramid 1.4dev to easy-install.pth file
    Installing ptweens script to /Users/aclark/Developer/pythonpackages.com/bin
    Installing proutes script to /Users/aclark/Developer/pythonpackages.com/bin
    Installing pshell script to /Users/aclark/Developer/pythonpackages.com/bin
    Installing prequest script to /Users/aclark/Developer/pythonpackages.com/bin
    Installing pviews script to /Users/aclark/Developer/pythonpackages.com/bin
    Installing bfg2pyramid script to /Users/aclark/Developer/pythonpackages.com/bin
    Installing pcreate script to /Users/aclark/Developer/pythonpackages.com/bin
    Installing pserve script to /Users/aclark/Developer/pythonpackages.com/bin

    Installed /Users/aclark/Developer/pythonpackages.com/src/pyramid
  Running setup.py install for ZopeSkel

    Installing zopeskel script to /Users/aclark/Developer/pythonpackages.com/bin
  Running setup.py install for python-dateutil

  Running setup.py install for Paste
    Skipping installation of /Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/paste/__init__.py (namespace package)

    warning: no previously-included files matching '*' found under directory 'docs/_build/_sources'
    Installing /Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/Paste-1.7.5.1-py2.7-nspkg.pth
  Running setup.py install for deform

  Running setup.py install for deform-bootstrap

  Running setup.py install for docutils
    changing mode of build/scripts-2.7/rst2html.py from 644 to 755
    changing mode of build/scripts-2.7/rst2s5.py from 644 to 755
    changing mode of build/scripts-2.7/rst2latex.py from 644 to 755
    changing mode of build/scripts-2.7/rst2xetex.py from 644 to 755
    changing mode of build/scripts-2.7/rst2man.py from 644 to 755
    changing mode of build/scripts-2.7/rst2xml.py from 644 to 755
    changing mode of build/scripts-2.7/rst2pseudoxml.py from 644 to 755
    changing mode of build/scripts-2.7/rstpep2html.py from 644 to 755
    changing mode of build/scripts-2.7/rst2odt.py from 644 to 755
    changing mode of build/scripts-2.7/rst2odt_prepstyles.py from 644 to 755

    warning: no files found matching 'MANIFEST'
    warning: no files found matching '*' under directory 'extras'
    warning: no previously-included files matching '.cvsignore' found under directory '*'
    warning: no previously-included files matching '*.pyc' found under directory '*'
    warning: no previously-included files matching '*~' found under directory '*'
    warning: no previously-included files matching '.DS_Store' found under directory '*'
    changing mode of /Users/aclark/Developer/pythonpackages.com/bin/rst2html.py to 755
    changing mode of /Users/aclark/Developer/pythonpackages.com/bin/rst2latex.py to 755
    changing mode of /Users/aclark/Developer/pythonpackages.com/bin/rst2man.py to 755
    changing mode of /Users/aclark/Developer/pythonpackages.com/bin/rst2odt.py to 755
    changing mode of /Users/aclark/Developer/pythonpackages.com/bin/rst2odt_prepstyles.py to 755
    changing mode of /Users/aclark/Developer/pythonpackages.com/bin/rst2pseudoxml.py to 755
    changing mode of /Users/aclark/Developer/pythonpackages.com/bin/rst2s5.py to 755
    changing mode of /Users/aclark/Developer/pythonpackages.com/bin/rst2xetex.py to 755
    changing mode of /Users/aclark/Developer/pythonpackages.com/bin/rst2xml.py to 755
    changing mode of /Users/aclark/Developer/pythonpackages.com/bin/rstpep2html.py to 755
  Running setup.py install for fortune

    Installing fortune script to /Users/aclark/Developer/pythonpackages.com/bin
  Running setup.py install for pbs

  Running setup.py install for pypi.trashfinder
    Skipping installation of /Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/pypi/__init__.py (namespace package)

    Installing /Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/pypi.trashfinder-0.0.5-py2.7-nspkg.pth
  Running setup.py install for pyramid-beaker

  Running setup.py install for python-twitter

    no previously-included directories found matching '.DS_Store'
  Running setup.py install for redis

  Running setup.py install for requests

    warning: no files found matching 'tests/*.'
    SyntaxError: ('invalid syntax', ('/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/requests/packages/chardet2/test.py', 8, 27, "    print(f.ljust(60), end=' ')\n"))

  Running setup.py install for rq

    Installing rqinfo script to /Users/aclark/Developer/pythonpackages.com/bin
    Installing rqworker script to /Users/aclark/Developer/pythonpackages.com/bin
  Running setup.py install for stripe

  Running setup.py install for vanity

    Installing vanity script to /Users/aclark/Developer/pythonpackages.com/bin
  Running setup.py install for waitress

  Running setup.py install for yolk

    warning: no files found matching '*.txt' under directory 'tests'
    warning: no files found matching '*.conf' under directory 'docs'
    warning: no files found matching '*.css_t' under directory 'docs'
    warning: no files found matching 'indexsidebar.html' under directory 'docs'
    warning: no files found matching 'tests/test_cli.py'
    Installing yolk script to /Users/aclark/Developer/pythonpackages.com/bin
  Running setup.py install for vanity-app
    /Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'paster_plugins'
      warnings.warn(msg)

  Running setup.py install for webob

    no previously-included directories found matching '*.pyc'
    no previously-included directories found matching '*.pyo'
  Running setup.py install for decorator

    warning: no previously-included files found matching 'Makefile'
  Running setup.py install for enum

  Running setup.py install for Chameleon

  Running setup.py install for Mako
    changing mode of build/scripts-2.7/mako-render from 644 to 755

    warning: no files found matching '*.xml' under directory 'examples'
    warning: no files found matching '*.mako' under directory 'examples'
    warning: no files found matching 'ez_setup.py'
    no previously-included directories found matching 'doc/build/output'
    changing mode of /Users/aclark/Developer/pythonpackages.com/bin/mako-render to 755
  Running setup.py install for repoze.lru

    Skipping installation of /Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/repoze/__init__.py (namespace package)
    Installing /Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/repoze.lru-0.6-py2.7-nspkg.pth
  Running setup.py install for zope.interface

    building 'zope.interface._zope_interface_coptimizations' extension
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src/zope/interface/_zope_interface_coptimizations.c -o build/temp.macosx-10.7-x86_64-2.7/src/zope/interface/_zope_interface_coptimizations.o
    gcc -bundle -undefined dynamic_lookup build/temp.macosx-10.7-x86_64-2.7/src/zope/interface/_zope_interface_coptimizations.o -o build/lib.macosx-10.7-x86_64-2.7/zope/interface/_zope_interface_coptimizations.so
    Skipping installation of /Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/zope/__init__.py (namespace package)
    Installing /Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/zope.interface-4.0.1-py2.7-nspkg.pth
  Running setup.py install for zope.deprecation

    Skipping installation of /Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/zope/__init__.py (namespace package)
    Installing /Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/zope.deprecation-4.0.0-py2.7-nspkg.pth
  Running setup.py install for venusian

  Running setup.py install for translationstring

    no previously-included directories found matching 'docs/_build'
  Running setup.py install for PasteDeploy

    Skipping installation of /Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/paste/__init__.py (namespace package)
    Installing /Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/PasteDeploy-1.5.0-py2.7-nspkg.pth
  Running setup.py install for PasteScript
    Skipping installation of /Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/paste/__init__.py (namespace package)

    warning: no previously-included files matching '*' found under directory 'docs/_build/_sources'
    warning: no files found matching '*.js' under directory 'paste'
    warning: no files found matching '*.jpg' under directory 'paste'
    Installing /Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/PasteScript-1.7.5-py2.7-nspkg.pth
    Installing paster script to /Users/aclark/Developer/pythonpackages.com/bin
  Running setup.py install for Cheetah
    building 'Cheetah._namemapper' extension
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c src/_namemapper.c -o build/temp.macosx-10.7-x86_64-2.7/src/_namemapper.o
    gcc -bundle -undefined dynamic_lookup build/temp.macosx-10.7-x86_64-2.7/src/_namemapper.o -o build/lib.macosx-10.7-x86_64-2.7/Cheetah/_namemapper.so
    changing mode of build/scripts-2.7/cheetah-compile from 644 to 755
    changing mode of build/scripts-2.7/cheetah from 644 to 755

    warning: no files found matching '*.cfg'
    warning: no files found matching 'examples'
    warning: no files found matching 'docs'
    warning: no files found matching 'bin'
    warning: no files found matching '*' under directory 'docs'
    warning: no files found matching '*' under directory 'examples'
    warning: no previously-included files matching '*.pyc' found under directory 'src'
    warning: no previously-included files matching '*~' found under directory 'src'
    warning: no previously-included files matching '*.aux' found under directory 'src'
    warning: no previously-included files matching '*~' found under directory 'docs'
    warning: no previously-included files matching '*.aux' found under directory 'docs'
    changing mode of /Users/aclark/Developer/pythonpackages.com/bin/cheetah to 755
    changing mode of /Users/aclark/Developer/pythonpackages.com/bin/cheetah-compile to 755
  Running setup.py install for colander

  Running setup.py install for peppercorn

  Running setup.py install for beaker

  Running setup.py install for simplejson
    building 'simplejson._speedups' extension
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c simplejson/_speedups.c -o build/temp.macosx-10.7-x86_64-2.7/simplejson/_speedups.o
    simplejson/_speedups.c: In function ‘encoder_listencode_obj’:
    simplejson/_speedups.c:2269: warning: comparison of distinct pointer types lacks a cast
    simplejson/_speedups.c:2269: warning: passing argument 2 of ‘PyType_IsSubtype’ from incompatible pointer type
    gcc -bundle -undefined dynamic_lookup build/temp.macosx-10.7-x86_64-2.7/simplejson/_speedups.o -o build/lib.macosx-10.7-x86_64-2.7/simplejson/_speedups.so

  Running setup.py install for oauth2

  Running setup.py install for procname
    building 'procname' extension
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c procnamemodule.c -o build/temp.macosx-10.7-x86_64-2.7/procnamemodule.o
    gcc -bundle -undefined dynamic_lookup build/temp.macosx-10.7-x86_64-2.7/procnamemodule.o -o build/lib.macosx-10.7-x86_64-2.7/procname.so

  Running setup.py install for times

  Running setup.py install for logbook
    building 'logbook._speedups' extension
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c logbook/_speedups.c -o build/temp.macosx-10.7-x86_64-2.7/logbook/_speedups.o
    gcc -bundle -undefined dynamic_lookup build/temp.macosx-10.7-x86_64-2.7/logbook/_speedups.o -o build/lib.macosx-10.7-x86_64-2.7/logbook/_speedups.so

  Running setup.py install for blessings

  Running setup.py install for MarkupSafe

    building 'markupsafe._speedups' extension
    gcc -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/Users/aclark/Developer/buildout.python/parts/opt/include/python2.7 -c markupsafe/_speedups.c -o build/temp.macosx-10.7-x86_64-2.7/markupsafe/_speedups.o
    gcc -bundle -undefined dynamic_lookup build/temp.macosx-10.7-x86_64-2.7/markupsafe/_speedups.o -o build/lib.macosx-10.7-x86_64-2.7/markupsafe/_speedups.so
  Running setup.py install for httplib2

  Running setup.py install for pytz

    warning: no files found matching '*.pot' under directory 'pytz'
    warning: no previously-included files found matching 'test_zdump.py'
Successfully installed distribute errormator-client grizzled-python pycryptopp pyramid ZopeSkel python-dateutil Paste deform deform-bootstrap docutils fortune pbs pypi.trashfinder pyramid-beaker python-twitter redis requests rq stripe vanity waitress yolk vanity-app webob decorator enum Chameleon Mako repoze.lru zope.interface zope.deprecation venusian translationstring PasteDeploy PasteScript Cheetah colander peppercorn beaker simplejson oauth2 procname times logbook blessings MarkupSafe httplib2 pytz
Cleaning up...
aclark@Alexs-MacBook-Pro-2:~/Developer/pythonpackages.com/ > bin/pserve src/vanity_app/development.ini
Updating "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/vanity_app/fortunes/fortunes.dat" from "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/vanity_app/fortunes/fortunes"...
Processed 460 fortunes.
Longest: 1553
Shortest 16
Starting server in PID 1306.
serving on 0.0.0.0:6543 view at http://127.0.0.1:6543
^C2012-07-12 16:07:03,613 INFO  [paste.httpserver.ThreadPool][MainThread] Shutting down threadpool
2012-07-12 16:07:03,616 INFO  [paste.httpserver.ThreadPool][MainThread] All workers stopped
2012-07-12 16:07:03,617 INFO  [paste.httpserver.ThreadPool][Dummy-1] Shutting down threadpool
2012-07-12 16:07:03,622 INFO  [paste.httpserver.ThreadPool][Dummy-1] All workers stopped
aclark@Alexs-MacBook-Pro-2:~/Developer/pythonpackages.com/ > export SKIP_BUILDOUT=1                   
aclark@Alexs-MacBook-Pro-2:~/Developer/pythonpackages.com/ > bin/pserve src/vanity_app/development.ini
Updating "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/vanity_app/fortunes/fortunes.dat" from "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/vanity_app/fortunes/fortunes"...
Processed 460 fortunes.
Longest: 1553
Shortest 16
Starting server in PID 1309.
serving on 0.0.0.0:6543 view at http://127.0.0.1:6543
----------------------------------------
Exception happened during processing of request from ('127.0.0.1', 51653)
Traceback (most recent call last):
  File "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/paste/httpserver.py", line 1068, in process_request_in_thread
    self.finish_request(request, client_address)
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/SocketServer.py", line 323, in finish_request
    self.RequestHandlerClass(request, client_address, self)
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/SocketServer.py", line 638, in __init__
    self.handle()
  File "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/paste/httpserver.py", line 442, in handle
    BaseHTTPRequestHandler.handle(self)
  File "/Users/aclark/Developer/buildout.python/parts/opt/lib/python2.7/BaseHTTPServer.py", line 340, in handle
    self.handle_one_request()
  File "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/paste/httpserver.py", line 437, in handle_one_request
    self.wsgi_execute()
  File "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/paste/httpserver.py", line 287, in wsgi_execute
    self.wsgi_start_response)
  File "/Users/aclark/Developer/pythonpackages.com/src/pyramid/pyramid/router.py", line 187, in __call__
    response = self.handle_request(request)
  File "/Users/aclark/Developer/pythonpackages.com/src/pyramid/pyramid/tweens.py", line 20, in excview_tween
    response = handler(request)
  File "/Users/aclark/Developer/pythonpackages.com/src/pyramid/pyramid/router.py", line 164, in handle_request
    response = view_callable(context, request)
  File "/Users/aclark/Developer/pythonpackages.com/src/pyramid/pyramid/config/views.py", line 352, in rendered_view
    context)
  File "/Users/aclark/Developer/pythonpackages.com/src/pyramid/pyramid/renderers.py", line 523, in render_view
    return self.render_to_response(response, system, request=request)
  File "/Users/aclark/Developer/pythonpackages.com/src/pyramid/pyramid/renderers.py", line 553, in render_to_response
    result = self.render(value, system_values, request=request)
  File "/Users/aclark/Developer/pythonpackages.com/src/pyramid/pyramid/renderers.py", line 549, in render
    result = renderer(value, system_values)
  File "/Users/aclark/Developer/pythonpackages.com/src/pyramid/pyramid/mako_templating.py", line 207, in __call__
    reraise(MakoRenderingException(errtext), None, exc_info[2])
  File "/Users/aclark/Developer/pythonpackages.com/src/pyramid/pyramid/mako_templating.py", line 199, in __call__
    result = template.render_unicode(**system)
  File "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/mako/template.py", line 421, in render_unicode
    as_unicode=True)
  File "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/mako/runtime.py", line 766, in _render
    **_kwargs_for_callable(callable_, data))
  File "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/mako/runtime.py", line 798, in _render_context
    _exec_template(inherit, lclcontext, args=args, kwargs=kwargs)
  File "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/mako/runtime.py", line 824, in _exec_template
    callable_(context, *args, **kwargs)
  File "vanity_app_templates_vanity_root_mak", line 22, in render_body
  File "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/mako/runtime.py", line 689, in _include_file
    template = _lookup_template(context, uri, calling_uri)
  File "/Users/aclark/Developer/pythonpackages.com/lib/python2.7/site-packages/mako/runtime.py", line 734, in _lookup_template
    raise exceptions.TemplateLookupException(str(e))
MakoRenderingException: 

Traceback (most recent call last):
  File "/Users/aclark/Developer/pythonpackages.com/src/pyramid/pyramid/mako_templat

@blaflamme
Copy link
Member

@aclark4life can you paste the last line of the exception, I want to see the path you get. Are you sure you're using my branch?

@blaflamme
Copy link
Member

@aclark4life according to pip docs you would need to do something like this in requirements.txt to install the right branch, because the fix is not applied to master:

-e git://github.com/Pylons/[email protected]#egg=pyramid

@aclark4life
Copy link

Sorry, was testing with master. Works for me too.

@sontek
Copy link
Member

sontek commented Jul 28, 2012

Is this getting merged in anytime soon?

@blaflamme
Copy link
Member

I wanted @mcdonc to review it before

@sontek
Copy link
Member

sontek commented Jul 28, 2012

@mcondc Thats it! I want a refund on my git tips! ;)

@blaflamme
Copy link
Member

or he needs more ;)

@mcdonc
Copy link
Member

mcdonc commented Jul 29, 2012

Does anyone have enough zen about this to write a test or two to make sure a) it is actually fixed and b) it never breaks again? I dont use mako at all.

@blaflamme
Copy link
Member

ok will do

@mcdonc
Copy link
Member

mcdonc commented Sep 16, 2012

This is fixed in current master and current 1.3-branch.

@mcdonc mcdonc closed this as completed Sep 16, 2012
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants