-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
63 lines (54 loc) · 1.7 KB
/
buildout.cfg
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
[buildout]
parts = django
django-easy-news
django-utilities
make-config
[django]
recipe = djangorecipe ==0.23.1
project = f1info
version = 1.2.4
settings = production
unzip = true
extra-paths = ${django-easy-news:location}
${django-utilities:location}
eggs = django-imagekit ==0.3.3
South ==0.7.3
markdown ==2.0.3
django-markitup ==0.6.1
django-tagging ==0.3.1
pytils ==0.2.3
redsolutioncms.django-chunks ==0.1.0
redsolutioncms.django-hex-storage ==0.1.0
redsolutioncms.django-menu-proxy ==0.1.0
redsolutioncms.django-model-url ==0.1.0
django-page-cms ==1.4.0
redsolutioncms.django-seo ==0.2.0
redsolutioncms.django-server-config ==0.1.0
redsolutioncms.django-tinymce-attachment ==0.1.0
django-authority ==0.4
[django-easy-news]
recipe = gitrecipe
repository = git://github.com/elky/django-easy-news.git
rev = origin/0.2.0
[django-utilities]
recipe = gitrecipe
repository = git://github.com/elky/django-utilities.git
rev = origin/0.1
# CONFIG
[make-config]
recipe = iw.recipe.cmd
on_install = true
on_update = true
cmds = sudo rm -f bin/init.d bin/lighttpd bin/logrotate bin/monit bin/*.py
bin/django make_config init.d > bin/init.d
bin/django make_config lighttpd > bin/lighttpd
bin/django make_config logrotate > bin/logrotate
bin/django make_config monit > bin/monit
bin/django make_config install.py > bin/install.py
bin/django make_config uninstall.py > bin/uninstall.py
bin/django make_config enable.py > bin/enable.py
bin/django make_config disable.py > bin/disable.py
sudo chown root:root bin/*
sudo chmod ug=rw,o=r bin/*
sudo chmod ug=rwx,o=rx bin/init.d bin/django bin/buildout
echo Configs were saved to "bin/"