mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Docs build using version in the VERSION file.
Makefile upgraded with comments and some simplifications. Remove useless 'PHONEY' and 'VPATH' directives from Makefile
This commit is contained in:
parent
d43cf592eb
commit
3f9a41b22d
2 changed files with 18 additions and 14 deletions
31
Makefile
31
Makefile
|
@ -1,30 +1,36 @@
|
||||||
#!/usr/bin/make
|
#!/usr/bin/make
|
||||||
|
|
||||||
NAME = "ansible"
|
NAME = "ansible"
|
||||||
|
# This doesn't evaluate until it's called. The -D argument is the
|
||||||
|
# directory of the target file ($@), kinda like `dirname`.
|
||||||
ASCII2MAN = a2x -D $(dir $@) -d manpage -f manpage $<
|
ASCII2MAN = a2x -D $(dir $@) -d manpage -f manpage $<
|
||||||
ASCII2HTMLMAN = a2x -D docs/html/man/ -d manpage -f xhtml
|
ASCII2HTMLMAN = a2x -D docs/html/man/ -d manpage -f xhtml
|
||||||
|
# Space separated list of all the manpages we want to end up with.
|
||||||
MANPAGES := docs/man/man1/ansible.1 docs/man/man1/ansible-playbook.1
|
MANPAGES := docs/man/man1/ansible.1 docs/man/man1/ansible-playbook.1
|
||||||
SITELIB = $(shell python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")
|
SITELIB = $(shell python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")
|
||||||
|
VERSION := $(shell cat VERSION)
|
||||||
|
# These are for building the RPM.
|
||||||
RPMVERSION := $(shell awk '/Version/{print $$2; exit}' < ansible.spec | cut -d "%" -f1)
|
RPMVERSION := $(shell awk '/Version/{print $$2; exit}' < ansible.spec | cut -d "%" -f1)
|
||||||
RPMRELEASE := $(shell awk '/Release/{print $$2; exit}' < ansible.spec | cut -d "%" -f1)
|
RPMRELEASE := $(shell awk '/Release/{print $$2; exit}' < ansible.spec | cut -d "%" -f1)
|
||||||
RPMNVR = "$(NAME)-$(RPMVERSION)-$(RPMRELEASE)"
|
RPMDIST = $(shell rpm --eval '%dist')
|
||||||
|
RPMNVR = "$(NAME)-$(RPMVERSION)-$(RPMRELEASE)$(RPMDIST)"
|
||||||
|
|
||||||
all: clean python
|
all: clean python
|
||||||
|
|
||||||
tests:
|
tests:
|
||||||
PYTHONPATH=./lib nosetests -v
|
PYTHONPATH=./lib nosetests -v
|
||||||
|
|
||||||
# To force a rebuild of the docs run 'touch ansible.spec && make docs'
|
# To force a rebuild of the docs run 'touch VERSION && make docs'
|
||||||
docs: $(MANPAGES)
|
docs: $(MANPAGES)
|
||||||
|
|
||||||
# Regenerate %.1.asciidoc if %.1.asciidoc.in has been modified more
|
# Regenerate %.1.asciidoc if %.1.asciidoc.in has been modified more
|
||||||
# recently than %.1.asciidoc.
|
# recently than %.1.asciidoc.
|
||||||
%.1.asciidoc: %.1.asciidoc.in
|
%.1.asciidoc: %.1.asciidoc.in
|
||||||
sed "s/%VERSION%/$(RPMVERSION)/" $< > $@
|
sed "s/%VERSION%/$(VERSION)/" $< > $@
|
||||||
|
|
||||||
# Regenerate %.1 if %.1.asciidoc or ansible.spec has been modified
|
# Regenerate %.1 if %.1.asciidoc or VERSION has been modified more
|
||||||
# more recently than %.1. (Implicitly runs the %.1.asciidoc recipe)
|
# recently than %.1. (Implicitly runs the %.1.asciidoc recipe)
|
||||||
%.1: %.1.asciidoc ansible.spec
|
%.1: %.1.asciidoc VERSION
|
||||||
$(ASCII2MAN)
|
$(ASCII2MAN)
|
||||||
|
|
||||||
loc:
|
loc:
|
||||||
|
@ -41,10 +47,10 @@ pyflakes:
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@echo "Cleaning up distutils stuff"
|
@echo "Cleaning up distutils stuff"
|
||||||
-rm -rf build
|
rm -rf build
|
||||||
-rm -rf dist
|
rm -rf dist
|
||||||
@echo "Cleaning up byte compiled python stuff"
|
@echo "Cleaning up byte compiled python stuff"
|
||||||
find . -regex ".*\.py[co]$$" -delete
|
find . -type f -regex ".*\.py[co]$$" -delete
|
||||||
@echo "Cleaning up editor backup files"
|
@echo "Cleaning up editor backup files"
|
||||||
find . -type f \( -name "*~" -or -name "#*" \) -delete
|
find . -type f \( -name "*~" -or -name "#*" \) -delete
|
||||||
find . -type f \( -name "*.swp" \) -delete
|
find . -type f \( -name "*.swp" \) -delete
|
||||||
|
@ -52,9 +58,9 @@ clean:
|
||||||
find ./docs/man -type f -name "*.xml" -delete
|
find ./docs/man -type f -name "*.xml" -delete
|
||||||
find ./docs/man -type f -name "*.asciidoc" -delete
|
find ./docs/man -type f -name "*.asciidoc" -delete
|
||||||
@echo "Cleaning up output from test runs"
|
@echo "Cleaning up output from test runs"
|
||||||
-rm -rf test/test_data
|
rm -rf test/test_data
|
||||||
@echo "Cleaning up RPM building stuff"
|
@echo "Cleaning up RPM building stuff"
|
||||||
-rm -rf MANIFEST rpm-build
|
rm -rf MANIFEST rpm-build
|
||||||
|
|
||||||
python:
|
python:
|
||||||
python setup.py build
|
python setup.py build
|
||||||
|
@ -96,6 +102,3 @@ rpm: rpmcommon
|
||||||
@echo "Ansible RPM is built:"
|
@echo "Ansible RPM is built:"
|
||||||
@echo " rpm-build/noarch/$(RPMNVR).noarch.rpm"
|
@echo " rpm-build/noarch/$(RPMNVR).noarch.rpm"
|
||||||
@echo "#############################################"
|
@echo "#############################################"
|
||||||
|
|
||||||
.PHONEY: docs manual clean pep8
|
|
||||||
vpath %.asciidoc docs/man/man1
|
|
||||||
|
|
1
VERSION
Normal file
1
VERSION
Normal file
|
@ -0,0 +1 @@
|
||||||
|
0.0.2
|
Loading…
Reference in a new issue