Ubuntu Pastebin

Paste from cjwatson at Wed, 19 Aug 2015 12:54:57 +0000

Download as text
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
<cjwatson@precise-lpdev ~/src/canonical/launchpad/lp-branches/virtualenv-pip>$ time make `pwd`/bin/py SHHH=
mkdir -p virtualenv
(echo '[easy_install]'; \
	 echo "allow_hosts = ''"; \
	 echo 'find_links = file:///home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/download-cache/dist') \
		>virtualenv/.pydistutils.cfg
virtualenv --python=python2.7 --system-site-packages virtualenv
Running virtualenv with interpreter /usr/bin/python2.7
New python executable in virtualenv/bin/python2.7
Also creating executable in virtualenv/bin/python
Installing distribute..............................................................................................................................................................................................done.
Installing pip...............done.
PYTHONPATH= virtualenv/bin/pip install --no-index --find-links=file:///home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/download-cache/dist \
		-r bootstrap-versions.txt
Ignoring indexes: http://pypi.python.org/simple/
Downloading/unpacking pip==7.1.0 (from -r bootstrap-versions.txt (line 1))
  Running setup.py egg_info for package pip
    
    warning: no previously-included files found matching '.coveragerc'
    warning: no previously-included files found matching '.mailmap'
    warning: no previously-included files found matching '.travis.yml'
    warning: no previously-included files found matching 'pip/_vendor/Makefile'
    warning: no previously-included files found matching 'tox.ini'
    warning: no previously-included files found matching 'dev-requirements.txt'
    no previously-included directories found matching '.travis'
    no previously-included directories found matching 'docs/_build'
    no previously-included directories found matching 'contrib'
    no previously-included directories found matching 'tasks'
    no previously-included directories found matching 'tests'
Downloading/unpacking d2to1==0.2.10 (from -r bootstrap-versions.txt (line 6))
  Running setup.py egg_info for package d2to1
    [d2to1] running patched manifest_maker command with extra_files support
    
Downloading/unpacking pbr==0.5.20 (from -r bootstrap-versions.txt (line 7))
  Running setup.py egg_info for package pbr
    
    warning: no previously-included files found matching '.gitignore'
    warning: no previously-included files found matching '.gitreview'
    warning: no previously-included files matching '*.pyc' found anywhere in distribution
Requirement already satisfied (use --upgrade to upgrade): distribute in ./virtualenv/lib/python2.7/site-packages/distribute-0.6.24-py2.7.egg (from d2to1==0.2.10->-r bootstrap-versions.txt (line 6))
Downloading/unpacking setuptools-git>=0.4 (from pbr==0.5.20->-r bootstrap-versions.txt (line 7))
  Running setup.py egg_info for package setuptools-git
    
Installing collected packages: pip, d2to1, pbr, setuptools-git
  Found existing installation: pip 1.1
    Uninstalling pip:
      Successfully uninstalled pip
  Running setup.py install for pip
    
    warning: no previously-included files found matching '.coveragerc'
    warning: no previously-included files found matching '.mailmap'
    warning: no previously-included files found matching '.travis.yml'
    warning: no previously-included files found matching 'pip/_vendor/Makefile'
    warning: no previously-included files found matching 'tox.ini'
    warning: no previously-included files found matching 'dev-requirements.txt'
    no previously-included directories found matching '.travis'
    no previously-included directories found matching 'docs/_build'
    no previously-included directories found matching 'contrib'
    no previously-included directories found matching 'tasks'
    no previously-included directories found matching 'tests'
    Installing pip script to /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv/bin
    Installing pip2.7 script to /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv/bin
    Installing pip2 script to /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv/bin
  Running setup.py install for d2to1
    [d2to1] running patched manifest_maker command with extra_files support
    
  Running setup.py install for pbr
    
    warning: no previously-included files found matching '.gitignore'
    warning: no previously-included files found matching '.gitreview'
    warning: no previously-included files matching '*.pyc' found anywhere in distribution
  Running setup.py install for setuptools-git
    
Successfully installed pip d2to1 pbr setuptools-git
Cleaning up...
PYTHONPATH= virtualenv/bin/pip install --no-index --find-links=file:///home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/download-cache/dist \
		-c versions.txt -e .
