Makefile 6.7 KB
Newer Older
1 2 3
#
# NOTE: to build Avocado RPM packages extra deps not present out of the box
# are necessary. These packages are currently hosted at:
4 5 6 7
#
# https://repos-avocadoproject.rhcloud.com/static/avocado-fedora.repo
# or
# https://repos-avocadoproject.rhcloud.com/static/avocado-el.repo
8 9
#
# Since the RPM build steps are based on mock, edit your chroot config
10 11
# file (/etc/mock/<your-config>.cnf) and add the corresponding repo
# configuration there.
12 13 14
#

PYTHON=$(shell which python)
15
PYTHON26=$(shell $(PYTHON) -V 2>&1 | grep 2.6 -q && echo true || echo false)
16
VERSION=$(shell $(PYTHON) setup.py --version 2>/dev/null)
17
DESTDIR=/
L
Lukáš Doktor 已提交
18 19
AVOCADO_DIRNAME=$(shell echo $${PWD\#\#*/})
AVOCADO_PLUGINS=$(filter-out ../$(AVOCADO_DIRNAME), $(wildcard ../*))
20 21 22 23
RELEASE_COMMIT=$(shell git log --pretty=format:'%H' -n 1 $(VERSION))
RELEASE_SHORT_COMMIT=$(shell git log --pretty=format:'%h' -n 1 $(VERSION))
COMMIT=$(shell git log --pretty=format:'%H' -n 1)
SHORT_COMMIT=$(shell git log --pretty=format:'%h' -n 1)
24 25

all:
26
	@echo
C
Cleber Rosa 已提交
27
	@echo "Development related targets:"
28
	@echo "check:      Runs tree static check, unittests and functional tests"
29
	@echo "check-long: Runs tree static check, unittests and long functional tests"
30
	@echo "develop:    Runs 'python setup.py --develop on this tree alone"
31 32 33
	@echo "link:       Runs 'python setup.py --develop' in all subprojects and links the needed resources"
	@echo "clean:      Get rid of scratch, byte files and removes the links to other subprojects"
	@echo "selfcheck:  Runs tree static check, unittests and functional tests using Avocado itself"
34
	@echo "spell:      Runs spell checker on comments and docstrings (requires python-enchant)"
C
Cleber Rosa 已提交
35
	@echo
36 37 38
	@echo "Package requirements related targets"
	@echo "requirements:            Install runtime requirements"
	@echo "requirements-selftests:  Install runtime and selftests requirements"
39
	@echo "requirements-plugins:    Install plugins requirements"
40
	@echo
41 42 43 44 45 46 47 48 49
	@echo "Platform independent distribution/installtion related targets:"
	@echo "source:   Create source package"
	@echo "install:  Install on local system"
	@echo "man:      Generate the avocado man page"
	@echo
	@echo "RPM related targets:"
	@echo "srpm:  Generate a source RPM package (.srpm)"
	@echo "rpm:   Generate binary RPMs"
	@echo
50
	@echo "Release related targets:"
C
Cleber Rosa 已提交
51 52 53
	@echo "source-release:  Create source package for the latest tagged release"
	@echo "srpm-release:    Generate a source RPM package (.srpm) for the latest tagged release"
	@echo "rpm-release:     Generate binary RPMs for the latest tagged release"
54
	@echo
55 56 57 58

source: clean
	if test ! -d SOURCES; then mkdir SOURCES; fi
	git archive --prefix="avocado-$(COMMIT)/" -o "SOURCES/avocado-$(VERSION)-$(SHORT_COMMIT).tar.gz" HEAD
59

60
source-release: clean
61
	if test ! -d SOURCES; then mkdir SOURCES; fi
62
	git archive --prefix="avocado-$(RELEASE_COMMIT)/" -o "SOURCES/avocado-$(VERSION)-$(RELEASE_SHORT_COMMIT).tar.gz" $(VERSION)
63

64 65 66 67 68 69 70 71 72 73 74 75
source-pypi: clean
	if test ! -d PYPI_UPLOAD; then mkdir PYPI_UPLOAD; fi
	git archive --prefix="avocado-framework/" -o "PYPI_UPLOAD/avocado-framework-$(VERSION).tar.gz" $(VERSION)

pypi: source-pypi develop
	sed -e 's/Name: avocado/Name: avocado-framework/' avocado.egg-info/PKG-INFO > PYPI_UPLOAD/PKG-INFO
	@echo
	@echo "Please use the files on PYPI_UPLOAD dir to upload a new version to PyPI"
	@echo "The URL to do that may be a bit tricky to find, so here it is:"
	@echo " https://pypi.python.org/pypi?%3Aaction=submit_form"
	@echo

76 77 78
install:
	$(PYTHON) setup.py install --root $(DESTDIR) $(COMPILE)

79 80 81 82 83 84 85 86 87 88 89
srpm: source
	if test ! -d BUILD/SRPM; then mkdir -p BUILD/SRPM; fi
	mock --resultdir BUILD/SRPM -D "commit $(COMMIT)" --buildsrpm --spec avocado.spec --sources SOURCES

rpm: srpm
	if test ! -d BUILD/RPM; then mkdir -p BUILD/RPM; fi
	mock --resultdir BUILD/RPM -D "commit $(COMMIT)" --rebuild BUILD/SRPM/avocado-$(VERSION)-*.src.rpm

srpm-release: source-release
	if test ! -d BUILD/SRPM; then mkdir -p BUILD/SRPM; fi
	mock --resultdir BUILD/SRPM -D "commit $(RELEASE_COMMIT)" --buildsrpm --spec avocado.spec --sources SOURCES
C
Cleber Rosa 已提交
90

91 92 93
rpm-release: srpm-release
	if test ! -d BUILD/RPM; then mkdir -p BUILD/RPM; fi
	mock --resultdir BUILD/RPM -D "commit $(RELEASE_COMMIT)" --rebuild BUILD/SRPM/avocado-$(VERSION)-*.src.rpm
94

95 96
clean:
	$(PYTHON) setup.py clean
97
	$(MAKE) -f $(CURDIR)/debian/rules clean || true
98
	rm -rf build/ MANIFEST BUILD BUILDROOT SPECS RPMS SRPMS SOURCES PYPI_UPLOAD
99
	rm -f man/avocado.1
100
	rm -f man/avocado-rest-client.1
101
	rm -rf docs/build
102
	find docs/source/api/ -name '*.rst' -delete
103
	for MAKEFILE in $(AVOCADO_PLUGINS);\
L
Lukáš Doktor 已提交
104
		do AVOCADO_DIRNAME=$(AVOCADO_DIRNAME) make -C $$MAKEFILE unlink &>/dev/null && echo ">> UNLINK $$MAKEFILE" || echo ">> SKIP $$MAKEFILE";\
105
	done
106
	$(PYTHON) setup.py develop --uninstall $(shell $(PYTHON26) || echo --user)
107
	rm -rf avocado.egg-info
108 109
	rm -rf /var/tmp/avocado*
	rm -rf /tmp/avocado*
110
	find . -name '*.pyc' -delete
111

112 113 114 115
pip:
	$(PYTHON) -m pip --version || $(PYTHON) -c "import os; import sys; import urllib; f = urllib.urlretrieve('https://bootstrap.pypa.io/get-pip.py')[0]; os.system('%s %s' % (sys.executable, f))"

requirements: pip
L
Lukáš Doktor 已提交
116
	- pip install "pip>=6.0.1"
117
	- pip install -r requirements.txt
118

119
requirements-selftests: requirements
120
	- pip install -r requirements-selftests.txt
121

122 123 124 125 126
requirements-plugins: requirements
	for MAKEFILE in $(AVOCADO_PLUGINS);\
		do AVOCADO_DIRNAME=$(AVOCADO_DIRNAME) make -C $$MAKEFILE requirements &>/dev/null && echo ">> DONE $$MAKEFILE" || echo ">> SKIP $$MAKEFILE";\
	done

127 128 129
smokecheck:
	./scripts/avocado run passtest

130
check: clean develop check_cyclical modules_boundaries
131
	selftests/checkall
132
	selftests/check_tmp_dirs
133

134 135 136 137
check-long: clean develop check_cyclical modules_boundaries
	AVOCADO_CHECK_LONG=1 selftests/checkall
	selftests/check_tmp_dirs

138 139 140 141
selfcheck: clean check_cyclical modules_boundaries
	AVOCADO_SELF_CHECK=1 selftests/checkall
	selftests/check_tmp_dirs

142 143 144
check_cyclical:
	selftests/cyclical_deps avocado

145 146 147
modules_boundaries:
	selftests/modules_boundaries

148
develop:
149
	$(PYTHON) setup.py develop $(shell $(PYTHON26) || echo --user)
150 151

link: develop
152
	for MAKEFILE in $(AVOCADO_PLUGINS);\
L
Lukáš Doktor 已提交
153
		do AVOCADO_DIRNAME=$(AVOCADO_DIRNAME) make -C $$MAKEFILE link &>/dev/null && echo ">> LINK $$MAKEFILE" || echo ">> SKIP $$MAKEFILE";\
154
	done
C
Cleber Rosa 已提交
155

156 157 158
spell:
	pylint --errors-only --disable=all --enable=spelling --spelling-dict=en_US --spelling-private-dict-file=spell.ignore * && echo OK

159
man: man/avocado.1 man/avocado-rest-client.1
160

161 162 163 164 165 166 167 168 169 170 171 172 173
variables:
	@echo "PYTHON: $(PYTHON)"
	@echo "PYTHON26: $(PYTHON26)"
	@echo "VERSION: $(VERSION)"
	@echo "DESTDIR: $(DESTDIR)"
	@echo "AVOCADO_DIRNAME: $(AVOCADO_DIRNAME)"
	@echo "AVOCADO_PLUGINS: $(AVOCADO_PLUGINS)"
	@echo "RELEASE_COMMIT: $(RELEASE_COMMIT)"
	@echo "RELEASE_SHORT_COMMIT: $(RELEASE_SHORT_COMMIT)"
	@echo "COMMIT: $(COMMIT)"
	@echo "SHORT_COMMIT: $(SHORT_COMMIT)"

.PHONY: source install clean check link variables
174 175 176 177

# implicit rule/recipe for man page creation
%.1: %.rst
	rst2man $< $@