2013-06-03 16:13:56 +00:00
|
|
|
#
|
|
|
|
# 2013 Nico Schottelius (nico-cdist at schottelius.org)
|
|
|
|
#
|
|
|
|
# This file is part of cdist.
|
|
|
|
#
|
|
|
|
# cdist is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# cdist is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
#
|
2013-06-03 15:34:03 +00:00
|
|
|
|
2013-06-20 07:22:17 +00:00
|
|
|
helper=./bin/build-helper
|
2013-06-07 19:14:51 +00:00
|
|
|
|
2016-06-30 13:05:26 +00:00
|
|
|
DOCS_SRC_DIR=docs/src
|
2013-07-09 12:00:42 +00:00
|
|
|
SPEECHDIR=docs/speeches
|
|
|
|
TYPEDIR=cdist/conf/type
|
|
|
|
|
2013-07-09 13:46:57 +00:00
|
|
|
WEBSRCDIR=docs/web
|
|
|
|
|
2015-05-18 12:41:34 +00:00
|
|
|
WEBDIR=$$HOME/vcs/www.nico.schottelius.org
|
2013-07-09 12:53:00 +00:00
|
|
|
WEBBLOG=$(WEBDIR)/blog
|
2013-07-09 13:46:57 +00:00
|
|
|
WEBBASE=$(WEBDIR)/software/cdist
|
2013-07-09 12:53:00 +00:00
|
|
|
WEBPAGE=$(WEBBASE).mdwn
|
|
|
|
|
|
|
|
CHANGELOG_VERSION=$(shell $(helper) changelog-version)
|
2013-07-09 13:46:57 +00:00
|
|
|
CHANGELOG_FILE=docs/changelog
|
|
|
|
|
2013-09-05 11:19:47 +00:00
|
|
|
PYTHON_VERSION=cdist/version.py
|
2013-07-09 15:22:56 +00:00
|
|
|
|
2016-06-30 13:05:26 +00:00
|
|
|
SPHINXM=make -C $(DOCS_SRC_DIR) man
|
|
|
|
SPHINXH=make -C $(DOCS_SRC_DIR) html
|
2016-07-15 22:50:01 +00:00
|
|
|
SPHINXC=make -C $(DOCS_SRC_DIR) clean
|
2018-10-06 12:57:55 +00:00
|
|
|
|
|
|
|
SHELLCHECKCMD=shellcheck -s sh -f gcc -x
|
|
|
|
SHELLCHECK_SKIP=grep -v ': __.*is referenced but not assigned.*\[SC2154\]'
|
2013-07-09 12:00:42 +00:00
|
|
|
################################################################################
|
2013-07-09 12:53:00 +00:00
|
|
|
# Manpages
|
2013-07-09 12:00:42 +00:00
|
|
|
#
|
2016-06-30 13:05:26 +00:00
|
|
|
MAN1DSTDIR=$(DOCS_SRC_DIR)/man1
|
|
|
|
MAN7DSTDIR=$(DOCS_SRC_DIR)/man7
|
2013-07-09 12:53:00 +00:00
|
|
|
|
|
|
|
# Manpages #1: Types
|
2016-05-20 06:50:56 +00:00
|
|
|
# Use shell / ls to get complete list - $(TYPEDIR)/*/man.rst does not work
|
2016-06-25 17:30:22 +00:00
|
|
|
# Using ls does not work if no file with given pattern exist, so use wildcard
|
|
|
|
MANTYPESRC=$(wildcard $(TYPEDIR)/*/man.rst)
|
2013-07-09 16:40:27 +00:00
|
|
|
MANTYPEPREFIX=$(subst $(TYPEDIR)/,$(MAN7DSTDIR)/cdist-type,$(MANTYPESRC))
|
2016-05-20 06:50:56 +00:00
|
|
|
MANTYPES=$(subst /man.rst,.rst,$(MANTYPEPREFIX))
|
2013-07-09 12:00:42 +00:00
|
|
|
|
2016-05-20 06:50:56 +00:00
|
|
|
# Link manpage: do not create man.html but correct named file
|
|
|
|
$(MAN7DSTDIR)/cdist-type%.rst: $(TYPEDIR)/%/man.rst
|
2018-09-29 09:15:48 +00:00
|
|
|
mkdir -p $(MAN7DSTDIR)
|
2013-07-09 12:00:42 +00:00
|
|
|
ln -sf "../../../$^" $@
|
|
|
|
|
2013-07-09 12:53:00 +00:00
|
|
|
# Manpages #2: reference
|
2016-06-30 13:05:26 +00:00
|
|
|
DOCSREF=$(MAN7DSTDIR)/cdist-reference.rst
|
|
|
|
DOCSREFSH=$(DOCS_SRC_DIR)/cdist-reference.rst.sh
|
2013-07-09 12:53:00 +00:00
|
|
|
|
2016-06-30 13:05:26 +00:00
|
|
|
$(DOCSREF): $(DOCSREFSH)
|
|
|
|
$(DOCSREFSH)
|
2013-07-09 12:53:00 +00:00
|
|
|
|
2016-05-20 06:50:56 +00:00
|
|
|
# Manpages #3: generic part
|
2016-07-04 10:21:01 +00:00
|
|
|
man: $(MANTYPES) $(DOCSREF) $(PYTHON_VERSION)
|
2016-05-20 06:50:56 +00:00
|
|
|
$(SPHINXM)
|
2013-07-09 12:53:00 +00:00
|
|
|
|
2016-07-04 10:21:01 +00:00
|
|
|
html: $(MANTYPES) $(DOCSREF) $(PYTHON_VERSION)
|
2016-05-20 06:50:56 +00:00
|
|
|
$(SPHINXH)
|
2013-07-09 12:00:42 +00:00
|
|
|
|
2016-07-04 10:21:01 +00:00
|
|
|
docs: man html
|
2013-07-09 12:53:00 +00:00
|
|
|
|
2016-07-15 22:50:01 +00:00
|
|
|
docs-clean:
|
|
|
|
$(SPHINXC)
|
|
|
|
|
2013-07-09 12:53:00 +00:00
|
|
|
# Manpages #5: release part
|
|
|
|
MANWEBDIR=$(WEBBASE)/man/$(CHANGELOG_VERSION)
|
2016-07-04 14:56:07 +00:00
|
|
|
HTMLBUILDDIR=docs/dist/html
|
2013-07-09 12:53:00 +00:00
|
|
|
|
2016-07-04 14:56:07 +00:00
|
|
|
docs-dist: html
|
2013-07-09 12:53:00 +00:00
|
|
|
rm -rf "${MANWEBDIR}"
|
2016-05-20 06:50:56 +00:00
|
|
|
mkdir -p "${MANWEBDIR}"
|
|
|
|
# mkdir -p "${MANWEBDIR}/man1" "${MANWEBDIR}/man7"
|
|
|
|
# cp ${MAN1DSTDIR}/*.html ${MAN1DSTDIR}/*.css ${MANWEBDIR}/man1
|
|
|
|
# cp ${MAN7DSTDIR}/*.html ${MAN7DSTDIR}/*.css ${MANWEBDIR}/man7
|
2016-07-04 14:56:07 +00:00
|
|
|
cp -R ${HTMLBUILDDIR}/* ${MANWEBDIR}
|
2013-07-12 19:26:14 +00:00
|
|
|
cd ${MANWEBDIR} && git add . && git commit -m "cdist manpages update: $(CHANGELOG_VERSION)" || true
|
2013-07-09 12:00:42 +00:00
|
|
|
|
2014-02-14 19:58:12 +00:00
|
|
|
man-latest-link: web-pub
|
2013-07-09 13:46:57 +00:00
|
|
|
# Fix ikiwiki, which does not like symlinks for pseudo security
|
2015-02-10 22:10:23 +00:00
|
|
|
ssh staticweb.ungleich.ch \
|
|
|
|
"cd /home/services/www/nico/nico.schottelius.org/www/software/cdist/man/ && rm -f latest && ln -sf "$(CHANGELOG_VERSION)" latest"
|
2013-07-09 13:46:57 +00:00
|
|
|
|
2016-06-23 14:08:59 +00:00
|
|
|
# Manpages: .cdist Types
|
|
|
|
DOT_CDIST_PATH=${HOME}/.cdist
|
|
|
|
DOTMAN7DSTDIR=$(MAN7DSTDIR)
|
|
|
|
DOTTYPEDIR=$(DOT_CDIST_PATH)/type
|
2016-06-25 17:30:22 +00:00
|
|
|
DOTMANTYPESRC=$(wildcard $(DOTTYPEDIR)/*/man.rst)
|
2016-06-23 14:08:59 +00:00
|
|
|
DOTMANTYPEPREFIX=$(subst $(DOTTYPEDIR)/,$(DOTMAN7DSTDIR)/cdist-type,$(DOTMANTYPESRC))
|
|
|
|
DOTMANTYPES=$(subst /man.rst,.rst,$(DOTMANTYPEPREFIX))
|
|
|
|
|
|
|
|
# Link manpage: do not create man.html but correct named file
|
|
|
|
$(DOTMAN7DSTDIR)/cdist-type%.rst: $(DOTTYPEDIR)/%/man.rst
|
|
|
|
ln -sf "$^" $@
|
|
|
|
|
|
|
|
# Manpages #3: generic part
|
2016-07-04 10:21:01 +00:00
|
|
|
dotman: $(DOTMANTYPES)
|
2016-06-23 14:08:59 +00:00
|
|
|
$(SPHINXM)
|
|
|
|
|
2013-07-09 12:00:42 +00:00
|
|
|
################################################################################
|
|
|
|
# Speeches
|
|
|
|
#
|
|
|
|
SPEECHESOURCES=$(SPEECHDIR)/*.tex
|
|
|
|
SPEECHES=$(SPEECHESOURCES:.tex=.pdf)
|
2013-07-09 12:53:00 +00:00
|
|
|
SPEECHESWEBDIR=$(WEBBASE)/speeches
|
2013-07-09 12:00:42 +00:00
|
|
|
|
|
|
|
# Create speeches and ensure Toc is up-to-date
|
|
|
|
$(SPEECHDIR)/%.pdf: $(SPEECHDIR)/%.tex
|
|
|
|
pdflatex -output-directory $(SPEECHDIR) $^
|
|
|
|
pdflatex -output-directory $(SPEECHDIR) $^
|
|
|
|
pdflatex -output-directory $(SPEECHDIR) $^
|
|
|
|
|
|
|
|
speeches: $(SPEECHES)
|
|
|
|
|
2013-07-09 15:22:56 +00:00
|
|
|
speeches-dist: speeches
|
2013-07-09 12:53:00 +00:00
|
|
|
rm -rf "${SPEECHESWEBDIR}"
|
|
|
|
mkdir -p "${SPEECHESWEBDIR}"
|
|
|
|
cp ${SPEECHES} "${SPEECHESWEBDIR}"
|
2013-07-09 15:22:56 +00:00
|
|
|
cd ${SPEECHESWEBDIR} && git add . && git commit -m "cdist speeches updated" || true
|
2013-07-09 12:53:00 +00:00
|
|
|
|
2013-07-09 12:00:42 +00:00
|
|
|
################################################################################
|
2013-07-09 13:46:57 +00:00
|
|
|
# Website
|
|
|
|
#
|
|
|
|
|
|
|
|
BLOGFILE=$(WEBBLOG)/cdist-$(CHANGELOG_VERSION)-released.mdwn
|
|
|
|
|
|
|
|
$(BLOGFILE): $(CHANGELOG_FILE)
|
|
|
|
$(helper) blog $(CHANGELOG_VERSION) $(BLOGFILE)
|
|
|
|
|
|
|
|
web-blog: $(BLOGFILE)
|
|
|
|
|
|
|
|
web-doc:
|
|
|
|
# Go to top level, because of cdist.mdwn
|
|
|
|
rsync -av "$(WEBSRCDIR)/" "${WEBBASE}/.."
|
|
|
|
cd "${WEBBASE}/.." && git add cdist* && git commit -m "cdist doc update" cdist* || true
|
|
|
|
|
2013-07-09 15:22:56 +00:00
|
|
|
web-dist: web-blog web-doc
|
2013-07-09 13:46:57 +00:00
|
|
|
|
2016-06-30 13:05:26 +00:00
|
|
|
web-pub: web-dist docs-dist speeches-dist
|
2013-07-09 13:46:57 +00:00
|
|
|
cd "${WEBDIR}" && make pub
|
|
|
|
|
2014-02-14 19:58:12 +00:00
|
|
|
web-release-all: man-latest-link
|
|
|
|
web-release-all-no-latest: web-pub
|
2013-09-04 20:58:52 +00:00
|
|
|
|
2013-07-09 13:46:57 +00:00
|
|
|
################################################################################
|
2013-07-09 15:22:56 +00:00
|
|
|
# Release: Mailinglist
|
2013-07-09 13:46:57 +00:00
|
|
|
#
|
2013-07-09 15:22:56 +00:00
|
|
|
ML_FILE=.lock-ml
|
2013-06-03 20:29:49 +00:00
|
|
|
|
2013-07-09 15:22:56 +00:00
|
|
|
# Only send mail once - lock until new changelog things happened
|
2013-09-05 11:19:47 +00:00
|
|
|
$(ML_FILE): $(CHANGELOG_FILE)
|
2013-07-09 15:22:56 +00:00
|
|
|
$(helper) ml-release $(CHANGELOG_VERSION)
|
|
|
|
touch $@
|
2013-06-03 20:29:49 +00:00
|
|
|
|
2013-07-09 15:22:56 +00:00
|
|
|
ml-release: $(ML_FILE)
|
2013-06-03 20:29:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
################################################################################
|
2013-07-09 15:22:56 +00:00
|
|
|
# pypi
|
2013-06-03 20:29:49 +00:00
|
|
|
#
|
2014-01-20 09:52:28 +00:00
|
|
|
PYPI_FILE=.pypi-release
|
|
|
|
$(PYPI_FILE): man $(PYTHON_VERSION)
|
2013-06-03 20:29:49 +00:00
|
|
|
python3 setup.py sdist upload
|
2013-07-09 15:56:11 +00:00
|
|
|
touch $@
|
2013-06-03 16:13:56 +00:00
|
|
|
|
2014-01-20 09:52:28 +00:00
|
|
|
pypi-release: $(PYPI_FILE)
|
2013-07-09 15:22:56 +00:00
|
|
|
################################################################################
|
|
|
|
# archlinux
|
|
|
|
#
|
2013-07-09 16:11:27 +00:00
|
|
|
ARCHLINUX_FILE=.lock-archlinux
|
2013-07-09 15:22:56 +00:00
|
|
|
ARCHLINUXTAR=cdist-$(CHANGELOG_VERSION)-1.src.tar.gz
|
2013-07-09 16:11:27 +00:00
|
|
|
|
2013-09-04 20:58:52 +00:00
|
|
|
$(ARCHLINUXTAR): PKGBUILD
|
2014-09-29 19:26:07 +00:00
|
|
|
umask 022; mkaurball
|
2013-06-03 16:13:56 +00:00
|
|
|
|
2013-09-05 11:19:47 +00:00
|
|
|
PKGBUILD: PKGBUILD.in $(PYTHON_VERSION)
|
2013-07-12 19:26:14 +00:00
|
|
|
./PKGBUILD.in $(CHANGELOG_VERSION)
|
2013-07-09 15:22:56 +00:00
|
|
|
|
2013-09-05 11:19:47 +00:00
|
|
|
$(ARCHLINUX_FILE): $(ARCHLINUXTAR) $(PYTHON_VERSION)
|
2013-07-09 16:11:27 +00:00
|
|
|
burp -c system $(ARCHLINUXTAR)
|
|
|
|
touch $@
|
|
|
|
|
|
|
|
archlinux-release: $(ARCHLINUX_FILE)
|
2013-07-09 15:22:56 +00:00
|
|
|
|
2013-06-03 20:29:49 +00:00
|
|
|
################################################################################
|
2013-07-09 15:22:56 +00:00
|
|
|
# Release
|
2013-06-03 20:29:49 +00:00
|
|
|
#
|
2013-06-03 16:16:50 +00:00
|
|
|
|
2017-08-28 16:01:00 +00:00
|
|
|
$(PYTHON_VERSION) version: .git/refs/heads/master
|
2013-09-05 11:19:47 +00:00
|
|
|
$(helper) version
|
|
|
|
|
2013-07-09 15:22:56 +00:00
|
|
|
# Code that is better handled in a shell script
|
2013-09-04 20:59:46 +00:00
|
|
|
check-%:
|
|
|
|
$(helper) $@
|
|
|
|
|
|
|
|
release:
|
2013-07-09 15:22:56 +00:00
|
|
|
$(helper) $@
|
2013-06-03 16:13:56 +00:00
|
|
|
|
2013-07-09 12:00:42 +00:00
|
|
|
################################################################################
|
|
|
|
# Cleanup
|
2013-07-09 15:22:56 +00:00
|
|
|
#
|
2013-07-09 12:00:42 +00:00
|
|
|
|
|
|
|
clean:
|
2016-06-30 13:05:26 +00:00
|
|
|
rm -f $(DOCS_SRC_DIR)/cdist-reference.rst
|
2013-07-09 12:00:42 +00:00
|
|
|
|
2016-06-30 13:05:26 +00:00
|
|
|
find "$(DOCS_SRC_DIR)" -mindepth 2 -type l \
|
2013-07-09 12:00:42 +00:00
|
|
|
| xargs rm -f
|
|
|
|
|
2016-06-30 13:05:26 +00:00
|
|
|
make -C $(DOCS_SRC_DIR) clean
|
2016-05-20 06:50:56 +00:00
|
|
|
|
2013-07-10 15:02:11 +00:00
|
|
|
find * -name __pycache__ | xargs rm -rf
|
2013-07-09 12:00:42 +00:00
|
|
|
|
|
|
|
# Archlinux
|
|
|
|
rm -f cdist-*.pkg.tar.xz cdist-*.tar.gz
|
|
|
|
rm -rf pkg/ src/
|
2013-07-10 15:02:11 +00:00
|
|
|
|
2013-09-05 10:57:52 +00:00
|
|
|
rm -f MANIFEST PKGBUILD
|
|
|
|
rm -rf dist/
|
|
|
|
|
2016-07-15 22:51:37 +00:00
|
|
|
# Signed release
|
|
|
|
rm -f cdist-*.tar.gz
|
|
|
|
rm -f cdist-*.tar.gz.asc
|
|
|
|
|
2013-09-05 10:57:52 +00:00
|
|
|
distclean: clean
|
|
|
|
rm -f cdist/version.py
|
|
|
|
|
2013-07-10 15:02:11 +00:00
|
|
|
################################################################################
|
|
|
|
# Misc
|
|
|
|
#
|
|
|
|
|
|
|
|
# The pub is Nico's "push to all git remotes" way ("make pub")
|
|
|
|
pub:
|
2015-02-10 22:10:23 +00:00
|
|
|
git push --mirror
|
2013-07-10 15:02:11 +00:00
|
|
|
|
|
|
|
test:
|
|
|
|
$(helper) $@
|
2016-07-23 14:00:07 +00:00
|
|
|
|
2018-03-09 09:00:14 +00:00
|
|
|
test-remote:
|
|
|
|
$(helper) $@
|
|
|
|
|
2016-07-23 14:00:07 +00:00
|
|
|
pep8:
|
|
|
|
$(helper) $@
|
2018-10-06 12:57:55 +00:00
|
|
|
|
|
|
|
shellcheck-global-explorers:
|
|
|
|
@find cdist/conf/explorer -type f -exec $(SHELLCHECKCMD) {} + | $(SHELLCHECK_SKIP)
|
|
|
|
shellcheck-manifests:
|
|
|
|
@find cdist/conf/type -type f -name manifest -exec $(SHELLCHECKCMD) {} + | $(SHELLCHECK_SKIP)
|
|
|
|
|
|
|
|
shellcheck-local-gencodes:
|
|
|
|
@find cdist/conf/type -type f -name gencode-local -exec $(SHELLCHECKCMD) {} + | $(SHELLCHECK_SKIP)
|
|
|
|
|
|
|
|
shellcheck-remote-gencodes:
|
|
|
|
@find cdist/conf/type -type f -name gencode-remote -exec $(SHELLCHECKCMD) {} + | $(SHELLCHECK_SKIP)
|
|
|
|
|
|
|
|
shellcheck-gencodes: shellcheck-local-gencodes shellcheck-remote-gencodes
|
|
|
|
|
|
|
|
shellcheck-types: shellcheck-manifests shellcheck-gencodes
|
|
|
|
|
|
|
|
shellcheck: shellcheck-global-explorers shellcheck-types
|