-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDEPS
123 lines (89 loc) · 3.8 KB
/
DEPS
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
Python stuff
============
Lib: python
Version: 2.7.x
Link: http://python.org/ftp/python/2.7.2/Python-2.7.2.tar.bz2
Install: ./configure && make && make install
Comments: If you choose to compile your python interpreter, you must link it
against all optional libraries it requests. Like libreadline and so. I
strongly suggest you to upgrade the python package of your favorite
distro if it's not updated enough.
Lib: python-imaging-library (PIL)
Version: 1.1.x
Install: python setup.py install
Comments: It's necessary to link it against all dependencies (even the
optionals)
Lib: sqlalchemy
Version: 0.7.3
Link: http://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-0.7.3.tar.gz
Install: python setup.py install
Lib: elixir
Version: 0.7.1
Link: http://pypi.python.org/packages/source/E/Elixir/Elixir-0.7.1.tar.gz
Install: python setup.py install
Lib: flask
Version: 0.8
Link: pypi.python.org/packages/source/F/Flask/Flask-0.8.tar.gz
Lib: Werkzeug
Version: 0.8.1
Link: http://pypi.python.org/packages/source/W/Werkzeug/Werkzeug-0.8.1.tar.gz
Install: python setup.py install
Lib: Jinja2
Version: 2.6
Link: http://pypi.python.org/packages/source/J/Jinja2/Jinja2-2.6.tar.gz
Install: python setup.py install
Lib: anyjson
Version: 0.3.1
Link: http://pypi.python.org/packages/source/a/anyjson/anyjson-0.3.1.tar.gz
Install: python setup.py install
Lib: tweetstream
Version: 1.1.1
Link: http://pypi.python.org/packages/source/t/tweetstream/tweetstream-1.1.1.tar.gz
Install: python setup.py install
Lib: wtforms
Version: 0.6.3
Link: http://pypi.python.org/packages/source/W/WTForms/WTForms-0.6.3.zip
Install: python setup.py install
Lib: flask-wtf
Version: 0.5.2
Link: http://pypi.python.org/packages/source/F/Flask-WTF/Flask-WTF-0.5.2.tar.gz
Install: python setup.py install
Lib: flask-uploads
Version: 0.1.3
Link: http://pypi.python.org/packages/source/F/Flask-Uploads/Flask-Uploads-0.1.3.tar.gz
Install: python setup.py install
Lib: oauth2
Version: 1.5.170
Link: http://pypi.python.org/packages/source/o/oauth2/oauth2-1.5.170.tar.gz
Install: python setup.py install
Lib: flask-oauth
Version: 0.11
Link: http://pypi.python.org/packages/source/F/Flask-OAuth/Flask-OAuth-0.11.tar.gz
Install: python setup.py install
PHP stuff
=========
Lib: wordpress
Version: 3.2.1
Link: http://wordpress.org/latest.tar.gz
Install: Wordpress package is a self-contained instance, so to install it,
you usually just need to decompress the tarball in a directory
visible by your webserver and it's done. Distributions like Debian
has a more complex approach to make it possible to run more than one
instance with the same source code and to install different versions
at the same time a system. But I guess it's too much work for a single
site.
Comments: To make wordpress work properly, you'll need to install/enable
mysql and gd (the graphics library).
Lib: Twig
Version: 1.6.0
Link: https://github.com/fabpot/Twig/tarball/v1.6.0
Install: All you have to do is to install the library in a directory
visible by the PHP include system. In debian, /usr/share/php
is the right place. It's possible to install twig using pear
too. The following simple commands do this job:
# pear channel-discover pear.twig-project.org
# pear install twig/Twig
Lib: HTTP-Reques
Version: -
Link: http://pear.php.net/package/HTTP_Request/
Install: apt-get install php-http-reququest