Ignoring indexes: https://pypi.python.org/simple
Obtaining file:///home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip
Collecting zope.authentication==3.7.1 (from -c ztk-versions.txt (line 3))
Collecting zope.browser==1.3 (from -c ztk-versions.txt (line 5))
Collecting zope.component==3.10.0 (from -c ztk-versions.txt (line 11))
Collecting zope.contenttype==3.5.5 (from -c ztk-versions.txt (line 16))
Collecting zope.datetime==3.4.1 (from -c ztk-versions.txt (line 19))
Collecting zope.error==3.7.4 (from -c ztk-versions.txt (line 24))
Collecting zope.event==3.5.2 (from -c ztk-versions.txt (line 25))
Collecting zope.exceptions==3.6.2 (from -c ztk-versions.txt (line 26))
Collecting zope.formlib==4.0.6 (from -c ztk-versions.txt (line 28))
Collecting zope.i18n==3.7.4 (from -c ztk-versions.txt (line 30))
Collecting zope.i18nmessageid==3.5.3 (from -c ztk-versions.txt (line 31))
Collecting zope.interface==3.7.0 (from -c ztk-versions.txt (line 33))
Collecting zope.lifecycleevent==3.6.2 (from -c ztk-versions.txt (line 36))
Collecting zope.location==3.9.1 (from -c ztk-versions.txt (line 37))
Collecting zope.login==1.0.0 (from -c ztk-versions.txt (line 38))
Collecting zope.principalregistry==3.7.1 (from -c ztk-versions.txt (line 44))
Collecting zope.proxy==3.6.1 (from -c ztk-versions.txt (line 46))
Collecting zope.publisher==3.12.6 (from -c ztk-versions.txt (line 48))
Collecting zope.schema==3.7.1 (from -c ztk-versions.txt (line 50))
Collecting zope.security==3.8.3 (from -c ztk-versions.txt (line 51))
Collecting zope.securitypolicy==3.7.0 (from -c ztk-versions.txt (line 52))
Collecting zope.sendmail==3.7.5 (from -c ztk-versions.txt (line 53))
Collecting zope.server==3.8.6 (from -c ztk-versions.txt (line 55))
Collecting zope.tal==3.5.2 (from -c ztk-versions.txt (line 59))
Collecting zope.tales==3.5.3 (from -c ztk-versions.txt (line 60))
Collecting zope.traversing==3.14.0 (from -c ztk-versions.txt (line 62))
Collecting zope.viewlet==3.7.2 (from -c ztk-versions.txt (line 63))
Collecting mechanize==0.2.5 (from -c ztk-versions.txt (line 67))
Collecting Paste==1.7.5.1 (from -c ztk-versions.txt (line 68))
Collecting PasteDeploy==1.3.4 (from -c ztk-versions.txt (line 69))
Collecting pytz==2014.10 (from -c ztk-versions.txt (line 73))
Requirement already satisfied (use --upgrade to upgrade): setuptools==0.6c11 in /usr/lib/python2.7/dist-packages (from -c ztk-versions.txt (line 75))
Collecting Sphinx==1.0.8 (from -c ztk-versions.txt (line 76))
Collecting transaction==1.1.1 (from -c ztk-versions.txt (line 77))
Collecting ZODB3==3.10.5 (from -c ztk-versions.txt (line 85))
Collecting zope.app.appsetup==3.15.0 (from -c zopeapp-versions.txt (line 3))
Collecting zope.app.http==3.9.0 (from -c zopeapp-versions.txt (line 5))
Collecting zope.app.publication==3.12.0 (from -c zopeapp-versions.txt (line 6))
Collecting zope.app.wsgi==3.10.0 (from -c zopeapp-versions.txt (line 7))
Collecting zope.testbrowser==3.10.4 (from -c zopeapp-versions.txt (line 8))
Collecting zope.app.publisher==3.10.2 (from -c zopeapp-versions.txt (line 27))
Collecting zope.app.testing==3.8.1 (from -c zopeapp-versions.txt (line 32))
Collecting ampoule==0.2.0 (from -c versions.txt (line 3))
Collecting auditorclient==0.0.4 (from -c versions.txt (line 9))
Collecting auditorfixture==0.0.5 (from -c versions.txt (line 10))
Collecting BeautifulSoup==3.2.1 (from -c versions.txt (line 11))
Collecting bzr==2.6.0.lp.2 (from -c versions.txt (line 14))
Collecting cssselect==0.9.1 (from -c versions.txt (line 17))
Collecting cssutils==0.9.10 (from -c versions.txt (line 18))
Collecting Django==1.4 (from -c versions.txt (line 20))
Collecting dkimpy==0.5.4 (from -c versions.txt (line 21))
Collecting dnspython==1.10.0 (from -c versions.txt (line 22))
Collecting FeedParser==4.1 (from -c versions.txt (line 26))
Collecting feedvalidator==0.0.0DEV-r1049 (from -c versions.txt (line 27))
Collecting fixtures==0.3.9 (from -c versions.txt (line 28))
Collecting funkload==1.16.1 (from -c versions.txt (line 30))
Requirement already satisfied (use --upgrade to upgrade): html5browser==0.0.9 in /usr/lib/pymodules/python2.7 (from -c versions.txt (line 32))
Collecting httmock==1.2.3 (from -c versions.txt (line 33))
Requirement already satisfied (use --upgrade to upgrade): launchpadlib==1.10.2 in /usr/lib/python2.7/dist-packages (from -c versions.txt (line 41))
Collecting lazr.batchnavigator==1.2.11 (from -c versions.txt (line 43))
Collecting lazr.config==1.1.3 (from -c versions.txt (line 44))
Collecting lazr.delegates==2.0.3 (from -c versions.txt (line 45))
Collecting lazr.enum==1.1.3 (from -c versions.txt (line 46))
Collecting lazr.jobrunner==0.13 (from -c versions.txt (line 47))
Collecting lazr.lifecycle==1.1 (from -c versions.txt (line 48))
Collecting lazr.restful==0.19.10 (from -c versions.txt (line 49))
Collecting lazr.restfulclient==0.13.2 (from -c versions.txt (line 50))
Collecting lazr.smtptest==1.3 (from -c versions.txt (line 51))
Collecting lazr.sshserver==0.1.1 (from -c versions.txt (line 52))
Collecting lazr.testing==0.1.1 (from -c versions.txt (line 53))
Requirement already satisfied (use --upgrade to upgrade): lazr.uri==1.0.3 in /usr/lib/python2.7/dist-packages (from -c versions.txt (line 54))
Collecting lpjsmin==0.5 (from -c versions.txt (line 55))
Collecting Markdown==2.3.1 (from -c versions.txt (line 57))
Collecting martian==0.11 (from -c versions.txt (line 58))
Collecting meliae==0.2.0.final.0 (from -c versions.txt (line 59))
Collecting mock==1.0.1 (from -c versions.txt (line 60))
Collecting mocker==1.1.1 (from -c versions.txt (line 61))
Collecting oauth==1.0 (from -c versions.txt (line 62))
Collecting oops==0.0.10 (from -c versions.txt (line 63))
Collecting oops-amqp==0.0.6 (from -c versions.txt (line 64))
Collecting oops-datedir-repo==0.0.14 (from -c versions.txt (line 65))
Collecting oops-timeline==0.0.1 (from -c versions.txt (line 66))
Collecting oops-twisted==0.0.6 (from -c versions.txt (line 67))
Collecting oops-wsgi==0.0.8 (from -c versions.txt (line 68))
Collecting paramiko==1.7.7.2 (from -c versions.txt (line 71))
Collecting pgbouncer==0.0.8 (from -c versions.txt (line 73))
Collecting psycopg2==2.4.6 (from -c versions.txt (line 76))
Collecting pyasn1==0.1.6 (from -c versions.txt (line 77))
Collecting pycrypto==2.6 (from -c versions.txt (line 78))
Collecting Pygments==1.6 (from -c versions.txt (line 79))
Collecting pygpgme==0.2 (from -c versions.txt (line 80))
Collecting pymongo==2.1.1 (from -c versions.txt (line 82))
Collecting pyOpenSSL==0.13 (from -c versions.txt (line 83))
Collecting pystache==0.5.3 (from -c versions.txt (line 84))
Collecting python-debian==0.1.23 (from -c versions.txt (line 86))
Collecting python-keystoneclient==0.3.1 (from -c versions.txt (line 87))
Collecting python-memcached==1.49DEV-r57 (from -c versions.txt (line 88))
Collecting python-openid==2.2.5-fix1034376 (from -c versions.txt (line 90))
Collecting python-subunit==0.0.8beta (from -c versions.txt (line 91))
Collecting python-swiftclient==1.5.0 (from -c versions.txt (line 92))
Collecting rabbitfixture==0.3.6 (from -c versions.txt (line 94))
Collecting requests==2.7.0 (from -c versions.txt (line 95))
Collecting s4==0.1.2 (from -c versions.txt (line 96))
Collecting setproctitle==1.1.7 (from -c versions.txt (line 97))
Collecting simplejson==3.1.3 (from -c versions.txt (line 99))
Collecting SimpleTAL==4.3 (from -c versions.txt (line 100))
Collecting six==1.9.0 (from -c versions.txt (line 101))
Collecting soupmatchers==0.2 (from -c versions.txt (line 102))
Collecting sourcecodegen==0.6.14 (from -c versions.txt (line 103))
Collecting storm==0.19.0.99-lpwithnodatetime-r406 (from -c versions.txt (line 104))
Collecting subprocess32==3.2.6 (from -c versions.txt (line 105))
Collecting subvertpy==0.9.1 (from -c versions.txt (line 106))
Collecting testresources==0.2.7 (from -c versions.txt (line 107))
Collecting testtools==0.9.30 (from -c versions.txt (line 108))
Collecting timeline==0.0.3 (from -c versions.txt (line 109))
Collecting Twisted==13.0.0 (from -c versions.txt (line 110))
Collecting txfixtures==0.1.4 (from -c versions.txt (line 112))
Collecting txlongpollfixture==0.1.3 (from -c versions.txt (line 114))
Collecting van.testing==3.0.0 (from -c versions.txt (line 117))
Collecting wadllib==1.3.2 (from -c versions.txt (line 118))
Collecting webunit==1.3.10 (from -c versions.txt (line 119))
Collecting wsgi-intercept==0.5.1 (from -c versions.txt (line 120))
Requirement already satisfied (use --upgrade to upgrade): wsgiref==0.1.2 in /usr/lib/python2.7 (from -c versions.txt (line 121))
Collecting z3c.pt==2.2.3 (from -c versions.txt (line 122))
Collecting z3c.ptcompat==0.5.7 (from -c versions.txt (line 123))
Collecting zc.zservertracelog==1.3.2 (from -c versions.txt (line 127))
Collecting ZConfig==2.9.1dev-20110728 (from -c versions.txt (line 128))
Collecting zope.app.server==3.6.0 (from -c versions.txt (line 129))
Collecting zope.pagetemplate==3.5.0-p1 (from -c versions.txt (line 130))
Collecting zope.session==3.9.1 (from -c versions.txt (line 131))
Collecting zope.testing==3.9.4-p17 (from -c versions.txt (line 132))
Collecting zope.vocabularyregistry==1.0.0 (from -c versions.txt (line 133))
Collecting zope.browserpage==3.12.2 (from -c ztk-versions.txt (line 7))
Collecting zope.password==3.6.1 (from -c ztk-versions.txt (line 41))
Collecting zope.configuration==3.7.4 (from -c ztk-versions.txt (line 13))
Collecting zope.annotation==3.6.0 (from -c ztk-versions.txt (line 1))
Collecting zope.contentprovider==3.7.2 (from -c ztk-versions.txt (line 15))
Collecting Jinja2==2.5.5 (from -c ztk-versions.txt (line 66))
Collecting docutils==0.7 (from -c ztk-versions.txt (line 65))
Collecting zc.lockfile==1.0.2 (from -c ztk-versions.txt (line 80))
Collecting zdaemon==2.0.7 (from -c ztk-versions.txt (line 84))
Collecting zope.container==3.12.0 (from -c ztk-versions.txt (line 14))
Collecting zope.processlifetime==1.0 (from -c ztk-versions.txt (line 45))
Collecting zope.site==3.9.2 (from -c ztk-versions.txt (line 56))
Collecting zope.filerepresentation==3.6.1 (from -c ztk-versions.txt (line 27))
Collecting zope.browsermenu==3.9.1 (from -c ztk-versions.txt (line 6))
Collecting zope.browserresource==3.12.0 (from -c ztk-versions.txt (line 8))
Collecting zope.ptresource==3.9.0 (from -c ztk-versions.txt (line 47))
Collecting zope.componentvocabulary==1.0.1 (from -c ztk-versions.txt (line 12))
Collecting zope.app.debug==3.4.1 (from -c zopeapp-versions.txt (line 4))
Collecting zope.app.dependable==3.5.1 (from -c zopeapp-versions.txt (line 16))
Collecting auditor==0.0.3 (from -c versions.txt (line 8))
Collecting httplib2==0.8 (from -c versions.txt (line 34))
Collecting keyring==0.6.2 (from -c versions.txt (line 39))
Collecting zope.cachedescriptors==3.5.1 (from -c ztk-versions.txt (line 9))
Collecting nose==1.1.2 (from -c ztk-versions.txt (line 90))
Collecting celery==3.1.18 (from -c versions.txt (line 15))
Collecting epydoc==3.0.1 (from -c versions.txt (line 24))
Collecting grokcore.component==1.6 (from -c versions.txt (line 31))
Collecting zope.app.pagetemplate==3.11.2 (from -c zopeapp-versions.txt (line 25))
Collecting lazr.authentication==0.1.1 (from -c versions.txt (line 42))
Collecting iso8601==0.1.4 (from -c versions.txt (line 37))
Collecting amqplib==1.0.2 (from -c versions.txt (line 5))
Collecting bson==0.3.3 (from -c versions.txt (line 13))
Requirement already satisfied (use --upgrade to upgrade): d2to1==0.2.10 in ./virtualenv/lib/python2.7/site-packages (from -c versions.txt (line 19))
Requirement already satisfied (use --upgrade to upgrade): pbr==0.5.20 in ./virtualenv/lib/python2.7/site-packages (from -c versions.txt (line 72))
Collecting prettytable==0.7.2 (from -c versions.txt (line 75))
Collecting oslo.config==1.1.1 (from -c versions.txt (line 70))
Collecting extras==0.0.3 (from -c versions.txt (line 25))
Collecting python-mimeparse==0.1.4 (from -c versions.txt (line 89))
Collecting Chameleon==2.11 (from -c versions.txt (line 16))
Collecting zope.app.applicationcontrol==3.5.10 (from -c zopeapp-versions.txt (line 2))
Collecting zope.deprecation==3.4.1 (from -c ztk-versions.txt (line 21))
Collecting zope.minmax==1.1.2 (from -c ztk-versions.txt (line 40))
Collecting zope.dottedname==3.4.6 (from -c ztk-versions.txt (line 22))
Collecting zope.size==3.4.1 (from -c ztk-versions.txt (line 57))
Collecting zope.broken==3.6.0 (from -c ztk-versions.txt (line 4))
Collecting billiard==3.3.0.20 (from -c versions.txt (line 12))
Collecting kombu==3.0.26 (from -c versions.txt (line 40))
Collecting zope.dublincore==3.8.2 (from -c ztk-versions.txt (line 23))
Requirement already satisfied (use --upgrade to upgrade): setuptools-git==1.0 in ./virtualenv/lib/python2.7/site-packages (from -c versions.txt (line 98))
Collecting pip==1.4 (from -c versions.txt (line 74))
Collecting zope.applicationcontrol==3.5.5 (from -c ztk-versions.txt (line 2))
Collecting anyjson==0.3.3 (from -c versions.txt (line 6))
Collecting amqp==1.4.6 (from -c versions.txt (line 4))
Installing collected packages: zope.interface, zope.event, zope.component, zope.schema, zope.proxy, zope.location, transaction, zc.lockfile, ZConfig, zdaemon, ZODB3, zope.annotation, zope.i18nmessageid, zope.security, pytz, zope.i18n, zope.browser, zope.configuration, zope.contenttype, zope.exceptions, zope.publisher, zope.traversing, zope.applicationcontrol, zope.authentication, zope.broken, zope.tal, zope.tales, zope.pagetemplate, zope.browsermenu, zope.browserpage, zope.browserresource, zope.cachedescriptors, zope.componentvocabulary, zope.dottedname, zope.lifecycleevent, zope.filerepresentation, zope.size, zope.container, zope.contentprovider, zope.datetime, zope.deprecation, zope.dublincore, zope.error, zope.formlib, zope.login, zope.minmax, zope.password, zope.principalregistry, zope.processlifetime, zope.ptresource, zope.securitypolicy, zope.sendmail, zope.server, zope.site, zope.viewlet, docutils, Jinja2, mechanize, Paste, PasteDeploy, Pygments, Sphinx, nose, zope.app.applicationcontrol, zope.app.publication, zope.session, zope.app.appsetup, zope.app.debug, zope.app.http, wsgi-intercept, zope.testbrowser, zope.testing, zope.app.wsgi, zope.app.dependable, zope.app.pagetemplate, zope.app.publisher, zope.app.testing, Twisted, pyOpenSSL, ampoule, amqp, amqplib, anyjson, Django, auditor, auditorclient, fixtures, extras, python-mimeparse, testtools, auditorfixture, BeautifulSoup, billiard, bson, bzr, kombu, celery, Chameleon, cssselect, cssutils, dkimpy, dnspython, epydoc, FeedParser, feedvalidator, webunit, funkload, martian, grokcore.component, requests, httmock, httplib2, iso8601, keyring, oauth, lazr.authentication, lazr.batchnavigator, lazr.delegates, lazr.config, lazr.enum, lazr.jobrunner, lazr.lifecycle, simplejson, van.testing, lazr.restful, wadllib, lazr.restfulclient, lazr.smtptest, pyasn1, pycrypto, lazr.sshserver, mocker, lazr.testing, lpjsmin, Markdown, meliae, mock, oops, pymongo, oops-amqp, oops-datedir-repo, timeline, oops-timeline, oops-wsgi, oops-twisted, oslo.config, paramiko, psycopg2, pgbouncer, pip, prettytable, pygpgme, pystache, six, python-debian, python-keystoneclient, python-memcached, python-openid, python-subunit, python-swiftclient, subprocess32, rabbitfixture, s4, setproctitle, SimpleTAL, soupmatchers, sourcecodegen, storm, subvertpy, testresources, txfixtures, txlongpollfixture, z3c.pt, z3c.ptcompat, zope.app.server, zc.zservertracelog, zope.vocabularyregistry, lp
  Found existing installation: zope.interface 3.6.1
    Not uninstalling zope.interface at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for zope.interface
  Running setup.py install for zope.event
  Running setup.py install for zope.component
  Running setup.py install for zope.schema
  Running setup.py install for zope.proxy
  Running setup.py install for zope.location
  Running setup.py install for transaction
  Running setup.py install for zc.lockfile
  Running setup.py install for ZConfig
  Running setup.py install for zdaemon
  Running setup.py install for ZODB3
  Running setup.py install for zope.annotation
  Running setup.py install for zope.i18nmessageid
  Running setup.py install for zope.security
  Running setup.py install for zope.i18n
  Running setup.py install for zope.browser
  Running setup.py install for zope.configuration
  Running setup.py install for zope.contenttype
  Running setup.py install for zope.exceptions
  Running setup.py install for zope.publisher
  Running setup.py install for zope.traversing
  Running setup.py install for zope.applicationcontrol
  Running setup.py install for zope.authentication
  Running setup.py install for zope.broken
  Running setup.py install for zope.tal
  Running setup.py install for zope.tales
  Running setup.py install for zope.pagetemplate
  Running setup.py install for zope.browsermenu
  Running setup.py install for zope.browserpage
  Running setup.py install for zope.browserresource
  Running setup.py install for zope.cachedescriptors
  Running setup.py install for zope.componentvocabulary
  Running setup.py install for zope.dottedname
  Running setup.py install for zope.lifecycleevent
  Running setup.py install for zope.filerepresentation
  Running setup.py install for zope.size
  Running setup.py install for zope.container
  Running setup.py install for zope.contentprovider
  Running setup.py install for zope.datetime
  Running setup.py install for zope.deprecation
  Running setup.py install for zope.dublincore
  Running setup.py install for zope.error
  Running setup.py install for zope.formlib
  Running setup.py install for zope.login
  Running setup.py install for zope.minmax
  Running setup.py install for zope.password
  Running setup.py install for zope.principalregistry
  Running setup.py install for zope.processlifetime
  Running setup.py install for zope.ptresource
  Running setup.py install for zope.securitypolicy
  Running setup.py install for zope.sendmail
  Running setup.py install for zope.server
  Running setup.py install for zope.site
  Running setup.py install for zope.viewlet
  Running setup.py install for docutils
  Running setup.py install for Jinja2
  Running setup.py install for mechanize
  Running setup.py install for Paste
  Running setup.py install for PasteDeploy
  Found existing installation: Pygments 1.4
    Not uninstalling Pygments at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for Pygments
  Running setup.py install for Sphinx
  Running setup.py install for nose
  Running setup.py install for zope.app.applicationcontrol
  Running setup.py install for zope.app.publication
  Running setup.py install for zope.session
  Running setup.py install for zope.app.appsetup
  Running setup.py install for zope.app.debug
  Running setup.py install for zope.app.http
  Running setup.py install for wsgi-intercept
  Running setup.py install for zope.testbrowser
  Running setup.py install for zope.testing
  Running setup.py install for zope.app.wsgi
  Running setup.py install for zope.app.dependable
  Running setup.py install for zope.app.pagetemplate
  Running setup.py install for zope.app.publisher
  Running setup.py install for zope.app.testing
  Running setup.py install for Twisted
  Found existing installation: pyOpenSSL 0.12
    DEPRECATION: Uninstalling a distutils installed project (pyOpenSSL) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
    Not uninstalling pyOpenSSL at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for pyOpenSSL
  Running setup.py install for ampoule
  Running setup.py install for amqp
  Found existing installation: amqplib 1.0.0
    DEPRECATION: Uninstalling a distutils installed project (amqplib) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
    Not uninstalling amqplib at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for amqplib
  Running setup.py install for anyjson
  Running setup.py install for Django
  Running setup.py install for auditor
  Running setup.py install for auditorclient
  Found existing installation: fixtures 0.3.6
    DEPRECATION: Uninstalling a distutils installed project (fixtures) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
    Not uninstalling fixtures at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for fixtures
  Running setup.py install for extras
  Running setup.py install for python-mimeparse
  Found existing installation: testtools 0.9.14
    DEPRECATION: Uninstalling a distutils installed project (testtools) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
    Not uninstalling testtools at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for testtools
  Running setup.py install for auditorfixture
  Running setup.py install for BeautifulSoup
  Running setup.py install for billiard
  Running setup.py install for bson
  Found existing installation: bzr 2.5.1
    DEPRECATION: Uninstalling a distutils installed project (bzr) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
    Not uninstalling bzr at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for bzr
  Running setup.py install for kombu
  Running setup.py install for celery
  Found existing installation: Chameleon 2.6.1
    Not uninstalling Chameleon at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for Chameleon
  Running setup.py install for cssselect
  Found existing installation: cssutils 0.9.8
    Not uninstalling cssutils at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for cssutils
  Running setup.py install for dkimpy
  Running setup.py install for dnspython
  Running setup.py install for epydoc
  Found existing installation: feedparser 5.1
    Not uninstalling feedparser at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for FeedParser
  Running setup.py install for feedvalidator
  Running setup.py install for webunit
  Running setup.py install for funkload
  Running setup.py install for martian
  Running setup.py install for grokcore.component
  Running setup.py install for requests
  Running setup.py install for httmock
  Found existing installation: httplib2 0.7.2
    DEPRECATION: Uninstalling a distutils installed project (httplib2) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
    Not uninstalling httplib2 at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for httplib2
  Running setup.py install for iso8601
  Found existing installation: keyring 0.9.2
    Not uninstalling keyring at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for keyring
  Found existing installation: oauth 1.0.1
    Not uninstalling oauth at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for oauth
  Running setup.py install for lazr.authentication
  Running setup.py install for lazr.batchnavigator
  Running setup.py install for lazr.delegates
  Running setup.py install for lazr.config
  Running setup.py install for lazr.enum
  Running setup.py install for lazr.jobrunner
  Running setup.py install for lazr.lifecycle
  Found existing installation: simplejson 2.3.2
    DEPRECATION: Uninstalling a distutils installed project (simplejson) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
    Not uninstalling simplejson at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for simplejson
  Running setup.py install for van.testing
  Running setup.py install for lazr.restful
  Found existing installation: wadllib 1.3.0
    Not uninstalling wadllib at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for wadllib
  Found existing installation: lazr.restfulclient 0.12.0
    Not uninstalling lazr.restfulclient at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for lazr.restfulclient
  Running setup.py install for lazr.smtptest
  Running setup.py install for pyasn1
  Found existing installation: pycrypto 2.4.1
    DEPRECATION: Uninstalling a distutils installed project (pycrypto) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
    Not uninstalling pycrypto at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for pycrypto
  Running setup.py install for lazr.sshserver
  Running setup.py install for mocker
  Running setup.py install for lazr.testing
  Running setup.py install for lpjsmin
  Running setup.py install for Markdown
  Running setup.py install for mock
  Running setup.py install for oops
  Running setup.py install for pymongo
  Running setup.py install for oops-amqp
  Running setup.py install for oops-datedir-repo
  Running setup.py install for timeline
  Running setup.py install for oops-timeline
  Running setup.py install for oops-wsgi
  Running setup.py install for oops-twisted
  Running setup.py install for oslo.config
  Found existing installation: paramiko 1.7.7.1
    DEPRECATION: Uninstalling a distutils installed project (paramiko) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
    Not uninstalling paramiko at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for paramiko
  Found existing installation: psycopg2 2.4.5
    DEPRECATION: Uninstalling a distutils installed project (psycopg2) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
    Not uninstalling psycopg2 at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for psycopg2
  Running setup.py install for pgbouncer
  Found existing installation: pip 7.1.0
    Uninstalling pip-7.1.0:
      Successfully uninstalled pip-7.1.0
  Running setup.py install for pip
  Running setup.py install for prettytable
  Running setup.py install for pygpgme
  Running setup.py install for pystache
  Found existing installation: six 1.1.0
    DEPRECATION: Uninstalling a distutils installed project (six) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
    Not uninstalling six at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for six
  Found existing installation: python-debian 0.1.27
    Not uninstalling python-debian at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for python-debian
  Running setup.py install for python-keystoneclient
  Running setup.py install for python-memcached
  Found existing installation: python-openid 2.2.5
    DEPRECATION: Uninstalling a distutils installed project (python-openid) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
    Not uninstalling python-openid at /usr/lib/python2.7/dist-packages, outside environment /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/virtualenv
  Running setup.py install for python-openid
  Running setup.py install for python-subunit
  Running setup.py install for python-swiftclient
  Running setup.py install for subprocess32
  Running setup.py install for rabbitfixture
  Running setup.py install for s4
  Running setup.py install for setproctitle
  Running setup.py install for SimpleTAL
  Running setup.py install for soupmatchers
  Running setup.py install for sourcecodegen
  Running setup.py install for storm
  Running setup.py install for subvertpy
  Running setup.py install for testresources
  Running setup.py install for txfixtures
  Running setup.py install for txlongpollfixture
  Running setup.py install for z3c.pt
  Running setup.py install for z3c.ptcompat
  Running setup.py install for zope.app.server
  Running setup.py install for zc.zservertracelog
  Running setup.py install for zope.vocabularyregistry
  Running setup.py develop for lp
