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 10 11 12 13
#
# Since the RPM build steps are based on mock, edit your chroot config
# file (/etc/mock/<your-config>.cnf) and add the COPR repo configuration there.
#

PYTHON=$(shell which python)
14
PYTHON26=$(shell $(PYTHON) -V 2>&1 | grep 2.6 -q && echo true || echo false)
15
VERSION=$(shell $(PYTHON) setup.py --version 2>/dev/null)
16
DESTDIR=/
L
Lukáš Doktor 已提交
17 18
AVOCADO_DIRNAME=$(shell echo $${PWD\#\#*/})
AVOCADO_PLUGINS=$(filter-out ../$(AVOCADO_DIRNAME), $(wildcard ../*))
19 20 21 22
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)
23 24

all:
25
	@echo
C
Cleber Rosa 已提交
26
	@echo "Development related targets:"
27
	@echo "check:      Runs tree static check, unittests and functional tests"
28
	@echo "check-long: Runs tree static check, unittests and long functional tests"
29
	@echo "develop:    Runs 'python setup.py --develop on this tree alone"
30 31 32
	@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"
33
	@echo "spell:      Runs spell checker on comments and docstrings (requires python-enchant)"
C
Cleber Rosa 已提交
34
	@echo
35 36 37
	@echo "Package requirements related targets"
	@echo "requirements:            Install runtime requirements"
	@echo "requirements-selftests:  Install runtime and selftests requirements"
38
	@echo "requirements-plugins:    Install plugins requirements"
39
	@echo
40 41 42 43 44 45 46 47 48
	@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
49
	@echo "Release related targets:"
C
Cleber Rosa 已提交
50 51 52
	@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"
53
	@echo
54 55 56 57

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

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

63 64 65 66 67 68 69 70 71 72 73 74
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

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

78 79 80 81 82 83 84 85 86 87 88
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 已提交
89

90 91 92
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
93

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

111 112 113 114
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 已提交
115
	- pip install "pip>=6.0.1"
116
	- pip install -r requirements.txt
117

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

121 122 123 124 125
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

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

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

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

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

141 142 143
check_cyclical:
	selftests/cyclical_deps avocado

144 145 146
modules_boundaries:
	selftests/modules_boundaries

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

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

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

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

160 161 162 163 164 165 166 167 168 169 170 171 172
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
173 174 175 176

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