Officially drop support for Python 2.6 (see #966)
[mediagoblin.git] / Makefile.in
CommitLineData
0a2eecf8
BI
1# Makefile.in
2#
3# Copyright © 2012, 2013 Brandon Invergo <brandon@invergo.net>
4#
5# Copying and distribution of this file, with or without modification,
6# are permitted in any medium without royalty provided the copyright
7# notice and this notice are preserved. This file is offered as-is,
8# without any warranty.
9
10# List whatever files you want to include in your source distribution here.
11# You can include whole directories but note that *everything* under that
12# directory will be included
13DISTFILES = PKG-INFO Makefile.in configure setup.py install-sh
14
15DESTDIR =
16VPATH = @srcdir@
17PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
18PACKAGE_NAME = @PACKAGE_NAME@
19PACKAGE_STRING = @PACKAGE_STRING@
20PACKAGE_TARNAME = @PACKAGE_TARNAME@
21PACKAGE_DISTNAME = ${PACKAGE_NAME}-${PACKAGE_VERSION}
22PACKAGE_URL = @PACKAGE_URL@
23PACKAGE_VERSION = @PACKAGE_VERSION@
24PATH_SEPARATOR = @PATH_SEPARATOR@
25PYTHON = @PYTHON@
26VIRTUALENV = @VIRTUALENV@
0a2eecf8
BI
27SHELL = @SHELL@
28MKDIR_P = @MKDIR_P@
29INSTALL = @INSTALL@
30INSTALL_PROGRAM = @INSTALL_PROGRAM@
31INSTALL_DATA = @INSTALL_DATA@
32INSTALL_SCRIPT = @INSTALL_SCRIPT@
33docdir = @docdir@
34dvidir = @dvidir@
35exec_prefix = @exec_prefix@
36htmldir = @htmldir@
37includedir = @includedir@
38infodir = @infodir@
39prefix = @prefix@
40srcdir = @srcdir@
e56b493a 41abs_srcdir = @abs_srcdir@
0a2eecf8
BI
42datadir = @datadir@
43datarootdir = @datarootdir@
0a2eecf8
BI
44pkgdatadir = $(datadir)/@PACKAGE_NAME@
45pkgincludedir = $(includedir)/@PACKAGE_NAME@
0a2eecf8 46PYTHONPATH = $(pythondir)$(PATH_SEPARATOR)$(DESTDIR)$(pythondir)
65686465 47USE_PYTHON3 = @USE_PYTHON3@
0a2eecf8 48
96f9c530
CAW
49# pkgpythondir = @pkgpythondir@
50# pkgpyexecdir = @pkgpyexecdir@
51# pythondir = @pythondir@
52# pyexecdir = @pyexecdir@
53# SPHINXBUILD = @SPHINXBUILD@
54# POSTGRES = @POSTGRES@
55
56
07778a69
CAW
57# Maybe add a virtualenv prefix to a command
58ifneq ($(VIRTUALENV),no)
59# virtualenv specified to be included by config (default)
60# ... we only use virtualenv for local development, we don't
61# auto-deploy to it.
0a2eecf8 62
07778a69
CAW
63maybe_venved = ./bin/
64maybe_venved_python = ./bin/python
65# Yes, build the virtualenv as a dependency!
66maybe_venv_dep = ./bin/python
1da574c6
CAW
67# And to clean up!
68maybe_venv_clean = clean-virtualenv
0a2eecf8 69
0a2eecf8 70else
07778a69
CAW
71# --without-virtualenv must have been passed in... don't build
72# a local virtualenv or use such commands
73maybe_venved =
74maybe_venved_python = $(PYTHON)
75# No need for commands to build virtualenv as a dependency!
76maybe_venv_dep =
1da574c6
CAW
77# Nor to clean up!
78maybe_venv_clean =
0a2eecf8 79endif
07778a69 80
07778a69
CAW
81.PHONY: all install uninstall distclean info install-html html \
82install-pdf pdf install-dvi dvi install-ps ps clean dist check \
83installdirs i18n virtualenv
84# update postgresql
85
86all: develop
87
2b475821 88develop: $(maybe_venv_dep) i18n mediagoblin.ini
adecace3 89
86f89fd0 90# NEVER clobber a user's mediagoblin.ini once they've defined it
b2624eb0
CAW
91mediagoblin.ini:
92 cp --no-clobber mediagoblin.example.ini mediagoblin.ini
93
96f9c530
CAW
94# base-configs: paste.ini mediagoblin.example.ini
95
07778a69
CAW
96install: installdirs
97 $(maybe_venved_python) $(srcdir)/setup.py install --prefix=$(DESTDIR)$(prefix)
98
99
4aaa7fac 100# In the future, maybe we can compile the individual .po files here?
07778a69 101i18n: $(maybe_venv_dep)
4aaa7fac 102 ./devtools/compile_translations.sh
07778a69
CAW
103
104
0a2eecf8 105ifneq ($(VIRTUALENV),no)
07778a69
CAW
106./bin/python:
107 rm -f ./bin/python
1da574c6 108 virtualenv --system-site-packages --python=$(PYTHON) .
07778a69 109 ./bin/python setup.py develop --upgrade
0a2eecf8 110
07778a69 111virtualenv: bin/python
96f9c530
CAW
112
113clean-virtualenv:
114 rm -rf ./bin/
115 rm -rf ./lib/
90c2989b 116 rm -rf ./include/
07778a69 117endif
0a2eecf8
BI
118
119# setup.py doesn't (yet) support an uninstall command, so until it does, you
120# must manually remove everything that was installed here. The following example
121# should remove a basic package installed via setup.py, but please double- and
122# triple-check it so that you don't remove something you shouldn't!
123# Be sure to remove any extra files you install, such as binaries or documentation!
a9dc855a 124#
297a262c 125# uninstall:
a9dc855a
CAW
126# rm -rvf $(pkgpythondir)
127# rm -v $(pythondir)/$(PACKAGE_DISTNAME)-*.egg-info
128#
0a2eecf8 129
86f89fd0 130
0a2eecf8 131clean:
86f89fd0
CAW
132 @echo "No rule to clean house, yet."
133
134
135# We don't know what this does yet.
136# Originally:
137## Just use the usual setup.py clean command
138#clean:
139# $(maybe_venved_python) setup.py clean
140
0a2eecf8
BI
141
142
143# Clean up the output of configure
1da574c6
CAW
144distclean: $(maybe_venv_clean)
145 rm -vf $(srcdir)/config.log
146 rm -vf $(srcdir)/config.status
0a2eecf8 147 rm -rvf $(srcdir)/autom4te.cache
1da574c6
CAW
148 rm -vf $(srcdir)/aclocal.m4
149 rm -vf $(srcdir)/Makefile
96f9c530 150
0a2eecf8 151
2b475821
CAW
152###########################################################################
153# These things aren't really tested / supported yet.
154###########################################################################
155
156
157
0a2eecf8
BI
158# You can either use the setup.py sdist command or you can roll your own here
159dist:
07778a69 160# $(maybe_venved_python) setup.py sdist
0a2eecf8
BI
161 mkdir $(PACKAGE_DISTNAME)
162 cp -r $(DISTFILES) $(PACKAGE_DISTNAME)
163 tar -czf $(PACKAGE_DISTNAME).tar.gz $(PACKAGE_DISTNAME)
164 rm -rf $(PACKAGE_DISTNAME)
165
166# Use the setup.py check command
167check:
07778a69 168 $(maybe_venved_python) setup.py check
0a2eecf8
BI
169
170# setup.py might complain if a directory doesn't exist so just in case, make the directory
171# here
172installdirs:
d45673c0 173 $(MKDIR_P) $(DESTDIR)$(prefix)
0a2eecf8 174
07778a69
CAW
175# # Set up PostgreSQL
176# postgresql:
177# sudo -u $(POSTGRES) createuser mediagoblin
178# sudo -u $(POSTGRES) createdb -E UNICODE -O mediagoblin mediagoblin
0a2eecf8 179
07778a69
CAW
180# update:
181# ifneq ($(VIRTUALENV),no)
182# $(prefix)/bin/python $(srcdir)/setup.py develop --prefix=$(prefix) --upgrade
183# else
184# $(PYTHON) $(srcdir)/setup.py develop --prefix=$(prefix) --upgrade
185# endif
186# $(prefix)/bin/gmg dbupdate
0a2eecf8 187
2b475821
CAW
188######################
189# Needs to be updated?
190######################
191
0a2eecf8
BI
192# The following show how to install documentation. In this example,
193# docs are built from a separate Makefile contained in the docs
194# directory which uses the SPHINXBUILD variable to store the location
195# of the sphinx-build (Python doc tool) binary to use.
196
197$(DESTDIR)$(infodir)/mediagoblin.info: docs/build/texinfo/mediagoblin.info
198 $(POST_INSTALL)
199 $(INSTALL_DATA) @< $(DESTDIR)$@
200 if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then
201 install-info --dir-file=$(DESTDIR)$(infodir)/dir \
202 $(DESTDIR)$(infodir)/foo.info;
203 else true; fi
204
205info: docs/build/texinfo/mediagoblin.info
206
207docs/build/texinfo/mediagoblin.info: $(wildcard docs/source/*)
208ifneq ($(SPHINXBUILD),no)
209 $(MAKE) -C docs info SPHINXBUILD=$(SPHINXBUILD)
210endif
211
212
213install-html: html installdirs
214 $(INSTALL_DATA) docs/build/html/* $(DESTDIR)$(htmldir)
215
216html: docs/build/html/index.html
217
218docs/build/html/index.html: $(wildcard $(srcdir)/docs/source/*)
219ifneq ($(SPHINXBUILD),no)
220 $(MAKE) -C docs html SPHINXBUILD=$(SPHINXBUILD)
221endif
222
223
224install-pdf: pdf installdirs
225 $(INSTALL_DATA) docs/build/latex/mediagoblin.pdf $(DESTDIR)$(pdfdir)
226
227pdf: docs/build/latex/mediagoblin.pdf
228
229docs/build/latex/mediagoblin.pdf: $(wildcard $(srcdir)/docs/source/*)
230ifneq ($(SPHINXBUILD),no)
231 $(MAKE) -C docs latexpdf SPHINXBUILD=$(SPHINXBUILD)
232endif
233
234
07778a69
CAW
235# Targets that don't seem supported?
236
0a2eecf8
BI
237install-dvi:
238
239dvi:
240
241install-ps:
242
243ps:
244
245