Successfully installed BeautifulSoup-3.2.1 Chameleon-2.11 Django-1.4 FeedParser-4.1 Jinja2-2.5.5 Markdown-2.3.1 Paste-1.7.5.1 PasteDeploy-1.3.4 Pygments-1.6 SimpleTAL-4.3 Sphinx-1.0.8 Twisted-13.0.0 ZConfig-2.9.1.dev20110728 ZODB3-3.10.5 ampoule-0.2.0 amqp-1.4.6 amqplib-1.0.2 anyjson-0.3.3 auditor-0.0.3 auditorclient-0.0.4 auditorfixture-0.0.5 billiard-3.3.0.20 bson-0.3.3 bzr-2.6.0.lp.2 celery-3.1.18 cssselect-0.9.1 cssutils-0.9.10 dkimpy-0.5.4 dnspython-1.10.0 docutils-0.7 epydoc-3.0.1 extras-0.0.3 feedvalidator-0.0.0DEV-r1049 fixtures-0.3.9 funkload-1.16.1 grokcore.component-1.6 httmock-1.2.3 httplib2-0.8 iso8601-0.1.4 keyring-0.6.2 kombu-3.0.26 lazr.authentication-0.1.1 lazr.batchnavigator-1.2.11 lazr.config-1.1.3 lazr.delegates-2.0.3 lazr.enum-1.1.3 lazr.jobrunner-0.13 lazr.lifecycle-1.1 lazr.restful-0.19.10 lazr.restfulclient-0.13.2 lazr.smtptest-1.3 lazr.sshserver-0.1.1 lazr.testing-0.1.1 lp lpjsmin-0.5 martian-0.11 mechanize-0.2.5 meliae-0.2.0.final.0 mock-1.0.1 mocker-1.1.1 nose-1.1.2 oauth-1.0 oops-0.0.10 oops-amqp-0.0.6 oops-datedir-repo-0.0.14 oops-timeline-0.0.1 oops-twisted-0.0.6 oops-wsgi-0.0.8 oslo.config-1.1.1 paramiko-1.7.7.2 pgbouncer-0.0.8 pip-1.4 prettytable-0.7.2 psycopg2-2.4.6 pyOpenSSL-0.13 pyasn1-0.1.6 pycrypto-2.6 pygpgme-0.2 pymongo-2.1.1 pystache-0.5.3 python-debian-0.1.23 python-keystoneclient-0.3.1 python-memcached-1.49DEV-r57 python-mimeparse-0.1.4 python-openid-2.2.5-fix1034376 python-subunit-0.0.8b0 python-swiftclient-1.5.0 pytz-2014.10 rabbitfixture-0.3.6 requests-2.7.0 s4-0.1.2 setproctitle-1.1.7 simplejson-3.1.3 six-1.9.0 soupmatchers-0.2 sourcecodegen-0.6.14 storm-0.19.0.99-lpwithnodatetime-r406 subprocess32-3.2.6 subvertpy-0.9.1 testresources-0.2.7 testtools-0.9.30 timeline-0.0.3 transaction-1.1.1 txfixtures-0.1.4 txlongpollfixture-0.1.3 van.testing-3.0.0 wadllib-1.3.2 webunit-1.3.10 wsgi-intercept-0.5.1 z3c.pt-2.2.3 z3c.ptcompat-0.5.7 zc.lockfile-1.0.2 zc.zservertracelog-1.3.2 zdaemon-2.0.7 zope.annotation-3.6.0 zope.app.applicationcontrol-3.5.10 zope.app.appsetup-3.15.0 zope.app.debug-3.4.1 zope.app.dependable-3.5.1 zope.app.http-3.9.0 zope.app.pagetemplate-3.11.2 zope.app.publication-3.12.0 zope.app.publisher-3.10.2 zope.app.server-3.6.0 zope.app.testing-3.8.1 zope.app.wsgi-3.10.0 zope.applicationcontrol-3.5.5 zope.authentication-3.7.1 zope.broken-3.6.0 zope.browser-1.3 zope.browsermenu-3.9.1 zope.browserpage-3.12.2 zope.browserresource-3.12.0 zope.cachedescriptors-3.5.1 zope.component-3.10.0 zope.componentvocabulary-1.0.1 zope.configuration-3.7.4 zope.container-3.12.0 zope.contentprovider-3.7.2 zope.contenttype-3.5.5 zope.datetime-3.4.1 zope.deprecation-3.4.1 zope.dottedname-3.4.6 zope.dublincore-3.8.2 zope.error-3.7.4 zope.event-3.5.2 zope.exceptions-3.6.2 zope.filerepresentation-3.6.1 zope.formlib-4.0.6 zope.i18n-3.7.4 zope.i18nmessageid-3.5.3 zope.interface-3.7.0 zope.lifecycleevent-3.6.2 zope.location-3.9.1 zope.login-1.0.0 zope.minmax-1.1.2 zope.pagetemplate-3.5.0-p1 zope.password-3.6.1 zope.principalregistry-3.7.1 zope.processlifetime-1.0 zope.proxy-3.6.1 zope.ptresource-3.9.0 zope.publisher-3.12.6 zope.schema-3.7.1 zope.security-3.8.3 zope.securitypolicy-3.7.0 zope.sendmail-3.7.5 zope.server-3.8.6 zope.session-3.9.1 zope.site-3.9.2 zope.size-3.4.1 zope.tal-3.5.2 zope.tales-3.5.3 zope.testbrowser-3.10.4 zope.testing-3.9.4-p17 zope.traversing-3.14.0 zope.viewlet-3.7.2 zope.vocabularyregistry-1.0.0
# PYTHONPATH= ./bin/buildout \
        #        configuration:instance_name=development -c buildout.cfg
#touch /home/cjwatson/src/canonical/launchpad/lp-branches/virtualenv-pip/bin/py

real	3m3.371s
user	2m34.836s
sys	0m25.676s
Download as text