pandoc/Makefile

148 lines
5.2 KiB
Makefile
Raw Normal View History

2017-10-30 00:30:09 +01:00
version?=$(shell grep '^[Vv]ersion:' pandoc.cabal | awk '{print $$2;}')
pandoc=$(shell find dist -name pandoc -type f -exec ls -t {} \; | head -1)
SOURCEFILES?=$(shell git ls-tree -r master --name-only | grep "\.hs$$")
BRANCH?=master
ARCH=$(shell uname -m)
2021-03-06 18:50:31 +01:00
DOCKERIMAGE=registry.gitlab.b-data.ch/ghc/ghc4pandoc:8.10.4
COMMIT=$(shell git rev-parse --short HEAD)
TIMESTAMP=$(shell date "+%Y%m%d_%H%M")
LATESTBENCH=$(word 1,$(shell ls -t bench_*.csv 2>/dev/null))
BASELINE?=$(LATESTBENCH)
ifeq ($(BASELINE),)
BASELINECMD=
else
BASELINECMD=--baseline $(BASELINE)
endif
2021-03-18 21:07:54 +01:00
GHCOPTS=-fdiagnostics-color=always -j4 +RTS -A8m -RTS
2017-12-29 01:12:32 +01:00
WEBSITE=../../web/pandoc.org
REVISION?=1
# For gauge:
# BENCHARGS?=--small --ci=0.90 --match=pattern $(PATTERN)
2021-03-16 21:07:37 +01:00
# For tasty-bench:
BENCHARGS?=--csv bench_$(TIMESTAMP).csv $(BASELINECMD) --timeout=6 +RTS -T -RTS $(if $(PATTERN),--pattern "$(PATTERN)",)
2014-08-13 22:53:20 +02:00
quick:
stack install --ghc-options='$(GHCOPTS)' --install-ghc --flag 'pandoc:embed_data_files' --fast --test --ghc-options='$(GHCOPTS)' --test-arguments='-j4 --hide-successes --ansi-tricks=false $(TESTARGS)'
quick-cabal:
2021-09-14 07:36:09 +02:00
cabal v2-build -j8 --ghc-options '$(GHCOPTS)' --disable-optimization --enable-tests
2021-09-17 04:19:38 +02:00
cabal v2-test --test-option=--hide-successes --test-option=--ansi-tricks=false $(TESTARGS)
full-cabal:
cabal v2-configure . --ghc-options '$(GHCOPTS)' --flags '+embed_data_files +trypandoc' --enable-tests --enable-benchmarks
cabal v2-build . --disable-optimization
cabal v2-run test-pandoc --disable-optimization -- --hide-successes --ansi-tricks=false $(TESTARGS)
2014-08-19 02:40:35 +02:00
full:
stack install --flag 'pandoc:embed_data_files' --flag 'pandoc:trypandoc' --bench --no-run-benchmarks --test --test-arguments='-j4 --hide-successes--ansi-tricks-false' --ghc-options '-Wall -Werror -fno-warn-unused-do-bind -O0 $(GHCOPTS)'
2019-09-07 06:09:44 +02:00
ghci:
stack ghci --flag 'pandoc:embed_data_files'
haddock:
stack haddock
2014-08-13 22:53:20 +02:00
# Note: to accept current results of golden tests,
# make test TESTARGS='--accept'
2014-08-13 22:53:20 +02:00
test:
stack test --flag 'pandoc:embed_data_files' --fast --test-arguments='-j4 --hide-successes --ansi-tricks=false $(TESTARGS)' --ghc-options '$(GHCOPTS)'
2014-08-13 22:53:20 +02:00
2019-08-26 00:38:17 +02:00
ghcid:
ghcid -c "stack repl --flag 'pandoc:embed_data_files'"
2021-03-13 04:12:20 +01:00
ghcid-test:
ghcid -c "stack repl --ghc-options=-XNoImplicitPrelude --flag 'pandoc:embed_data_files' --ghci-options=-fobject-code pandoc:lib pandoc:test-pandoc"
2014-08-13 22:53:20 +02:00
bench:
stack bench \
--ghc-options '$(GHCOPTS)' \
2021-03-16 21:07:37 +01:00
--benchmark-arguments='$(BENCHARGS)' 2>&1 | \
tee "bench_latest.txt"
2014-08-13 22:53:20 +02:00
reformat:
for f in $(SOURCEFILES); do echo $$f; stylish-haskell -i $$f ; done
lint: hlint fix_spacing
hlint:
for f in $(SOURCEFILES); do echo $$f; hlint --verbose --refactor --refactor-options='-s -o -' $$f; done
fix_spacing:
# Fix trailing newlines and spaces at ends of lines
for f in $(SOURCEFILES); do printf '%s\n' "`cat $$f`" | sed -e 's/ *$$//' > $$f.tmp; mv $$f.tmp $$f; done
2017-06-01 15:09:30 +02:00
changes_github:
pandoc --filter tools/extract-changes.hs changelog.md -t gfm --wrap=none --template tools/changes_template.html | sed -e 's/\\#/#/g' | pbcopy
dist: man/pandoc.1
cabal sdist
rm -rf "pandoc-${version}"
tar xvzf dist/pandoc-${version}.tar.gz
cd pandoc-${version}
stack setup && stack test && cd .. && rm -rf "pandoc-${version}"
check: checkdocs check-cabal
checkdocs:
2020-12-18 18:46:20 +01:00
! grep -q -n -e "\t" MANUAL.txt changelog.md
2017-11-21 06:40:00 +01:00
debpkg: man/pandoc.1
2021-03-07 01:59:35 +01:00
docker run -v `pwd`:/mnt \
-v `pwd`/linux/artifacts:/artifacts \
--user $(id -u):$(id -g) \
-e REVISION=$(REVISION) \
-w /mnt \
--memory=0 \
--rm \
$(DOCKERIMAGE) \
bash \
2021-03-07 01:59:35 +01:00
/mnt/linux/make_artifacts.sh 2>&1 > docker.log
man/pandoc.1: MANUAL.txt man/pandoc.1.before man/pandoc.1.after
pandoc $< -f markdown -t man -s \
--lua-filter man/manfilter.lua \
--include-before-body man/pandoc.1.before \
--include-after-body man/pandoc.1.after \
--metadata author="" \
--variable footer="pandoc $(version)" \
-o $@
README.md: README.template MANUAL.txt tools/update-readme.lua
2020-07-24 02:56:12 +02:00
pandoc --lua-filter tools/update-readme.lua \
2017-12-30 19:40:06 +01:00
--reference-location=section -t gfm $< -o $@
download_stats:
curl https://api.github.com/repos/jgm/pandoc/releases | \
2015-07-04 19:29:52 +02:00
jq -r '.[] | .assets | .[] | "\(.download_count)\t\(.name)"'
pandoc-templates:
rm ../pandoc-templates/default.* ; \
cp data/templates/* ../pandoc-templates/ ; \
pushd ../pandoc-templates/ && \
git add * && \
git commit -m "Updated templates for pandoc $(version)" && \
popd
2017-12-27 23:09:48 +01:00
trypandoc:
ssh -t macfarlane 'cd src/pandoc && git pull && stack install --flag pandoc:trypandoc --flag pandoc:embed_data_files && cd trypandoc && sudo make install'
2017-12-27 23:09:48 +01:00
2017-12-29 01:12:32 +01:00
update-website:
make -C $(WEBSITE) update
make -C $(WEBSITE)
make -C $(WEBSITE) upload
clean:
2016-12-08 11:46:40 +01:00
stack clean
check-cabal: git-files.txt sdist-files.txt
echo "Checking to see if all committed test/data files are in sdist."
diff -u $^
sdist-files.txt: .FORCE
cabal sdist --list-only | sed 's/\.\///' | grep '^\(test\|data\)\/' | sort > $@
git-files.txt: .FORCE
git ls-tree -r --name-only HEAD | grep '^\(test\|data\)\/' | sort > $@
.PHONY: .FORCE deps quick full haddock install clean test bench changes_github dist prof download_stats reformat lint weigh doc/lua-filters.md pandoc-templates trypandoc update-website debpkg checkdocs ghcid ghci fix_spacing hlint check check-cabal