2017-10-29 16:30:09 -07:00
|
|
|
version?=$(shell grep '^[Vv]ersion:' pandoc.cabal | awk '{print $$2;}')
|
2015-07-01 11:21:34 -07:00
|
|
|
pandoc=$(shell find dist -name pandoc -type f -exec ls -t {} \; | head -1)
|
2020-02-07 08:32:47 -08:00
|
|
|
SOURCEFILES?=$(shell git ls-tree -r master --name-only | grep "\.hs$$")
|
2017-02-05 12:15:02 +01:00
|
|
|
BRANCH?=master
|
2021-03-06 16:34:45 -08:00
|
|
|
ARCH=$(shell uname -m)
|
2022-01-13 08:43:40 -08:00
|
|
|
DOCKERIMAGE=registry.gitlab.b-data.ch/ghc/ghc4pandoc:9.0.2
|
2021-02-18 23:22:18 -08:00
|
|
|
COMMIT=$(shell git rev-parse --short HEAD)
|
2021-02-19 10:12:29 -08:00
|
|
|
TIMESTAMP=$(shell date "+%Y%m%d_%H%M")
|
2021-03-05 23:59:50 -08:00
|
|
|
LATESTBENCH=$(word 1,$(shell ls -t bench_*.csv 2>/dev/null))
|
2021-03-17 13:34:17 -07:00
|
|
|
BASELINE?=$(LATESTBENCH)
|
|
|
|
ifeq ($(BASELINE),)
|
|
|
|
BASELINECMD=
|
2021-02-19 10:12:29 -08:00
|
|
|
else
|
2021-03-17 13:34:17 -07:00
|
|
|
BASELINECMD=--baseline $(BASELINE)
|
2021-02-19 10:12:29 -08:00
|
|
|
endif
|
2021-03-18 13:07:54 -07:00
|
|
|
GHCOPTS=-fdiagnostics-color=always -j4 +RTS -A8m -RTS
|
2017-12-28 16:12:32 -08:00
|
|
|
WEBSITE=../../web/pandoc.org
|
2020-07-24 09:57:27 -07:00
|
|
|
REVISION?=1
|
2021-03-16 15:59:50 -07:00
|
|
|
# For gauge:
|
2021-03-17 13:34:17 -07:00
|
|
|
# BENCHARGS?=--small --ci=0.90 --match=pattern $(PATTERN)
|
2021-03-16 13:07:37 -07:00
|
|
|
# For tasty-bench:
|
2021-10-31 13:17:57 -07:00
|
|
|
BENCHARGS?=--csv bench_$(TIMESTAMP).csv $(BASELINECMD) --timeout=6 +RTS -T --nonmoving-gc -RTS $(if $(PATTERN),--pattern "$(PATTERN)",)
|
2014-08-13 13:53:20 -07:00
|
|
|
|
2018-10-02 09:23:53 -07:00
|
|
|
quick:
|
2021-09-16 20:45:40 -07:00
|
|
|
stack install --ghc-options='$(GHCOPTS)' --system-ghc --flag 'pandoc:embed_data_files' --fast --test --test-arguments='-j4 --hide-successes --ansi-tricks=false $(TESTARGS)'
|
2018-10-02 09:23:53 -07:00
|
|
|
|
2018-10-01 23:58:13 -07:00
|
|
|
quick-cabal:
|
2021-09-13 22:36:09 -07:00
|
|
|
cabal v2-build -j8 --ghc-options '$(GHCOPTS)' --disable-optimization --enable-tests
|
2021-10-05 08:45:41 -07:00
|
|
|
cabal v2-test --disable-optimization --test-options="--hide-successes --ansi-tricks=false $(TESTARGS)"
|
2021-10-10 11:24:20 -07:00
|
|
|
echo "Path to built executable:" && cabal exec -- sh -c 'command -v pandoc' | sed -e 's!x/pandoc/build!x/pandoc/noopt/build!'
|
2018-10-13 23:09:51 -07:00
|
|
|
|
|
|
|
full-cabal:
|
2021-09-08 09:01:02 -07:00
|
|
|
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)
|
2018-10-01 23:58:13 -07:00
|
|
|
|
2014-08-18 17:40:35 -07:00
|
|
|
full:
|
2021-09-08 09:01:02 -07:00
|
|
|
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)'
|
2017-06-24 13:53:47 +02:00
|
|
|
|
2019-09-06 21:09:44 -07:00
|
|
|
ghci:
|
|
|
|
stack ghci --flag 'pandoc:embed_data_files'
|
|
|
|
|
2017-06-24 13:53:47 +02:00
|
|
|
haddock:
|
2019-05-21 21:56:50 -07:00
|
|
|
stack haddock
|
2014-08-13 13:53:20 -07:00
|
|
|
|
2021-12-18 09:52:24 -08:00
|
|
|
check: check-cabal checkdocs
|
|
|
|
cabal check # check cabal file
|
|
|
|
cabal outdated # check cabal dependencies
|
2022-01-09 13:08:28 -08:00
|
|
|
stack-lint-extra-deps # check that stack.yaml dependencies are up to date
|
|
|
|
! grep 'git:' stack.yaml # use only released versions
|
|
|
|
! grep 'git:' cabal.project # use only released versions
|
2021-12-18 09:52:24 -08:00
|
|
|
|
|
|
|
check-cabal: git-files.txt sdist-files.txt
|
|
|
|
@echo "Checking to see if all committed test/data files are in sdist."
|
|
|
|
diff -u $^
|
|
|
|
|
|
|
|
checkdocs:
|
|
|
|
@echo "Checking for tabs in manual."
|
|
|
|
! grep -q -n -e "\t" MANUAL.txt changelog.md
|
|
|
|
|
2017-03-15 17:22:07 +01:00
|
|
|
# Note: to accept current results of golden tests,
|
|
|
|
# make test TESTARGS='--accept'
|
2014-08-13 13:53:20 -07:00
|
|
|
test:
|
2021-09-08 09:01:02 -07:00
|
|
|
stack test --flag 'pandoc:embed_data_files' --fast --test-arguments='-j4 --hide-successes --ansi-tricks=false $(TESTARGS)' --ghc-options '$(GHCOPTS)'
|
2014-08-13 13:53:20 -07:00
|
|
|
|
2019-08-25 15:38:17 -07:00
|
|
|
ghcid:
|
|
|
|
ghcid -c "stack repl --flag 'pandoc:embed_data_files'"
|
|
|
|
|
2021-03-12 19:12:20 -08: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 13:53:20 -07:00
|
|
|
bench:
|
2021-03-15 22:50:18 -07:00
|
|
|
stack bench \
|
2021-03-17 13:34:17 -07:00
|
|
|
--ghc-options '$(GHCOPTS)' \
|
2021-03-16 13:07:37 -07:00
|
|
|
--benchmark-arguments='$(BENCHARGS)' 2>&1 | \
|
2021-03-15 22:50:18 -07:00
|
|
|
tee "bench_latest.txt"
|
2014-08-13 13:53:20 -07:00
|
|
|
|
2017-03-04 13:12:29 +01:00
|
|
|
reformat:
|
2017-10-29 13:15:09 -07:00
|
|
|
for f in $(SOURCEFILES); do echo $$f; stylish-haskell -i $$f ; done
|
2017-03-04 12:49:14 +01:00
|
|
|
|
2020-02-07 08:32:47 -08:00
|
|
|
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
|
|
|
|
2015-11-15 08:19:26 -08:00
|
|
|
changes_github:
|
2020-03-15 11:23:55 -07:00
|
|
|
pandoc --filter tools/extract-changes.hs changelog.md -t gfm --wrap=none --template tools/changes_template.html | sed -e 's/\\#/#/g' | pbcopy
|
2015-11-15 08:17:09 -08:00
|
|
|
|
2015-07-02 22:09:04 -07:00
|
|
|
dist: man/pandoc.1
|
2014-08-30 23:15:04 -07:00
|
|
|
cabal sdist
|
2014-08-13 17:52:34 -07:00
|
|
|
rm -rf "pandoc-${version}"
|
|
|
|
tar xvzf dist/pandoc-${version}.tar.gz
|
|
|
|
cd pandoc-${version}
|
2015-11-15 23:15:51 -08:00
|
|
|
stack setup && stack test && cd .. && rm -rf "pandoc-${version}"
|
2014-08-13 17:52:34 -07:00
|
|
|
|
2017-11-20 21:40:00 -08:00
|
|
|
|
2021-10-31 11:12:43 -07:00
|
|
|
debpkg:
|
2021-03-06 16:59:35 -08:00
|
|
|
docker run -v `pwd`:/mnt \
|
2020-07-24 09:57:27 -07:00
|
|
|
-v `pwd`/linux/artifacts:/artifacts \
|
2021-03-06 17:03:36 -08:00
|
|
|
--user $(id -u):$(id -g) \
|
2020-07-24 09:57:27 -07:00
|
|
|
-e REVISION=$(REVISION) \
|
|
|
|
-w /mnt \
|
2021-03-05 23:59:50 -08:00
|
|
|
--memory=0 \
|
2021-03-06 16:34:45 -08:00
|
|
|
--rm \
|
2021-03-05 23:32:03 -08:00
|
|
|
$(DOCKERIMAGE) \
|
2021-03-05 19:11:12 -08:00
|
|
|
bash \
|
2021-03-06 16:59:35 -08:00
|
|
|
/mnt/linux/make_artifacts.sh 2>&1 > docker.log
|
2014-12-16 13:58:34 -08:00
|
|
|
|
2019-12-22 20:58:02 -08:00
|
|
|
man/pandoc.1: MANUAL.txt man/pandoc.1.before man/pandoc.1.after
|
2020-08-12 23:11:28 -07:00
|
|
|
pandoc $< -f markdown -t man -s \
|
2017-11-11 15:26:24 -08:00
|
|
|
--lua-filter man/manfilter.lua \
|
2019-12-22 20:58:02 -08:00
|
|
|
--include-before-body man/pandoc.1.before \
|
|
|
|
--include-after-body man/pandoc.1.after \
|
|
|
|
--metadata author="" \
|
|
|
|
--variable footer="pandoc $(version)" \
|
2015-07-02 22:09:04 -07:00
|
|
|
-o $@
|
|
|
|
|
2017-12-29 16:41:51 -08:00
|
|
|
README.md: README.template MANUAL.txt tools/update-readme.lua
|
2020-07-23 17:56:12 -07:00
|
|
|
pandoc --lua-filter tools/update-readme.lua \
|
2017-12-30 10:40:06 -08:00
|
|
|
--reference-location=section -t gfm $< -o $@
|
2017-12-29 16:41:51 -08:00
|
|
|
|
2015-06-29 14:42:07 -07:00
|
|
|
download_stats:
|
|
|
|
curl https://api.github.com/repos/jgm/pandoc/releases | \
|
2015-07-04 10:29:52 -07:00
|
|
|
jq -r '.[] | .assets | .[] | "\(.download_count)\t\(.name)"'
|
2015-06-29 14:42:07 -07:00
|
|
|
|
2017-12-27 09:34:30 -08:00
|
|
|
pandoc-templates:
|
|
|
|
rm ../pandoc-templates/default.* ; \
|
2020-09-15 10:35:04 -07:00
|
|
|
cp data/templates/* ../pandoc-templates/ ; \
|
2017-12-27 09:34:30 -08:00
|
|
|
pushd ../pandoc-templates/ && \
|
2020-09-15 10:35:04 -07:00
|
|
|
git add * && \
|
2017-12-27 09:34:30 -08:00
|
|
|
git commit -m "Updated templates for pandoc $(version)" && \
|
|
|
|
popd
|
|
|
|
|
2017-12-27 14:09:48 -08:00
|
|
|
trypandoc:
|
2022-01-12 22:33:56 -08:00
|
|
|
ssh -t macfarlane 'cd src/pandoc && git pull && cabal update && cabal install -ftrypandoc -fembed_data_files --install-method=copy --overwrite-policy=always && cd trypandoc && sudo make install'
|
2017-12-27 14:09:48 -08:00
|
|
|
|
2017-12-28 16:12:32 -08:00
|
|
|
update-website:
|
|
|
|
make -C $(WEBSITE) update
|
|
|
|
make -C $(WEBSITE)
|
|
|
|
make -C $(WEBSITE) upload
|
|
|
|
|
2014-08-13 12:31:19 -07:00
|
|
|
clean:
|
2016-12-08 11:46:40 +01:00
|
|
|
stack clean
|
2014-08-13 12:31:19 -07:00
|
|
|
|
2020-12-18 12:04:24 -08:00
|
|
|
sdist-files.txt: .FORCE
|
|
|
|
cabal sdist --list-only | sed 's/\.\///' | grep '^\(test\|data\)\/' | sort > $@
|
2020-12-18 09:18:51 -08:00
|
|
|
|
2020-12-18 12:04:24 -08:00
|
|
|
git-files.txt: .FORCE
|
|
|
|
git ls-tree -r --name-only HEAD | grep '^\(test\|data\)\/' | sort > $@
|
2020-12-18 09:18:51 -08:00
|
|
|
|
2021-12-18 09:52:24 -08:00
|
|
|
.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 check
|