
Implements blueprint extensible-architecture. Implements blueprint improve-dev-documentation. Implements blueprint gettext-everywhere. Implements blueprint sphinx-docs. Complete re-architecture of the dashboard to transform it from a standalone django-openstack app to a Horizon framework for building dashboards. See the docs for more information. Incidentally fixes the following bugs: Fixes bug 845868 -- no PEP8 violations. Fixes bug 766096 -- the dashboard can now be installed at any arbitrary URL. Fixes bug 879111 -- tenant id is now controlled solely by the tenant switcher, not the url (which was disregarded anyway) Fixes bug 794754 -- output of venv installation is considerably reduced. Due to the scale and scope of this patch I recommend reviewing it on github: https://github.com/gabrielhurley/horizon/tree/extensible_architecture Change-Id: I8e63f7ea235f904247df40c33cb66338d973df9e
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
PYTHON=`which python`
|
|
DESTDIR=/
|
|
BUILDIR=$(CURDIR)/debian/horizon
|
|
PROJECT=horizon
|
|
|
|
all:
|
|
@echo "make buildout - Run through buildout"
|
|
@echo "make test - Run tests"
|
|
@echo "make source - Create source package"
|
|
@echo "make install - Install on local system"
|
|
@echo "make buildrpm - Generate a rpm package"
|
|
@echo "make builddeb - Generate a deb package"
|
|
@echo "make clean - Get rid of scratch and byte files"
|
|
|
|
buildout: ./bin/buildout
|
|
./bin/buildout
|
|
|
|
./bin/buildout:
|
|
$(PYTHON) bootstrap.py
|
|
|
|
source:
|
|
$(PYTHON) setup.py sdist $(COMPILE)
|
|
|
|
install:
|
|
$(PYTHON) setup.py install --root $(DESTDIR) $(COMPILE)
|
|
|
|
buildrpm:
|
|
$(PYTHON) setup.py bdist_rpm --post-install=rpm/postinstall --pre-uninstall=rpm/preuninstall
|
|
|
|
builddeb:
|
|
# build the source package in the parent directory
|
|
# then rename it to project_version.orig.tar.gz
|
|
$(PYTHON) setup.py sdist $(COMPILE) --dist-dir=../
|
|
rename -f 's/$(PROJECT)-(.*)\.tar\.gz/$(PROJECT)_$$1\.orig\.tar\.gz/' ../*
|
|
# build the package
|
|
#dpkg-buildpackage -i -I -rfakeroot
|
|
dpkg-buildpackage -b -rfakeroot -tc -uc -D
|
|
|
|
clean:
|
|
$(PYTHON) setup.py clean
|
|
$(MAKE) -f $(CURDIR)/debian/rules clean
|
|
rm -rf build/ MANIFEST
|
|
find . -name '*.pyc' -delete
|