Project

General

Profile

1
root := .
2
include lib/common.Makefile
3

    
4

    
5
##### Vars/functions
6

    
7
# Make
8
SHELL := /bin/bash
9

    
10
# Paths
11
bin := bin
12

    
13
##### Environment
14

    
15
export PGOPTIONS = --client-min-messages=WARNING
16

    
17
##### General targets
18

    
19
remake: _always clean
20
	$(MAKE)
21
# re-run make so that cache of existing files is reset
22

    
23
##### Installation
24

    
25
# public must be installed *after* inputs because some views depend on inputs
26
# schemas/public/install also tests that a clean public schema will be
27
# installable by full-database import
28
install: _always config core mysql inputs/download/live inputs/install \
29
schemas/public/reinstall
30
	@$(done)
31
# schemas/public/install would errexit if the public schema already exists
32

    
33
uninstall: _always rm_mysql rm_core ;
34

    
35
reinstall: _always uninstall install ;
36

    
37
##### config: live and test environments
38

    
39
config: _always
40
	mkdir -p ~/bin
41
	-ln -s $(realpath bin/make) ~/bin
42
# ignore errors if file exists
43

    
44
##### Core: VegBIEN DB and dependencies
45

    
46
core: _always $(call forOs,apache python php postgres misc) db
47
	@$(done)
48

    
49
rm_core: _always rm_db ;
50

    
51
reinstall_core: _always rm_core core ;
52

    
53
##### Apache
54

    
55
apache-Linux: _always
56
	# Apache 2.4, which comes with Ubuntu 14.04
57
	-sudo apt-get --yes install apache2
58
	#-sudo apt-get --yes install libapache2-mod-php5
59

    
60
apache-Darwin: _always ;
61

    
62
##### Python
63

    
64
python-Linux: _always
65
	-sudo apt-get --yes install python
66
	-sudo apt-get --yes install python3
67
	-sudo apt-get --yes install python-dev
68
	-sudo apt-get --yes install python-dateutil
69
	-sudo apt-get --yes install python-parallel
70
	-sudo apt-get --yes install python-profiler
71
	-sudo apt-get --yes install python-pip
72
	-sudo apt-get --yes install pymetrics
73
	-sudo pip install pp
74

    
75
python-Darwin: _always
76
	@# Python 2 comes preinstalled
77
	@echo $(emph)'Installing Python 3.2 on Mac OS X:'$(endEmph)
78
	@echo 'Download it: http://www.python.org/ftp/python/3.2.3/python-3.2.3-macosx10.6.dmg'
79
	@echo 'Open the disk image'
80
	@echo 'Run the installer in it'
81
	@$(wait)
82
	@echo $(emph)'Installing python-dateutil on Mac OS X:'$(endEmph)
83
	@echo 'Download it for Python 2: http://labix.org/download/python-dateutil/python-dateutil-1.5.tar.gz'
84
	@echo 'Extract the archive'
85
	@echo 'Change to the directory of the extracted files'
86
	@echo 'Run python setup.py build'
87
	@echo 'Run sudo python setup.py install'
88
	@echo "Run python -c 'import dateutil'"
89
	@echo 'Download it for Python 3: http://labix.org/download/python-dateutil/python-dateutil-2.0.tar.gz'
90
	@echo 'Extract the archive'
91
	@echo 'Change to the directory of the extracted files'
92
	@echo 'Run python3 setup.py build'
93
	@echo 'Run sudo python3 setup.py install'
94
	@echo "Run python3 -c 'import dateutil'"
95
	@$(wait)
96
	@echo $(emph)'Installing pip on Mac OS X:'$(endEmph)
97
	@echo 'Follow the instructions at http://www.pip-installer.org/en/latest/installing.html'
98
	@$(wait)
99

    
100
##### PHP
101

    
102
php-Linux: _always
103
	-sudo apt-get --yes install php-http-request
104

    
105
php-Darwin: _always
106
	@echo $(emph)'Installing PHP PEAR and HTTP_Request on Mac OS X:'$(endEmph)
107
	@echo 'Download http://pear.php.net/go-pear.phar'
108
	@echo 'Change to the directory of the downloaded file'
109
	@echo 'Run php -d detect_unicode=0 go-pear.phar'
110
	@echo 'Whenever prompted, press Enter to select default options'
111
	@echo 'Add $$HOME/pear/bin to your $$PATH'
112
	@echo 'Add $(HOME)/pear/share/pear to your php.ini include_path'
113
	@echo 'If needed, set $$PHPRC to your php.ini'
114
	@echo "Run pear install HTTP_Request"
115
	@echo 'To run a php command: php -c <php.ini-path> ...'
