-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew ubuntu
989 lines (927 loc) · 60.6 KB
/
new ubuntu
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
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
creating build/lib.linux-x86_64-2.7/virtualenv_support
copying virtualenv_support/__init__.py -> build/lib.linux-x86_64-2.7/virtualenv_support
copying virtualenv_support/pip-1.5.2-py2.py3-none-any.whl -> build/lib.linux-x86_64-2.7/virtualenv_support
copying virtualenv_support/setuptools-2.1-py2.py3-none-any.whl -> build/lib.linux-x86_64-2.7/virtualenv_support
running install_lib
creating /usr/local/lib/python2.7/dist-packages/virtualenv_support
error: could not create '/usr/local/lib/python2.7/dist-packages/virtualenv_support': Permission denied
----------------------------------------
Command /usr/bin/python -c "import setuptools;__file__='/home/kampsnigel/build/virtualenv/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --single-version-externally-managed --record /tmp/pip-_b3iaI-record/install-record.txt failed with error code 1
Storing complete log in /home/kampsnigel/.pip/pip.log
kampsnigel@nya-datorn-ubuntu:~$ sudo pip install virtualenv
Downloading/unpacking virtualenv
Running setup.py egg_info for package virtualenv
warning: no previously-included files matching '*' found under directory 'docs/_templates'
warning: no previously-included files matching '*' found under directory 'docs/_build'
Installing collected packages: virtualenv
Running setup.py install for virtualenv
warning: no previously-included files matching '*' found under directory 'docs/_templates'
warning: no previously-included files matching '*' found under directory 'docs/_build'
Installing virtualenv script to /usr/local/bin
Installing virtualenv-2.7 script to /usr/local/bin
Successfully installed virtualenv
Cleaning up...
kampsnigel@nya-datorn-ubuntu:~$ virtualenv --no-site-packages ~/.venv1
New python executable in /home/kampsnigel/.venv1/bin/python
Installing setuptools, pip...done.
kampsnigel@nya-datorn-ubuntu:~$ source ~/.venv1/bin/activate
(.venv1)kampsnigel@nya-datorn-ubuntu:~$ wget --continue https://www.assembla.com/spaces/chdkptp/documents/aDDsvQyhOr465JacwqjQYw/download/aDDsvQyhOr465JacwqjQYw -O /tmp/chdkptp.zip
--2014-02-16 13:30:09-- https://www.assembla.com/spaces/chdkptp/documents/aDDsvQyhOr465JacwqjQYw/download/aDDsvQyhOr465JacwqjQYw
Resolving www.assembla.com (www.assembla.com)... 93.184.219.81
Connecting to www.assembla.com (www.assembla.com)|93.184.219.81|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 230046 (225K) [application/zip]
Saving to: `/tmp/chdkptp.zip'
100%[=======================================>] 230,046 312K/s in 0.7s
2014-02-16 13:30:10 (312 KB/s) - `/tmp/chdkptp.zip' saved [230046/230046]
(.venv1)kampsnigel@nya-datorn-ubuntu:~$ unzip -d /usr/local/lib/chdkptp /tmp/chdkptp.zip
Archive: /tmp/chdkptp.zip
checkdir: cannot create extraction directory: /usr/local/lib/chdkptp
Permission denied
(.venv1)kampsnigel@nya-datorn-ubuntu:~$ sudo unzip -d /usr/local/lib/chdkptp /tmp/chdkptp.zip
Archive: /tmp/chdkptp.zip
inflating: /usr/local/lib/chdkptp/chdkptp
inflating: /usr/local/lib/chdkptp/chdkptp_gui
inflating: /usr/local/lib/chdkptp/chdkptp-sample.sh
inflating: /usr/local/lib/chdkptp/lua/chdku.lua
inflating: /usr/local/lib/chdkptp/lua/cli.lua
inflating: /usr/local/lib/chdkptp/lua/dngcli.lua
inflating: /usr/local/lib/chdkptp/lua/dng.lua
inflating: /usr/local/lib/chdkptp/lua/exposure.lua
inflating: /usr/local/lib/chdkptp/lua/fsutil.lua
inflating: /usr/local/lib/chdkptp/lua/gui_icon.lua
inflating: /usr/local/lib/chdkptp/lua/gui_live.lua
inflating: /usr/local/lib/chdkptp/lua/gui_live_stats.lua
inflating: /usr/local/lib/chdkptp/lua/gui.lua
inflating: /usr/local/lib/chdkptp/lua/gui_tree.lua
inflating: /usr/local/lib/chdkptp/lua/gui_user.lua
inflating: /usr/local/lib/chdkptp/lua/lbufutil.lua
inflating: /usr/local/lib/chdkptp/lua/main.lua
inflating: /usr/local/lib/chdkptp/lua/multicam.lua
inflating: /usr/local/lib/chdkptp/lua/prefs.lua
inflating: /usr/local/lib/chdkptp/lua/rlibs.lua
inflating: /usr/local/lib/chdkptp/lua/tests.lua
inflating: /usr/local/lib/chdkptp/lua/ustime.lua
inflating: /usr/local/lib/chdkptp/lua/util.lua
inflating: /usr/local/lib/chdkptp/lua/extras/dbgdump.lua
inflating: /usr/local/lib/chdkptp/lua/extras/dcimdl.lua
inflating: /usr/local/lib/chdkptp/lua/extras/hackcfa.lua
inflating: /usr/local/lib/chdkptp/lua/extras/msgtest.lua
inflating: /usr/local/lib/chdkptp/lua/extras/simplemulticam.lua
inflating: /usr/local/lib/chdkptp/lua/extras/vxromlog.lua
inflating: /usr/local/lib/chdkptp/lua/extras/vxtcbdump.lua
inflating: /usr/local/lib/chdkptp/README.TXT
inflating: /usr/local/lib/chdkptp/USAGE.TXT
inflating: /usr/local/lib/chdkptp/COPYING
inflating: /usr/local/lib/chdkptp/THANKS.TXT
inflating: /usr/local/lib/chdkptp/README-RASPI.TXT
inflating: /usr/local/lib/chdkptp/README-RASPI-LIBS.TXT
inflating: /usr/local/lib/chdkptp/README-OSX.TXT
(.venv1)kampsnigel@nya-datorn-ubuntu:~$ rm -rf /tmp/chdkptp.zip
(.venv1)kampsnigel@nya-datorn-ubuntu:~$ pip install --upgrade pip
Requirement already up-to-date: pip in ./.venv1/lib/python2.7/site-packages
Cleaning up...
(.venv1)kampsnigel@nya-datorn-ubuntu:~$ mv /usr/bin/pip /usr/bin/pip.old
mv: cannot move `/usr/bin/pip' to `/usr/bin/pip.old': Permission denied
(.venv1)kampsnigel@nya-datorn-ubuntu:~$ ln -s /usr/local/bin/pip /usr/bin/pip
ln: failed to create symbolic link `/usr/bin/pip': File exists
(.venv1)kampsnigel@nya-datorn-ubuntu:~$ pip --version
pip 1.5.2 from /home/kampsnigel/.venv1/local/lib/python2.7/site-packages (python 2.7)
(.venv1)kampsnigel@nya-datorn-ubuntu:~$ pip install cffi
Downloading/unpacking cffi
Downloading cffi-0.8.1.tar.gz (195kB): 195kB downloaded
Running setup.py (path:/home/kampsnigel/.venv1/build/cffi/setup.py) egg_info for package cffi
Downloading/unpacking pycparser (from cffi)
Downloading pycparser-2.10.tar.gz (206kB): 206kB downloaded
Running setup.py (path:/home/kampsnigel/.venv1/build/pycparser/setup.py) egg_info for package pycparser
Installing collected packages: cffi, pycparser
Running setup.py install for cffi
building '_cffi_backend' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -DUSE__THREAD -I/usr/include/python2.7 -c c/_cffi_backend.c -o build/temp.linux-x86_64-2.7/c/_cffi_backend.o
gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -Wl,-z,relro build/temp.linux-x86_64-2.7/c/_cffi_backend.o -lffi -o build/lib.linux-x86_64-2.7/_cffi_backend.so
Running setup.py install for pycparser
Successfully installed cffi pycparser
Cleaning up...
(.venv1)kampsnigel@nya-datorn-ubuntu:~$ git clone https://github.com/jbaiter/spreads.git /usr/src/spreads
The program 'git' is currently not installed. You can install it by typing:
sudo apt-get install git
(.venv1)kampsnigel@nya-datorn-ubuntu:~$ apt-get install git
E: Could not open lock file /var/lib/dpkg/lock - open (13: Permission denied)
E: Unable to lock the administration directory (/var/lib/dpkg/), are you root?
(.venv1)kampsnigel@nya-datorn-ubuntu:~$ sudo apt-get install git
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following package was automatically installed and is no longer required:
thunderbird-globalmenu
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
git-man liberror-perl
Suggested packages:
git-daemon-run git-daemon-sysvinit git-doc git-el git-arch git-cvs git-svn
git-email git-gui gitk gitweb
The following NEW packages will be installed:
git git-man liberror-perl
0 upgraded, 3 newly installed, 0 to remove and 254 not upgraded.
Need to get 6,741 kB of archives.
After this operation, 15.2 MB of additional disk space will be used.
Do you want to continue [Y/n]? y
Get:1 http://se.archive.ubuntu.com/ubuntu/ precise/main liberror-perl all 0.17-1 [23.8 kB]
Get:2 http://se.archive.ubuntu.com/ubuntu/ precise/main git-man all 1:1.7.9.5-1 [630 kB]
Get:3 http://se.archive.ubuntu.com/ubuntu/ precise/main git amd64 1:1.7.9.5-1 [6,087 kB]
Fetched 6,741 kB in 0s (7,623 kB/s)
Selecting previously unselected package liberror-perl.
(Reading database ... 146838 files and directories currently installed.)
Unpacking liberror-perl (from .../liberror-perl_0.17-1_all.deb) ...
Selecting previously unselected package git-man.
Unpacking git-man (from .../git-man_1%3a1.7.9.5-1_all.deb) ...
Selecting previously unselected package git.
Unpacking git (from .../git_1%3a1.7.9.5-1_amd64.deb) ...
Processing triggers for man-db ...
Setting up liberror-perl (0.17-1) ...
Setting up git-man (1:1.7.9.5-1) ...
Setting up git (1:1.7.9.5-1) ...
(.venv1)kampsnigel@nya-datorn-ubuntu:~$ ^C
(.venv1)kampsnigel@nya-datorn-ubuntu:~$ ^C
(.venv1)kampsnigel@nya-datorn-ubuntu:~$ git clone https://github.com/jbaiter/spreads.git /usr/src/spreads
fatal: could not create work tree dir '/usr/src/spreads'.: Permission denied
(.venv1)kampsnigel@nya-datorn-ubuntu:~$ sudo git clone https://github.com/jbaiter/spreads.git /usr/src/spreads
Cloning into '/usr/src/spreads'...
remote: Counting objects: 2927, done.
remote: Compressing objects: 100% (1078/1078), done.
remote: Total 2927 (delta 1841), reused 2911 (delta 1828)
Receiving objects: 100% (2927/2927), 10.81 MiB | 1.07 MiB/s, done.
Resolving deltas: 100% (1841/1841), done.
(.venv1)kampsnigel@nya-datorn-ubuntu:~$ cd /usr/src/spreads
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ git checkout webplugin
fatal: Unable to create '/usr/src/spreads/.git/index.lock': Permission denied
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ sudo git checkout webplugin
Branch webplugin set up to track remote branch webplugin from origin.
Switched to a new branch 'webplugin'
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ pip install --pre pyusb
Downloading/unpacking pyusb
Downloading pyusb-1.0.0b1.tar.gz (44kB): 44kB downloaded
Running setup.py (path:/home/kampsnigel/.venv1/build/pyusb/setup.py) egg_info for package pyusb
Installing collected packages: pyusb
Running setup.py install for pyusb
Successfully installed pyusb
Cleaning up...
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ pip install colorama futures flask flask-compress zipstream \
> waitress requests jpegtran-cffi
Downloading/unpacking colorama
Downloading colorama-0.2.7.tar.gz
Running setup.py (path:/home/kampsnigel/.venv1/build/colorama/setup.py) egg_info for package colorama
Downloading/unpacking futures
Downloading futures-2.1.6-py2.py3-none-any.whl
Downloading/unpacking flask
Downloading Flask-0.10.1.tar.gz (544kB): 544kB downloaded
Running setup.py (path:/home/kampsnigel/.venv1/build/flask/setup.py) egg_info for package flask
warning: no files found matching '*' under directory 'tests'
warning: no previously-included files matching '*.pyc' found under directory 'docs'
warning: no previously-included files matching '*.pyo' found under directory 'docs'
warning: no previously-included files matching '*.pyc' found under directory 'tests'
warning: no previously-included files matching '*.pyo' found under directory 'tests'
warning: no previously-included files matching '*.pyc' found under directory 'examples'
warning: no previously-included files matching '*.pyo' found under directory 'examples'
no previously-included directories found matching 'docs/_build'
no previously-included directories found matching 'docs/_themes/.git'
Downloading/unpacking flask-compress
Downloading Flask-Compress-1.0.0.tar.gz
Running setup.py (path:/home/kampsnigel/.venv1/build/flask-compress/setup.py) egg_info for package flask-compress
Downloading/unpacking zipstream
Downloading zipstream-1.0.2.tar.gz
Running setup.py (path:/home/kampsnigel/.venv1/build/zipstream/setup.py) egg_info for package zipstream
Downloading/unpacking waitress
Downloading waitress-0.8.8.tar.gz (119kB): 119kB downloaded
Running setup.py (path:/home/kampsnigel/.venv1/build/waitress/setup.py) egg_info for package waitress
Downloading/unpacking requests
Downloading requests-2.2.1-py2.py3-none-any.whl (625kB): 625kB downloaded
Downloading/unpacking jpegtran-cffi
Downloading jpegtran-cffi-0.4.tar.gz (50kB): 50kB downloaded
Running setup.py (path:/home/kampsnigel/.venv1/build/jpegtran-cffi/setup.py) egg_info for package jpegtran-cffi
src/epeg_private.h:71:17: warning: ‘_jpeg_init_source’ declared ‘static’ but never defined [-Wunused-function]
src/epeg_private.h:72:20: warning: ‘_jpeg_fill_input_buffer’ declared ‘static’ but never defined [-Wunused-function]
src/epeg_private.h:73:17: warning: ‘_jpeg_skip_input_data’ declared ‘static’ but never defined [-Wunused-function]
src/epeg_private.h:74:17: warning: ‘_jpeg_term_source’ declared ‘static’ but never defined [-Wunused-function]
src/epeg_private.h:76:17: warning: ‘_jpeg_init_destination’ declared ‘static’ but never defined [-Wunused-function]
src/epeg_private.h:77:20: warning: ‘_jpeg_empty_output_buffer’ declared ‘static’ but never defined [-Wunused-function]
src/epeg_private.h:78:17: warning: ‘_jpeg_term_destination’ declared ‘static’ but never defined [-Wunused-function]
src/epeg.c: In function ‘_epeg_trim’:
src/epeg.c:1101:28: warning: variable ‘w’ set but not used [-Wunused-but-set-variable]
src/epeg.c: In function ‘_epeg_encode’:
src/epeg.c:1204:6: warning: pointer targets in passing argument 3 of ‘jpeg_write_marker’ differ in signedness [-Wpointer-sign]
/usr/include/jpeglib.h:1057:14: note: expected ‘const JOCTET *’ but argument is of type ‘char *’
src/epeg.c:1213:7: warning: pointer targets in passing argument 3 of ‘jpeg_write_marker’ differ in signedness [-Wpointer-sign]
/usr/include/jpeglib.h:1057:14: note: expected ‘const JOCTET *’ but argument is of type ‘char *’
src/epeg.c:1216:2: warning: pointer targets in passing argument 3 of ‘jpeg_write_marker’ differ in signedness [-Wpointer-sign]
/usr/include/jpeglib.h:1057:14: note: expected ‘const JOCTET *’ but argument is of type ‘char *’
src/epeg.c:1218:2: warning: pointer targets in passing argument 3 of ‘jpeg_write_marker’ differ in signedness [-Wpointer-sign]
/usr/include/jpeglib.h:1057:14: note: expected ‘const JOCTET *’ but argument is of type ‘char *’
src/epeg.c:1220:2: warning: pointer targets in passing argument 3 of ‘jpeg_write_marker’ differ in signedness [-Wpointer-sign]
/usr/include/jpeglib.h:1057:14: note: expected ‘const JOCTET *’ but argument is of type ‘char *’
src/epeg.c:1222:2: warning: pointer targets in passing argument 3 of ‘jpeg_write_marker’ differ in signedness [-Wpointer-sign]
/usr/include/jpeglib.h:1057:14: note: expected ‘const JOCTET *’ but argument is of type ‘char *’
/usr/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'description_long'
warnings.warn(msg)
Downloading/unpacking Werkzeug>=0.7 (from flask)
Downloading Werkzeug-0.9.4.tar.gz (1.1MB): 1.1MB downloaded
Running setup.py (path:/home/kampsnigel/.venv1/build/Werkzeug/setup.py) egg_info for package Werkzeug
warning: no files found matching '*' under directory 'werkzeug/debug/templates'
warning: no files found matching '*' under directory 'tests'
warning: no previously-included files matching '*.pyc' found under directory 'docs'
warning: no previously-included files matching '*.pyo' found under directory 'docs'
warning: no previously-included files matching '*.pyc' found under directory 'tests'
warning: no previously-included files matching '*.pyo' found under directory 'tests'
warning: no previously-included files matching '*.pyc' found under directory 'examples'
warning: no previously-included files matching '*.pyo' found under directory 'examples'
no previously-included directories found matching 'docs/_build'
Downloading/unpacking Jinja2>=2.4 (from flask)
Downloading Jinja2-2.7.2.tar.gz (378kB): 378kB downloaded
Running setup.py (path:/home/kampsnigel/.venv1/build/Jinja2/setup.py) egg_info for package Jinja2
warning: no files found matching '*' under directory 'custom_fixers'
warning: no previously-included files matching '*' found under directory 'docs/_build'
warning: no previously-included files matching '*.pyc' found under directory 'jinja2'
warning: no previously-included files matching '*.pyc' found under directory 'docs'
warning: no previously-included files matching '*.pyo' found under directory 'jinja2'
warning: no previously-included files matching '*.pyo' found under directory 'docs'
Downloading/unpacking itsdangerous>=0.21 (from flask)
Downloading itsdangerous-0.23.tar.gz (46kB): 46kB downloaded
Running setup.py (path:/home/kampsnigel/.venv1/build/itsdangerous/setup.py) egg_info for package itsdangerous
warning: no previously-included files matching '*' found under directory 'docs/_build'
Requirement already satisfied (use --upgrade to upgrade): setuptools in /home/kampsnigel/.venv1/lib/python2.7/site-packages (from waitress)
Requirement already satisfied (use --upgrade to upgrade): cffi>=0.8 in /home/kampsnigel/.venv1/lib/python2.7/site-packages (from jpegtran-cffi)
Downloading/unpacking markupsafe (from Jinja2>=2.4->flask)
Downloading MarkupSafe-0.18.tar.gz
Running setup.py (path:/home/kampsnigel/.venv1/build/markupsafe/setup.py) egg_info for package markupsafe
Requirement already satisfied (use --upgrade to upgrade): pycparser in /home/kampsnigel/.venv1/lib/python2.7/site-packages (from cffi>=0.8->jpegtran-cffi)
Installing collected packages: colorama, futures, flask, flask-compress, zipstream, waitress, requests, jpegtran-cffi, Werkzeug, Jinja2, itsdangerous, markupsafe
Running setup.py install for colorama
Running setup.py install for flask
warning: no files found matching '*' under directory 'tests'
warning: no previously-included files matching '*.pyc' found under directory 'docs'
warning: no previously-included files matching '*.pyo' found under directory 'docs'
warning: no previously-included files matching '*.pyc' found under directory 'tests'
warning: no previously-included files matching '*.pyo' found under directory 'tests'
warning: no previously-included files matching '*.pyc' found under directory 'examples'
warning: no previously-included files matching '*.pyo' found under directory 'examples'
no previously-included directories found matching 'docs/_build'
no previously-included directories found matching 'docs/_themes/.git'
Running setup.py install for flask-compress
Running setup.py install for zipstream
Running setup.py install for waitress
Installing waitress-serve script to /home/kampsnigel/.venv1/bin
Running setup.py install for jpegtran-cffi
/usr/lib/python2.7/distutils/dist.py:267: UserWarning: Unknown distribution option: 'description_long'
warnings.warn(msg)
building '_cffi__xf0be6f8dx8aa5264d' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -Isrc -I/usr/include/python2.7 -c jpegtran/__pycache__/_cffi__xf0be6f8dx8aa5264d.c -o build/temp.linux-x86_64-2.7/jpegtran/__pycache__/_cffi__xf0be6f8dx8aa5264d.o
src/epeg_private.h:71:17: warning: ‘_jpeg_init_source’ declared ‘static’ but never defined [-Wunused-function]
src/epeg_private.h:72:20: warning: ‘_jpeg_fill_input_buffer’ declared ‘static’ but never defined [-Wunused-function]
src/epeg_private.h:73:17: warning: ‘_jpeg_skip_input_data’ declared ‘static’ but never defined [-Wunused-function]
src/epeg_private.h:74:17: warning: ‘_jpeg_term_source’ declared ‘static’ but never defined [-Wunused-function]
src/epeg_private.h:76:17: warning: ‘_jpeg_init_destination’ declared ‘static’ but never defined [-Wunused-function]
src/epeg_private.h:77:20: warning: ‘_jpeg_empty_output_buffer’ declared ‘static’ but never defined [-Wunused-function]
src/epeg_private.h:78:17: warning: ‘_jpeg_term_destination’ declared ‘static’ but never defined [-Wunused-function]
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -Isrc -I/usr/include/python2.7 -c src/epeg.c -o build/temp.linux-x86_64-2.7/src/epeg.o
src/epeg.c: In function ‘_epeg_trim’:
src/epeg.c:1101:28: warning: variable ‘w’ set but not used [-Wunused-but-set-variable]
src/epeg.c: In function ‘_epeg_encode’:
src/epeg.c:1204:6: warning: pointer targets in passing argument 3 of ‘jpeg_write_marker’ differ in signedness [-Wpointer-sign]
/usr/include/jpeglib.h:1057:14: note: expected ‘const JOCTET *’ but argument is of type ‘char *’
src/epeg.c:1213:7: warning: pointer targets in passing argument 3 of ‘jpeg_write_marker’ differ in signedness [-Wpointer-sign]
/usr/include/jpeglib.h:1057:14: note: expected ‘const JOCTET *’ but argument is of type ‘char *’
src/epeg.c:1216:2: warning: pointer targets in passing argument 3 of ‘jpeg_write_marker’ differ in signedness [-Wpointer-sign]
/usr/include/jpeglib.h:1057:14: note: expected ‘const JOCTET *’ but argument is of type ‘char *’
src/epeg.c:1218:2: warning: pointer targets in passing argument 3 of ‘jpeg_write_marker’ differ in signedness [-Wpointer-sign]
/usr/include/jpeglib.h:1057:14: note: expected ‘const JOCTET *’ but argument is of type ‘char *’
src/epeg.c:1220:2: warning: pointer targets in passing argument 3 of ‘jpeg_write_marker’ differ in signedness [-Wpointer-sign]
/usr/include/jpeglib.h:1057:14: note: expected ‘const JOCTET *’ but argument is of type ‘char *’
src/epeg.c:1222:2: warning: pointer targets in passing argument 3 of ‘jpeg_write_marker’ differ in signedness [-Wpointer-sign]
/usr/include/jpeglib.h:1057:14: note: expected ‘const JOCTET *’ but argument is of type ‘char *’
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -Isrc -I/usr/include/python2.7 -c src/transupp.c -o build/temp.linux-x86_64-2.7/src/transupp.o
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -Isrc -I/usr/include/python2.7 -c src/cdjpeg.c -o build/temp.linux-x86_64-2.7/src/cdjpeg.o
gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -Wl,-z,relro build/temp.linux-x86_64-2.7/jpegtran/__pycache__/_cffi__xf0be6f8dx8aa5264d.o build/temp.linux-x86_64-2.7/src/epeg.o build/temp.linux-x86_64-2.7/src/transupp.o build/temp.linux-x86_64-2.7/src/cdjpeg.o -ljpeg -o build/lib.linux-x86_64-2.7/_cffi__xf0be6f8dx8aa5264d.so
Running setup.py install for Werkzeug
warning: no files found matching '*' under directory 'werkzeug/debug/templates'
warning: no files found matching '*' under directory 'tests'
warning: no previously-included files matching '*.pyc' found under directory 'docs'
warning: no previously-included files matching '*.pyo' found under directory 'docs'
warning: no previously-included files matching '*.pyc' found under directory 'tests'
warning: no previously-included files matching '*.pyo' found under directory 'tests'
warning: no previously-included files matching '*.pyc' found under directory 'examples'
warning: no previously-included files matching '*.pyo' found under directory 'examples'
no previously-included directories found matching 'docs/_build'
Running setup.py install for Jinja2
warning: no files found matching '*' under directory 'custom_fixers'
warning: no previously-included files matching '*' found under directory 'docs/_build'
warning: no previously-included files matching '*.pyc' found under directory 'jinja2'
warning: no previously-included files matching '*.pyc' found under directory 'docs'
warning: no previously-included files matching '*.pyo' found under directory 'jinja2'
warning: no previously-included files matching '*.pyo' found under directory 'docs'
Running setup.py install for itsdangerous
warning: no previously-included files matching '*' found under directory 'docs/_build'
Running setup.py install for markupsafe
building 'markupsafe._speedups' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -I/usr/include/python2.7 -c markupsafe/_speedups.c -o build/temp.linux-x86_64-2.7/markupsafe/_speedups.o
Successfully installed colorama futures flask flask-compress zipstream waitress requests jpegtran-cffi Werkzeug Jinja2 itsdangerous markupsafe
Cleaning up...
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ pip install git+https://github.com/dreamhost/[email protected]
Downloading/unpacking git+https://github.com/dreamhost/[email protected]
Cloning https://github.com/dreamhost/stevedore.git (to 0.13) to /tmp/pip-TTHhPI-build
Running setup.py (path:/tmp/pip-TTHhPI-build/setup.py) egg_info for package from git+https://github.com/dreamhost/[email protected]
Installed /tmp/pip-TTHhPI-build/pbr-0.6-py2.7.egg
[pbr] Excluding argparse: Python 2.6 only dependency
[pbr] Processing SOURCES.txt
warning: LocalManifestMaker: standard file '-c' not found
[pbr] In git context, generating filelist from git
warning: no files found matching 'AUTHORS'
warning: no files found matching 'ChangeLog'
warning: no previously-included files found matching '.gitreview'
warning: no previously-included files matching '*.pyc' found anywhere in distribution
warning: no files found matching '*.html' under directory 'docs'
warning: no files found matching '*.css' under directory 'docs'
warning: no files found matching '*.js' under directory 'docs'
warning: no files found matching '*.png' under directory 'docs'
warning: no files found matching '*.py' under directory 'tests'
Installing collected packages: stevedore
Running setup.py install for stevedore
[pbr] Excluding argparse: Python 2.6 only dependency
[pbr] Processing SOURCES.txt
warning: LocalManifestMaker: standard file '-c' not found
[pbr] In git context, generating filelist from git
warning: no files found matching 'AUTHORS'
warning: no files found matching 'ChangeLog'
warning: no previously-included files found matching '.gitreview'
warning: no previously-included files matching '*.pyc' found anywhere in distribution
warning: no files found matching '*.html' under directory 'docs'
warning: no files found matching '*.css' under directory 'docs'
warning: no files found matching '*.js' under directory 'docs'
warning: no files found matching '*.png' under directory 'docs'
warning: no files found matching '*.py' under directory 'tests'
Successfully installed stevedore
Cleaning up...
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ python setup.py install
running install
running bdist_egg
running egg_info
creating spreads.egg-info
error: could not create 'spreads.egg-info': Permission denied
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ sudo pip install git+https://github.com/dreamhost/[email protected]
Downloading/unpacking git+https://github.com/dreamhost/[email protected]
Cloning https://github.com/dreamhost/stevedore.git (to 0.13) to /tmp/pip-gZk5YP-build
Running setup.py egg_info for package from git+https://github.com/dreamhost/[email protected]
Installed /tmp/pip-gZk5YP-build/pbr-0.6-py2.7.egg
[pbr] Excluding argparse: Python 2.6 only dependency
[pbr] Processing SOURCES.txt
warning: LocalManifestMaker: standard file '-c' not found
[pbr] In git context, generating filelist from git
warning: no files found matching 'AUTHORS'
warning: no files found matching 'ChangeLog'
warning: no previously-included files found matching '.gitreview'
warning: no previously-included files matching '*.pyc' found anywhere in distribution
warning: no files found matching '*.html' under directory 'docs'
warning: no files found matching '*.css' under directory 'docs'
warning: no files found matching '*.js' under directory 'docs'
warning: no files found matching '*.png' under directory 'docs'
warning: no files found matching '*.py' under directory 'tests'
Installing collected packages: stevedore
Running setup.py install for stevedore
[pbr] Excluding argparse: Python 2.6 only dependency
[pbr] Processing SOURCES.txt
warning: LocalManifestMaker: standard file '-c' not found
[pbr] In git context, generating filelist from git
warning: no files found matching 'AUTHORS'
warning: no files found matching 'ChangeLog'
warning: no previously-included files found matching '.gitreview'
warning: no previously-included files matching '*.pyc' found anywhere in distribution
warning: no files found matching '*.html' under directory 'docs'
warning: no files found matching '*.css' under directory 'docs'
warning: no files found matching '*.js' under directory 'docs'
warning: no files found matching '*.png' under directory 'docs'
warning: no files found matching '*.py' under directory 'tests'
Successfully installed stevedore
Cleaning up...
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ sudo python setup.py install
running install
Checking .pth file support in /usr/local/lib/python2.7/dist-packages/
/usr/bin/python -E -c pass
TEST PASSED: /usr/local/lib/python2.7/dist-packages/ appears to support .pth files
running bdist_egg
running egg_info
creating spreads.egg-info
writing requirements to spreads.egg-info/requires.txt
writing spreads.egg-info/PKG-INFO
writing top-level names to spreads.egg-info/top_level.txt
writing dependency_links to spreads.egg-info/dependency_links.txt
writing entry points to spreads.egg-info/entry_points.txt
writing manifest file 'spreads.egg-info/SOURCES.txt'
reading manifest file 'spreads.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'spreads.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_py
creating build
creating build/lib.linux-x86_64-2.7
creating build/lib.linux-x86_64-2.7/spreads
copying spreads/cli.py -> build/lib.linux-x86_64-2.7/spreads
copying spreads/plugin.py -> build/lib.linux-x86_64-2.7/spreads
copying spreads/__init__.py -> build/lib.linux-x86_64-2.7/spreads
copying spreads/util.py -> build/lib.linux-x86_64-2.7/spreads
copying spreads/workflow.py -> build/lib.linux-x86_64-2.7/spreads
creating build/lib.linux-x86_64-2.7/spreads/vendor
copying spreads/vendor/pathlib.py -> build/lib.linux-x86_64-2.7/spreads/vendor
copying spreads/vendor/__init__.py -> build/lib.linux-x86_64-2.7/spreads/vendor
copying spreads/vendor/confit.py -> build/lib.linux-x86_64-2.7/spreads/vendor
creating build/lib.linux-x86_64-2.7/spreadsplug
copying spreadsplug/tesseract.py -> build/lib.linux-x86_64-2.7/spreadsplug
copying spreadsplug/pdfbeads.py -> build/lib.linux-x86_64-2.7/spreadsplug
copying spreadsplug/djvubind.py -> build/lib.linux-x86_64-2.7/spreadsplug
copying spreadsplug/hidtrigger.py -> build/lib.linux-x86_64-2.7/spreadsplug
copying spreadsplug/scantailor.py -> build/lib.linux-x86_64-2.7/spreadsplug
copying spreadsplug/__init__.py -> build/lib.linux-x86_64-2.7/spreadsplug
copying spreadsplug/intervaltrigger.py -> build/lib.linux-x86_64-2.7/spreadsplug
copying spreadsplug/autorotate.py -> build/lib.linux-x86_64-2.7/spreadsplug
creating build/lib.linux-x86_64-2.7/spreadsplug/dev
copying spreadsplug/dev/__init__.py -> build/lib.linux-x86_64-2.7/spreadsplug/dev
copying spreadsplug/dev/chdkcamera.py -> build/lib.linux-x86_64-2.7/spreadsplug/dev
creating build/lib.linux-x86_64-2.7/spreadsplug/gui
copying spreadsplug/gui/gui_rc.py -> build/lib.linux-x86_64-2.7/spreadsplug/gui
copying spreadsplug/gui/gui.py -> build/lib.linux-x86_64-2.7/spreadsplug/gui
copying spreadsplug/gui/__init__.py -> build/lib.linux-x86_64-2.7/spreadsplug/gui
creating build/lib.linux-x86_64-2.7/spreadsplug/web
copying spreadsplug/web/worker.py -> build/lib.linux-x86_64-2.7/spreadsplug/web
copying spreadsplug/web/web.py -> build/lib.linux-x86_64-2.7/spreadsplug/web
copying spreadsplug/web/persistence.py -> build/lib.linux-x86_64-2.7/spreadsplug/web
copying spreadsplug/web/__init__.py -> build/lib.linux-x86_64-2.7/spreadsplug/web
copying spreadsplug/web/util.py -> build/lib.linux-x86_64-2.7/spreadsplug/web
copying spreads/config_default.yaml -> build/lib.linux-x86_64-2.7/spreads
creating build/lib.linux-x86_64-2.7/spreadsplug/gui/pixmaps
copying spreadsplug/gui/pixmaps/monk.png -> build/lib.linux-x86_64-2.7/spreadsplug/gui/pixmaps
creating build/lib.linux-x86_64-2.7/spreadsplug/web/client
copying spreadsplug/web/client/index.html -> build/lib.linux-x86_64-2.7/spreadsplug/web/client
copying spreadsplug/web/client/spreads.css -> build/lib.linux-x86_64-2.7/spreadsplug/web/client
copying spreadsplug/web/client/spreads.min.js -> build/lib.linux-x86_64-2.7/spreadsplug/web/client
copying spreadsplug/web/client/spreads.js -> build/lib.linux-x86_64-2.7/spreadsplug/web/client
creating build/lib.linux-x86_64-2.7/spreadsplug/web/client/foundation
creating build/lib.linux-x86_64-2.7/spreadsplug/web/client/foundation/css
copying spreadsplug/web/client/foundation/css/foundation-icons.css -> build/lib.linux-x86_64-2.7/spreadsplug/web/client/foundation/css
creating build/lib.linux-x86_64-2.7/spreadsplug/web/client/foundation/fonts
copying spreadsplug/web/client/foundation/fonts/foundation-icons.eot -> build/lib.linux-x86_64-2.7/spreadsplug/web/client/foundation/fonts
copying spreadsplug/web/client/foundation/fonts/foundation-icons.woff -> build/lib.linux-x86_64-2.7/spreadsplug/web/client/foundation/fonts
copying spreadsplug/web/client/foundation/fonts/foundation-icons.ttf -> build/lib.linux-x86_64-2.7/spreadsplug/web/client/foundation/fonts
copying spreadsplug/web/client/foundation/fonts/foundation-icons.svg -> build/lib.linux-x86_64-2.7/spreadsplug/web/client/foundation/fonts
creating build/lib.linux-x86_64-2.7/spreadsplug/web/client/foundation/js
copying spreadsplug/web/client/foundation/js/foundation.js -> build/lib.linux-x86_64-2.7/spreadsplug/web/client/foundation/js
copying spreadsplug/web/client/foundation/js/foundation.min.js -> build/lib.linux-x86_64-2.7/spreadsplug/web/client/foundation/js
creating build/bdist.linux-x86_64
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/spreadsplug
creating build/bdist.linux-x86_64/egg/spreadsplug/dev
copying build/lib.linux-x86_64-2.7/spreadsplug/dev/__init__.py -> build/bdist.linux-x86_64/egg/spreadsplug/dev
copying build/lib.linux-x86_64-2.7/spreadsplug/dev/chdkcamera.py -> build/bdist.linux-x86_64/egg/spreadsplug/dev
copying build/lib.linux-x86_64-2.7/spreadsplug/tesseract.py -> build/bdist.linux-x86_64/egg/spreadsplug
copying build/lib.linux-x86_64-2.7/spreadsplug/pdfbeads.py -> build/bdist.linux-x86_64/egg/spreadsplug
copying build/lib.linux-x86_64-2.7/spreadsplug/djvubind.py -> build/bdist.linux-x86_64/egg/spreadsplug
creating build/bdist.linux-x86_64/egg/spreadsplug/web
copying build/lib.linux-x86_64-2.7/spreadsplug/web/worker.py -> build/bdist.linux-x86_64/egg/spreadsplug/web
copying build/lib.linux-x86_64-2.7/spreadsplug/web/web.py -> build/bdist.linux-x86_64/egg/spreadsplug/web
copying build/lib.linux-x86_64-2.7/spreadsplug/web/persistence.py -> build/bdist.linux-x86_64/egg/spreadsplug/web
creating build/bdist.linux-x86_64/egg/spreadsplug/web/client
copying build/lib.linux-x86_64-2.7/spreadsplug/web/client/spreads.min.js -> build/bdist.linux-x86_64/egg/spreadsplug/web/client
copying build/lib.linux-x86_64-2.7/spreadsplug/web/client/index.html -> build/bdist.linux-x86_64/egg/spreadsplug/web/client
creating build/bdist.linux-x86_64/egg/spreadsplug/web/client/foundation
creating build/bdist.linux-x86_64/egg/spreadsplug/web/client/foundation/css
copying build/lib.linux-x86_64-2.7/spreadsplug/web/client/foundation/css/foundation-icons.css -> build/bdist.linux-x86_64/egg/spreadsplug/web/client/foundation/css
creating build/bdist.linux-x86_64/egg/spreadsplug/web/client/foundation/js
copying build/lib.linux-x86_64-2.7/spreadsplug/web/client/foundation/js/foundation.js -> build/bdist.linux-x86_64/egg/spreadsplug/web/client/foundation/js
copying build/lib.linux-x86_64-2.7/spreadsplug/web/client/foundation/js/foundation.min.js -> build/bdist.linux-x86_64/egg/spreadsplug/web/client/foundation/js
creating build/bdist.linux-x86_64/egg/spreadsplug/web/client/foundation/fonts
copying build/lib.linux-x86_64-2.7/spreadsplug/web/client/foundation/fonts/foundation-icons.eot -> build/bdist.linux-x86_64/egg/spreadsplug/web/client/foundation/fonts
copying build/lib.linux-x86_64-2.7/spreadsplug/web/client/foundation/fonts/foundation-icons.woff -> build/bdist.linux-x86_64/egg/spreadsplug/web/client/foundation/fonts
copying build/lib.linux-x86_64-2.7/spreadsplug/web/client/foundation/fonts/foundation-icons.ttf -> build/bdist.linux-x86_64/egg/spreadsplug/web/client/foundation/fonts
copying build/lib.linux-x86_64-2.7/spreadsplug/web/client/foundation/fonts/foundation-icons.svg -> build/bdist.linux-x86_64/egg/spreadsplug/web/client/foundation/fonts
copying build/lib.linux-x86_64-2.7/spreadsplug/web/client/spreads.js -> build/bdist.linux-x86_64/egg/spreadsplug/web/client
copying build/lib.linux-x86_64-2.7/spreadsplug/web/client/spreads.css -> build/bdist.linux-x86_64/egg/spreadsplug/web/client
copying build/lib.linux-x86_64-2.7/spreadsplug/web/__init__.py -> build/bdist.linux-x86_64/egg/spreadsplug/web
copying build/lib.linux-x86_64-2.7/spreadsplug/web/util.py -> build/bdist.linux-x86_64/egg/spreadsplug/web
creating build/bdist.linux-x86_64/egg/spreadsplug/gui
copying build/lib.linux-x86_64-2.7/spreadsplug/gui/gui_rc.py -> build/bdist.linux-x86_64/egg/spreadsplug/gui
copying build/lib.linux-x86_64-2.7/spreadsplug/gui/gui.py -> build/bdist.linux-x86_64/egg/spreadsplug/gui
creating build/bdist.linux-x86_64/egg/spreadsplug/gui/pixmaps
copying build/lib.linux-x86_64-2.7/spreadsplug/gui/pixmaps/monk.png -> build/bdist.linux-x86_64/egg/spreadsplug/gui/pixmaps
copying build/lib.linux-x86_64-2.7/spreadsplug/gui/__init__.py -> build/bdist.linux-x86_64/egg/spreadsplug/gui
copying build/lib.linux-x86_64-2.7/spreadsplug/hidtrigger.py -> build/bdist.linux-x86_64/egg/spreadsplug
copying build/lib.linux-x86_64-2.7/spreadsplug/scantailor.py -> build/bdist.linux-x86_64/egg/spreadsplug
copying build/lib.linux-x86_64-2.7/spreadsplug/__init__.py -> build/bdist.linux-x86_64/egg/spreadsplug
copying build/lib.linux-x86_64-2.7/spreadsplug/intervaltrigger.py -> build/bdist.linux-x86_64/egg/spreadsplug
copying build/lib.linux-x86_64-2.7/spreadsplug/autorotate.py -> build/bdist.linux-x86_64/egg/spreadsplug
creating build/bdist.linux-x86_64/egg/spreads
copying build/lib.linux-x86_64-2.7/spreads/cli.py -> build/bdist.linux-x86_64/egg/spreads
copying build/lib.linux-x86_64-2.7/spreads/plugin.py -> build/bdist.linux-x86_64/egg/spreads
copying build/lib.linux-x86_64-2.7/spreads/__init__.py -> build/bdist.linux-x86_64/egg/spreads
copying build/lib.linux-x86_64-2.7/spreads/config_default.yaml -> build/bdist.linux-x86_64/egg/spreads
creating build/bdist.linux-x86_64/egg/spreads/vendor
copying build/lib.linux-x86_64-2.7/spreads/vendor/pathlib.py -> build/bdist.linux-x86_64/egg/spreads/vendor
copying build/lib.linux-x86_64-2.7/spreads/vendor/__init__.py -> build/bdist.linux-x86_64/egg/spreads/vendor
copying build/lib.linux-x86_64-2.7/spreads/vendor/confit.py -> build/bdist.linux-x86_64/egg/spreads/vendor
copying build/lib.linux-x86_64-2.7/spreads/util.py -> build/bdist.linux-x86_64/egg/spreads
copying build/lib.linux-x86_64-2.7/spreads/workflow.py -> build/bdist.linux-x86_64/egg/spreads
byte-compiling build/bdist.linux-x86_64/egg/spreadsplug/dev/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreadsplug/dev/chdkcamera.py to chdkcamera.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreadsplug/tesseract.py to tesseract.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreadsplug/pdfbeads.py to pdfbeads.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreadsplug/djvubind.py to djvubind.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreadsplug/web/worker.py to worker.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreadsplug/web/web.py to web.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreadsplug/web/persistence.py to persistence.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreadsplug/web/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreadsplug/web/util.py to util.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreadsplug/gui/gui_rc.py to gui_rc.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreadsplug/gui/gui.py to gui.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreadsplug/gui/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreadsplug/hidtrigger.py to hidtrigger.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreadsplug/scantailor.py to scantailor.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreadsplug/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreadsplug/intervaltrigger.py to intervaltrigger.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreadsplug/autorotate.py to autorotate.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreads/cli.py to cli.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreads/plugin.py to plugin.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreads/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreads/vendor/pathlib.py to pathlib.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreads/vendor/__init__.py to __init__.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreads/vendor/confit.py to confit.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreads/util.py to util.pyc
byte-compiling build/bdist.linux-x86_64/egg/spreads/workflow.py to workflow.pyc
creating build/bdist.linux-x86_64/egg/EGG-INFO
installing scripts to build/bdist.linux-x86_64/egg/EGG-INFO/scripts
running install_scripts
running build_scripts
creating build/scripts-2.7
copying and adjusting spread -> build/scripts-2.7
changing mode of build/scripts-2.7/spread from 644 to 755
creating build/bdist.linux-x86_64/egg/EGG-INFO/scripts
copying build/scripts-2.7/spread -> build/bdist.linux-x86_64/egg/EGG-INFO/scripts
changing mode of build/bdist.linux-x86_64/egg/EGG-INFO/scripts/spread to 755
copying spreads.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying spreads.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying spreads.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying spreads.egg-info/entry_points.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying spreads.egg-info/requires.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying spreads.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
zip_safe flag not set; analyzing archive contents...
spreads.vendor.confit: module references __file__
creating dist
creating 'dist/spreads-0.0.0-py2.7.egg' and adding 'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing spreads-0.0.0-py2.7.egg
creating /usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg
Extracting spreads-0.0.0-py2.7.egg to /usr/local/lib/python2.7/dist-packages
Adding spreads 0.0.0 to easy-install.pth file
Installing spread script to /usr/local/bin
Installed /usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg
Processing dependencies for spreads==0.0.0
Searching for futures>=2.1.4
Reading http://pypi.python.org/simple/futures/
Best match: futures 2.1.6
Downloading https://pypi.python.org/packages/source/f/futures/futures-2.1.6.tar.gz#md5=cfab9ac3cd55d6c7ddd0546a9f22f453
Processing futures-2.1.6.tar.gz
Running futures-2.1.6/setup.py -q bdist_egg --dist-dir /tmp/easy_install-kevZ_v/futures-2.1.6/egg-dist-tmp-AoVv9i
Adding futures 2.1.6 to easy-install.pth file
Installed /usr/local/lib/python2.7/dist-packages/futures-2.1.6-py2.7.egg
Searching for colorama>=0.2.5
Reading http://pypi.python.org/simple/colorama/
Best match: colorama 0.2.7
Downloading https://pypi.python.org/packages/source/c/colorama/colorama-0.2.7.zip#md5=8cfcd1edf120d957f75e49bfdc6e22dd
Processing colorama-0.2.7.zip
Running colorama-0.2.7/setup.py -q bdist_egg --dist-dir /tmp/easy_install-oZfYlS/colorama-0.2.7/egg-dist-tmp-gckXn2
zip_safe flag not set; analyzing archive contents...
Adding colorama 0.2.7 to easy-install.pth file
Installed /usr/local/lib/python2.7/dist-packages/colorama-0.2.7-py2.7.egg
Searching for stevedore==0.13
Best match: stevedore 0.13
Adding stevedore 0.13 to easy-install.pth file
Using /usr/local/lib/python2.7/dist-packages
Searching for PyYAML==3.10
Best match: PyYAML 3.10
Adding PyYAML 3.10 to easy-install.pth file
Using /usr/lib/python2.7/dist-packages
Finished processing dependencies for spreads==0.0.0
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ pip install git+https://github.com/gbishop/cython-hidapi.git
Downloading/unpacking git+https://github.com/gbishop/cython-hidapi.git
Cloning https://github.com/gbishop/cython-hidapi.git to /tmp/pip-rTmlZg-build
Running setup.py (path:/tmp/pip-rTmlZg-build/setup.py) egg_info for package from git+https://github.com/gbishop/cython-hidapi.git
Traceback (most recent call last):
File "<string>", line 17, in <module>
File "/tmp/pip-rTmlZg-build/setup.py", line 3, in <module>
from Cython.Distutils import build_ext
ImportError: No module named Cython.Distutils
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 17, in <module>
File "/tmp/pip-rTmlZg-build/setup.py", line 3, in <module>
from Cython.Distutils import build_ext
ImportError: No module named Cython.Distutils
----------------------------------------
Cleaning up...
Command python setup.py egg_info failed with error code 1 in /tmp/pip-rTmlZg-build
Storing debug log for failure in /home/kampsnigel/.pip/pip.log
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ sudo pip install git+https://github.com/gbishop/cython-hidapi.git
[sudo] password for kampsnigel:
Downloading/unpacking git+https://github.com/gbishop/cython-hidapi.git
Cloning https://github.com/gbishop/cython-hidapi.git to /tmp/pip-ReROuP-build
Running setup.py egg_info for package from git+https://github.com/gbishop/cython-hidapi.git
Installing collected packages: UNKNOWN
Running setup.py install for UNKNOWN
cythoning hid.pyx to hid.c
building 'hid' extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -I/usr/include/libusb-1.0 -fPIC -I/usr/include/python2.7 -c hid.c -o build/temp.linux-x86_64-2.7/hid.o
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -I/usr/include/libusb-1.0 -fPIC -I/usr/include/python2.7 -c hid-libusb.c -o build/temp.linux-x86_64-2.7/hid-libusb.o
hid-libusb.c: In function ‘hid_open_path’:
hid-libusb.c:745:10: warning: variable ‘num_devs’ set but not used [-Wunused-but-set-variable]
gcc -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -Wl,-z,relro -L/usr/lib/i386-linux-gnu -lusb-1.0 -ludev -lrt -I/usr/include/libusb-1.0 build/temp.linux-x86_64-2.7/hid.o build/temp.linux-x86_64-2.7/hid-libusb.o -o build/lib.linux-x86_64-2.7/hid.so
Successfully installed UNKNOWN
Cleaning up...
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ mkdir -p /home/spreads/.config/spreads
mkdir: cannot create directory `/home/spreads': Permission denied
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ sudo mkdir -p /home/spreads/.config/spreads
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ cp $DELIVERY_DIR/files/config.yaml /home/spreads/.config/spreads
cp: cannot stat `/files/config.yaml': No such file or directory
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ sudo cp $DELIVERY_DIR/files/config.yaml /home/spreads/.config/spreads
cp: cannot stat `/files/config.yaml': No such file or directory
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ cp $DELIVERY_DIR/files/spread /etc/init.d/spread
cp: cannot stat `/files/spread': No such file or directory
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ spread configure
Please select a device driver from the following list:
[1]: chdkcamera
[2]: a2200
Select a driver: 2
Selected "a2200" as device driver
Please select your desired plugins from the following list:
1: scantailor
2: web
3: tesseract
4: djvubind
5: gui
6: colorcorrect
7: autorotate
8: intervaltrigger
9: hidtrigger
10: pdfbeads
Select a plugin (or hit enter to finish): 2
1: scantailor
x 2: web
3: tesseract
4: djvubind
5: gui
6: colorcorrect
7: autorotate
8: intervaltrigger
9: hidtrigger
10: pdfbeads
Select a plugin (or hit enter to finish):
spreads encountered an error:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/EGG-INFO/scripts/spread", line 39, in <module>
cli.main()
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/cli.py", line 446, in main
args.subcommand(config)
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/cli.py", line 158, in configure
plugin.setup_plugin_config(config)
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/plugin.py", line 366, in setup_plugin_config
pluginmanager = get_pluginmanager(config)
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/plugin.py", line 340, in get_pluginmanager
name_order=True)
File "/usr/local/lib/python2.7/dist-packages/stevedore/named.py", line 43, in __init__
invoke_kwds)
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/plugin.py", line 76, in _load_plugins
ext = self._load_one_plugin(ep, *args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/stevedore/named.py", line 95, in _load_one_plugin
ep, invoke_on_load, invoke_args, invoke_kwds,
File "/usr/local/lib/python2.7/dist-packages/stevedore/extension.py", line 146, in _load_one_plugin
plugin = ep.load()
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 1989, in load
entry = __import__(self.module_name, globals(),globals(), ['__name__'])
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreadsplug/web/__init__.py", line 4, in <module>
from flask import Flask
ImportError: No module named flask
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ pip install flask
Requirement already satisfied (use --upgrade to upgrade): flask in /home/kampsnigel/.venv1/lib/python2.7/site-packages
Requirement already satisfied (use --upgrade to upgrade): Werkzeug>=0.7 in /home/kampsnigel/.venv1/lib/python2.7/site-packages (from flask)
Requirement already satisfied (use --upgrade to upgrade): Jinja2>=2.4 in /home/kampsnigel/.venv1/lib/python2.7/site-packages (from flask)
Requirement already satisfied (use --upgrade to upgrade): itsdangerous>=0.21 in /home/kampsnigel/.venv1/lib/python2.7/site-packages (from flask)
Requirement already satisfied (use --upgrade to upgrade): markupsafe in /home/kampsnigel/.venv1/lib/python2.7/site-packages (from Jinja2>=2.4->flask)
Cleaning up...
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ spread configure
Please select a device driver from the following list:
[1]: chdkcamera
[2]: a2200
Select a driver: 2
Selected "a2200" as device driver
Please select your desired plugins from the following list:
1: scantailor
2: web
3: tesseract
4: djvubind
5: gui
6: colorcorrect
7: autorotate
8: intervaltrigger
9: hidtrigger
10: pdfbeads
Select a plugin (or hit enter to finish): 2
1: scantailor
x 2: web
3: tesseract
4: djvubind
5: gui
6: colorcorrect
7: autorotate
8: intervaltrigger
9: hidtrigger
10: pdfbeads
Select a plugin (or hit enter to finish):
spreads encountered an error:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/EGG-INFO/scripts/spread", line 39, in <module>
cli.main()
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/cli.py", line 446, in main
args.subcommand(config)
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/cli.py", line 158, in configure
plugin.setup_plugin_config(config)
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/plugin.py", line 366, in setup_plugin_config
pluginmanager = get_pluginmanager(config)
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/plugin.py", line 340, in get_pluginmanager
name_order=True)
File "/usr/local/lib/python2.7/dist-packages/stevedore/named.py", line 43, in __init__
invoke_kwds)
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/plugin.py", line 76, in _load_plugins
ext = self._load_one_plugin(ep, *args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/stevedore/named.py", line 95, in _load_one_plugin
ep, invoke_on_load, invoke_args, invoke_kwds,
File "/usr/local/lib/python2.7/dist-packages/stevedore/extension.py", line 146, in _load_one_plugin
plugin = ep.load()
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 1989, in load
entry = __import__(self.module_name, globals(),globals(), ['__name__'])
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreadsplug/web/__init__.py", line 4, in <module>
from flask import Flask
ImportError: No module named flask
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ spread configure
Please select a device driver from the following list:
[1]: chdkcamera
[2]: a2200
Select a driver: 2
Selected "a2200" as device driver
Please select your desired plugins from the following list:
1: scantailor
2: web
3: tesseract
4: djvubind
5: gui
6: colorcorrect
7: autorotate
8: intervaltrigger
9: hidtrigger
10: pdfbeads
Select a plugin (or hit enter to finish):
stevedore.extension: Could not load 'a2200': No module named usb
stevedore.extension: No module named usb
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/stevedore/extension.py", line 134, in _load_plugins
invoke_kwds,
File "/usr/local/lib/python2.7/dist-packages/stevedore/named.py", line 95, in _load_one_plugin
ep, invoke_on_load, invoke_args, invoke_kwds,
File "/usr/local/lib/python2.7/dist-packages/stevedore/extension.py", line 146, in _load_one_plugin
plugin = ep.load()
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 1989, in load
entry = __import__(self.module_name, globals(),globals(), ['__name__'])
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreadsplug/dev/chdkcamera.py", line 11, in <module>
import usb
ImportError: No module named usb
spreads encountered an error:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/EGG-INFO/scripts/spread", line 39, in <module>
cli.main()
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/cli.py", line 446, in main
args.subcommand(config)
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/cli.py", line 158, in configure
plugin.setup_plugin_config(config)
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/plugin.py", line 368, in setup_plugin_config
driver = get_driver(config["driver"].get(unicode))
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/plugin.py", line 346, in get_driver
name=driver_name)
File "/usr/local/lib/python2.7/dist-packages/stevedore/driver.py", line 31, in __init__
invoke_kwds=invoke_kwds,
File "/usr/local/lib/python2.7/dist-packages/stevedore/named.py", line 44, in __init__
self._init_plugins(extensions)
File "/usr/local/lib/python2.7/dist-packages/stevedore/driver.py", line 66, in _init_plugins
(self.namespace, name))
RuntimeError: No u'spreadsplug.devices' driver found, looking for u'a2200'
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ spread configure
Please select a device driver from the following list:
[1]: chdkcamera
[2]: a2200
Select a driver: 2
Selected "a2200" as device driver
Please select your desired plugins from the following list:
1: scantailor
2: web
3: tesseract
4: djvubind
5: gui
6: colorcorrect
7: autorotate
8: intervaltrigger
9: hidtrigger
10: pdfbeads
Select a plugin (or hit enter to finish): 2
1: scantailor
x 2: web
3: tesseract
4: djvubind
5: gui
6: colorcorrect
7: autorotate
8: intervaltrigger
9: hidtrigger
10: pdfbeads
Select a plugin (or hit enter to finish):
spreads encountered an error:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/EGG-INFO/scripts/spread", line 39, in <module>
cli.main()
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/cli.py", line 446, in main
args.subcommand(config)
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/cli.py", line 158, in configure
plugin.setup_plugin_config(config)
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/plugin.py", line 366, in setup_plugin_config
pluginmanager = get_pluginmanager(config)
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/plugin.py", line 340, in get_pluginmanager
name_order=True)
File "/usr/local/lib/python2.7/dist-packages/stevedore/named.py", line 43, in __init__
invoke_kwds)
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/plugin.py", line 76, in _load_plugins
ext = self._load_one_plugin(ep, *args, **kwargs)
File "/usr/local/lib/python2.7/dist-packages/stevedore/named.py", line 95, in _load_one_plugin
ep, invoke_on_load, invoke_args, invoke_kwds,
File "/usr/local/lib/python2.7/dist-packages/stevedore/extension.py", line 146, in _load_one_plugin
plugin = ep.load()
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 1989, in load
entry = __import__(self.module_name, globals(),globals(), ['__name__'])
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreadsplug/web/__init__.py", line 4, in <module>
from flask import Flask
ImportError: No module named flask
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ spread configure
Please select a device driver from the following list:
[1]: chdkcamera
[2]: a2200
Select a driver: 2
Selected "a2200" as device driver
Please select your desired plugins from the following list:
1: scantailor
2: web
3: tesseract
4: djvubind
5: gui
6: colorcorrect
7: autorotate
8: intervaltrigger
9: hidtrigger
10: pdfbeads
Select a plugin (or hit enter to finish):
stevedore.extension: Could not load 'a2200': No module named usb
stevedore.extension: No module named usb
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/stevedore/extension.py", line 134, in _load_plugins
invoke_kwds,
File "/usr/local/lib/python2.7/dist-packages/stevedore/named.py", line 95, in _load_one_plugin
ep, invoke_on_load, invoke_args, invoke_kwds,
File "/usr/local/lib/python2.7/dist-packages/stevedore/extension.py", line 146, in _load_one_plugin
plugin = ep.load()
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 1989, in load
entry = __import__(self.module_name, globals(),globals(), ['__name__'])
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreadsplug/dev/chdkcamera.py", line 11, in <module>
import usb
ImportError: No module named usb
spreads encountered an error:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/EGG-INFO/scripts/spread", line 39, in <module>
cli.main()
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/cli.py", line 446, in main
args.subcommand(config)
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/cli.py", line 158, in configure
plugin.setup_plugin_config(config)
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/plugin.py", line 368, in setup_plugin_config
driver = get_driver(config["driver"].get(unicode))
File "/usr/local/lib/python2.7/dist-packages/spreads-0.0.0-py2.7.egg/spreads/plugin.py", line 346, in get_driver
name=driver_name)
File "/usr/local/lib/python2.7/dist-packages/stevedore/driver.py", line 31, in __init__
invoke_kwds=invoke_kwds,
File "/usr/local/lib/python2.7/dist-packages/stevedore/named.py", line 44, in __init__
self._init_plugins(extensions)
File "/usr/local/lib/python2.7/dist-packages/stevedore/driver.py", line 66, in _init_plugins
(self.namespace, name))
RuntimeError: No u'spreadsplug.devices' driver found, looking for u'a2200'
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$ sudo cp $DELIVERY_DIR/files/config.yaml /home/spreads/.config/spreads
cp: cannot stat `/files/config.yaml': No such file or directory
(.venv1)kampsnigel@nya-datorn-ubuntu:/usr/src/spreads$