116
	@$(wait)
117

    
118
##### PostgreSQL
119

    
120
define editPhppgadmin
121
-sudo patch /etc/phppgadmin/config.inc.php lib/phpPgAdmin.config.inc.php.diff
122
sudo cp -n /usr/share/phppgadmin/login.php /usr/share/phppgadmin/login.php.old
123
-sudo patch /usr/share/phppgadmin/login.php lib/phpPgAdmin.login.php.diff
124
endef
125
# ignore errors if patch has already been applied
126

    
127
editPhppgadminApacheConf = echo $$'1\n,s/deny from all/allow from all/\nwq'|\
128
sudo ed --loose-exit-status --verbose /etc/phppgadmin/apache.conf
129

    
130
apacheConf := /etc/apache2/apache2.conf
131
apacheConfPhppgadminLine := Include /etc/phppgadmin/apache.conf
132
editApacheConfForPhppgadmin =\
133
$(if $(shell grep -F "$(apacheConfPhppgadminLine)" $(apacheConf)),,\
134
$(call sudoAppend,$(apacheConf),\n$(apacheConfPhppgadminLine)))
135

    
136
asBien := sudo -E -u bien
137
pgVersion = "$$(env minor=1 bin/pg_version)"
138

    
139
linuxPostgresDir := /etc/postgresql/9.3/main
140
define pg_ctl-Linux
141
$(asAdmin) /etc/init.d/postgresql $(1)
142
endef
143

    
144
macPostgresDir := /usr/local/var/postgres
145
define pg_ctl-Darwin
146
brew services $(1) postgresql
147
endef
148

    
149
postgres_restart: postgres_restart-$(os) _always ;
150
postgres_restart-Linux: _always
151
	@# for some reason, pg_ctl does not work when run inside make
152
	@echo $(emph)'restart PostgreSQL manually:'$(endEmph)
153
	@echo $(call pg_ctl-$(os),restart)
154
	@$(wait)
155
postgres_restart-Darwin: _always
156
	@# for some reason, pg_ctl does not work when run inside make
157
	@echo $(emph)'restart PostgreSQL manually:'$(endEmph)
158
	@echo $(call pg_ctl-$(os),restart)
159
	@$(wait)
160

    
161
confirmPostgresReload = $(call confirm,Modifying postgresql.conf and pg_hba.conf)
162

    
163
define postgresReload-Linux
164
@$(confirmPostgresReload)
165
@echo $(emph)'kernel.shmmax must be set to at least 4GB minus 1 byte:'$(endEmph)
166
@echo 'Append the following to /etc/sysctl.conf:'
167
@echo 'kernel.shmmax=4294967295'
168
@$(wait)
169
chmod a+r schemas/*.conf || $(asBien) chmod a+r schemas/*.conf
170
-$(asAdmin) mv -n $(linuxPostgresDir)/postgresql.conf $(linuxPostgresDir)/postgresql.conf.old
171
$(asAdmin) cp --preserve=timestamps schemas/postgresql.conf $(linuxPostgresDir)/postgresql.conf
172
-$(asAdmin) mv -n $(linuxPostgresDir)/pg_hba.conf $(linuxPostgresDir)/pg_hba.conf.old
173
$(asAdmin) cp --preserve=timestamps schemas/pg_hba.conf $(linuxPostgresDir)/pg_hba.conf
174
$(MAKE) postgres_restart-$(os)
175

    
176
endef
177

    
178
define postgresReload-Darwin
179
@$(confirmPostgresReload)
180
chmod a+r schemas/*.conf
181
-$(asAdmin) mv -n $(macPostgresDir)/postgresql.conf $(macPostgresDir)/postgresql.conf.old
182
$(asAdmin) cp schemas/postgresql.Mac.conf $(macPostgresDir)/postgresql.conf
183
-$(asAdmin) mv -n $(macPostgresDir)/pg_hba.conf $(macPostgresDir)/pg_hba.conf.old
184
$(asAdmin) cp schemas/pg_hba.Mac.conf $(macPostgresDir)/pg_hba.conf
185
-$(asAdmin) mv -n $(macPostgresDir)/pg_ident.conf $(macPostgresDir)/pg_ident.conf.old
186
$(asAdmin) cp schemas/pg_ident.Mac.conf $(macPostgresDir)/pg_ident.conf
187
$(MAKE) postgres_restart-$(os)
188

    
189
endef
190

    
191
postgres_reload: _always
192
	$($(call forOs,postgresReload))
193

    
194
phppgadmin-Linux: _always
195
	-sudo apt-get --yes install phppgadmin
196
	$(editPhppgadmin)
197
	$(editPhppgadminApacheConf)
198
	-sudo ln -s ../conf.d/phppgadmin /etc/apache2/conf-available/phppgadmin.conf
199
	sudo a2enconf phppgadmin
200
	$(editApacheConfForPhppgadmin)
201
	-sudo apache2ctl restart
202

    
203
postgres-Linux: _always
204
	-sudo apt-get --yes install postgresql-9.3
205
	-sudo apt-get --yes install postgresql-contrib-$(pgVersion)
206
	-sudo apt-get --yes install postgresql-plpython3-$(pgVersion)
207
	-sudo apt-get --yes install libpq-dev
208
	-sudo apt-get --yes install postgresql-$(pgVersion)-postgis-2.1-scripts
209
	-sudo apt-get --yes install postgresql-$(pgVersion)-postgis-2.1
210
	-$(MAKE) phppgadmin-Linux
211
	-sudo pip install psycopg2
212
	-$(MAKE) $(postgresReload-Linux)
213
# run pg_version inline because it needs postgresql to be installed first
214
# ignore errors if conf files already edited
215

    
216
postgres-Darwin: _always
217
	ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
218
	brew doctor
219
	brew install postgis # also installs PostgreSQL
220
	-$(postgresReload-Darwin)
221
	-sudo easy_install psycopg2
222
	-$(postgresReload-Darwin)
223

    
224
postgres-: _always ; # other OSes
225

    
226
psqlAsAdminVegbien := $(psqlAsAdmin) vegbien
227
bienPassword := $(shell cat config/bien_password)
228
bienReadPassword := $(shell cat config/bien_read_password)
229

    
230
##### Misc.
231

    
232
misc-Linux: _always
233
	cp -p "$(shell which dotlockfile)" bin/
234

    
235
misc-Darwin: _always ;
236

    
237
##### VegBIEN DB
238

    
239
#### DB and users
240

    
241
confirmRmDb = $(call confirm,WARNING: This will delete your entire VegBIEN\
242
DB!,This includes all archived imports and staging tables.)
243

    
244
confirmRmPublicSchema = $(call confirm,WARNING: This will delete the current\
245
public schema of your VegBIEN DB!,To save it: make schemas/rotate)
246

    
247
rmPublicSchema := $(call rmSchemaCmd,public)
248

    
249
db: mk_db rm_initial_public schemas/reinstall _always ;
250

    
251
mk_db: _always
252
	-echo "CREATE USER public_ PASSWORD 'password';"|$(psqlAsAdmin)
253
	-echo "CREATE USER bien PASSWORD '$(bienPassword)';"|$(psqlAsAdmin)
254
	-echo "CREATE USER bien_read PASSWORD '$(bienReadPassword)' IN ROLE bien \
255
NOINHERIT;"|$(psqlAsAdmin)
256
	-echo "CREATE DATABASE vegbien WITH OWNER bien TEMPLATE template1 \
257
ENCODING 'UTF8' LC_COLLATE 'en_US.UTF-8' LC_CTYPE 'en_US.UTF-8';"|$(psqlAsAdmin)
258
	-echo "CREATE EXTENSION hstore SCHEMA pg_catalog;"|$(psqlAsAdminVegbien)
259
	-echo "CREATE EXTENSION plpython3u;"|$(psqlAsAdminVegbien)
260
	-echo 'CREATE SCHEMA postgis;'|$(psqlAsAdminVegbien)
261
	-echo 'GRANT USAGE ON SCHEMA postgis TO public;'|$(psqlAsAdminVegbien)
262
	-echo 'CREATE EXTENSION postgis SCHEMA postgis;'\
263
|$(psqlAsAdminVegbien)
264
	# unset ON_ERROR_STOP so user-exists errors don't prevent further user-adds
265
	-cat config/users.sql|$(psqlAsAdmin) --set ON_ERROR_STOP
266
# ignore errors if user/database/etc. exists
267

    
268
rm_initial_public: _always
269
	@$(confirmRmPublicSchema)
270
	echo $(rmPublicSchema)|$(psqlAsAdminVegbien)
271
# drop public schema *as admin* because it starts out owned by postgres
272

    
273
rm_db: _always
274
	@$(confirmRmDb)
275
	echo "DROP DATABASE IF EXISTS vegbien;"|$(psqlAsAdmin)
276
	echo "DROP USER IF EXISTS bien_read;"|$(psqlAsAdmin)
277
	echo "DROP USER IF EXISTS bien;"|$(psqlAsAdmin)
278
	echo "DROP USER IF EXISTS public_;"|$(psqlAsAdmin)
279

    
280
reinstall_db: _always rm_db db ;
281

    
282
##### MySQL
283

    
284
mysql: _always $(call forOs,mysql) mysql_users
285
	@$(done)
286

    
287
rm_mysql: _always rm_mysql_users ;
288

    
289
mysql-Linux: _always
290
	@echo $(emph)"If asked for MySQL root password, enter $(bienPassword)"$(endEmph)
291
	@$(wait)
292
	-sudo apt-get --yes install mysql-server
293
	-sudo apt-get --yes install mysql-client
294
	-sudo apt-get --yes install mysql-workbench
295
	-sudo apt-get --yes install python-mysqldb
296
	-sudo apt-get --yes install phpmyadmin
297

    
298
mysql-Darwin: _always
299
	@echo $(emph)'Installing MySQLdb Python driver on Mac OS X 10.7 (may work on other versions):'$(endEmph)
300
	@echo 'Download it using "latest version" link at http://sourceforge.net/projects/mysql-python/files/'
301
	@echo 'Extract the archive'
302
	@echo '(From http://www.rustyrazorblade.com/2011/11/installing-mysqldb-on-macos-lion/:)'
303
	@echo 'Run ln -s /usr/local/mysql/lib/libmysqlclient.18.dylib /usr/lib/libmysqlclient.18.dylib'
304
	@echo 'Run ln -s /usr/local/mysql/lib /usr/local/mysql/lib/mysql'
305
	@echo '(From http://blog.infoentropy.com/MySQL-python_EnvironmentError_mysql_config_not_found:)'
306
	@echo 'Edit site.cfg and change the line like "mysql_config = " to "mysql_config = /usr/local/mysql/bin/mysql_config"'
307
	@echo '(From http://www.mangoorange.com/2008/08/01/installing-python-mysqldb-122-on-mac-os-x/:)'
308
	@echo 'Change to the directory of the extracted files'
309
	@echo 'Run python setup.py clean'
310
	@echo 'Run python setup.py build'
311
	@echo 'Run sudo python setup.py install'
312
	@echo "Run python -c 'import MySQLdb'"
313
	@$(wait)
314

    
315
mysql-: _always # other OSes
316

    
317
mysqlAsRoot := mysql --user=root --password='$(bienPassword)'
318

    
319
mysql_users: _always
320
	-echo "CREATE USER 'bien'@'localhost' IDENTIFIED BY '$(bienPassword)';"\
321
|$(mysqlAsRoot)
322
	-echo "CREATE USER 'bien_read'@'%' IDENTIFIED BY '$(bienReadPassword)';"\
323
|$(mysqlAsRoot)
324
# ignore errors if user exists
325

    
326
rm_mysql_users: _always
327
	-echo "DROP USER 'bien_read'@'localhost';"|$(mysqlAsRoot)
328
	-echo "DROP USER 'bien'@'%';"|$(mysqlAsRoot)
329
# ignore errors if user exists
330

    
331
##### Datasources
332

    
333
inputs: _always inputs/all ;
334

    
335
import: _always import-msg inputs/import_scrub ;
336
import-msg: _always
337
	@echo $(emph)"To import all inputs at once:"$(endEmph) . bin/import_all
338
	@echo
339

    
340
scrub: _always inputs/.TNRS/tnrs/tnrs-remake ;
341

    
342
verify: _always inputs/verify
343
	@$(done)
344

    
345
test: _always inputs/test
346
	@$(done)
347

    
348
##### Testing
349

    
350
test-all: _always remake test missing_mappings
351
	@$(done)
352

    
353
##### Subdir forwarding
354

    
355
# Must come last so overridden targets are not forwarded
356

    
357
define subdirTargets
358
$(subdir): _always
359
	+$$(subMake)
360

    
361
$(subdir)%: _always
362
	+$$(subMake)
363
.PRECIOUS: $(subdir)% # let subdir's Makefile decide whether to delete on error
364

    
365
$(subdir)reinstall: _always $(subdir)uninstall $(subdir)install ;
366
endef
367
$(foreach subdir,$(wildcard */),$(eval $(subdirTargets)))
368

    
369
Makefile: ;
370

    
371
%: $(addsuffix %,$(dir $(shell echo */Makefile))) _always ;
372

    
373
#### Overrides of forwarded commands
374

    
375
# commented out to avoid a cascade of "overriding commands for target" warnings
376
#inputs/reinstall: _always
377
#	echo '. bin/reinstall_all; wait'|bash -s
378

    
379
#### Maps validation
380

    
381
termsSubdirs := $(call no/,$(call wildcard/,inputs/*/))
382

    
383
include lib/mappings.Makefile
(5-5/11)