2016-02-21 13:21:41 +03:00
|
|
|
#!/usr/bin/env stack
|
2018-03-31 04:43:28 +03:00
|
|
|
{- stack exec
|
|
|
|
--verbosity=info
|
2016-04-05 16:59:52 +03:00
|
|
|
--package base-prelude
|
|
|
|
--package directory
|
|
|
|
--package extra
|
2019-02-08 22:32:37 +03:00
|
|
|
--package regex
|
2016-04-05 16:59:52 +03:00
|
|
|
--package safe
|
|
|
|
--package shake
|
|
|
|
--package time
|
2018-04-26 03:41:28 +03:00
|
|
|
ghc
|
2019-03-21 20:23:41 +03:00
|
|
|
-} -- uses the project's current stack resolver
|
2016-04-05 16:59:52 +03:00
|
|
|
{-
|
2016-10-28 21:15:10 +03:00
|
|
|
|
2019-03-06 06:21:45 +03:00
|
|
|
One of two project scripts files (Makefile, Shake.hs). This one
|
|
|
|
provides a stronger programming language and more platform
|
|
|
|
independence than Make. It requires stack and will auto-install the
|
|
|
|
haskell packages above when needed (on first run or when a new
|
|
|
|
resolver is configured in stack.yaml). Some rules below use additional
|
|
|
|
tools, including:
|
2019-01-25 18:04:16 +03:00
|
|
|
|
2016-10-28 21:15:10 +03:00
|
|
|
- groff
|
|
|
|
- m4
|
|
|
|
- makeinfo
|
2019-01-25 18:04:16 +03:00
|
|
|
- pandoc
|
2019-02-05 05:47:27 +03:00
|
|
|
- sed
|
2019-03-06 18:59:51 +03:00
|
|
|
- GNU date (on mac: brew install coreutils)
|
2016-10-28 21:15:10 +03:00
|
|
|
|
2019-03-06 06:21:45 +03:00
|
|
|
Compiling this script is recommended, to ensure required packages are
|
|
|
|
installed, minimise startup delay, and reduce sensitivity to the
|
|
|
|
current git state (eg when bisecting). To compile, run "./Shake.hs".
|
|
|
|
(Or "make Shake", or any other make rule depending on Shake).
|
2016-12-31 01:32:43 +03:00
|
|
|
|
2019-03-06 06:21:45 +03:00
|
|
|
Once compiled, run ./Shake without any arguments to list commands and
|
|
|
|
targets (see below).
|
2016-04-05 16:59:52 +03:00
|
|
|
|
2019-03-06 06:21:45 +03:00
|
|
|
When developing/troubleshooting this script, these are useful:
|
|
|
|
|
|
|
|
watch Shake.hs for compile errors: make ghcid-shake
|
|
|
|
load Shake.hs in GHCI: make ghci-shake
|
|
|
|
rebuild things when files change with entr (file watcher), eg:
|
|
|
|
find hledger-lib hledger | entr ./Shake website
|
|
|
|
view rule dependency graph:
|
|
|
|
./Shake --report, open report.html?mode=rule-graph&query=!name(/(doc%7Cimages%7Cjs%7Ccss%7Cfonts%7Ctime%7Capi%7Cui%7Ccsv)/)
|
2019-01-20 01:49:20 +03:00
|
|
|
|
2016-10-28 21:15:10 +03:00
|
|
|
-}
|
2016-04-05 16:59:52 +03:00
|
|
|
|
2019-02-01 04:36:52 +03:00
|
|
|
{-# LANGUAGE MultiWayIf #-}
|
2019-02-08 22:32:37 +03:00
|
|
|
{-# LANGUAGE NamedFieldPuns #-}
|
2019-02-01 04:36:52 +03:00
|
|
|
{-# LANGUAGE PackageImports #-}
|
2019-02-08 22:32:37 +03:00
|
|
|
{-# LANGUAGE QuasiQuotes #-}
|
2019-02-01 04:36:52 +03:00
|
|
|
{-# LANGUAGE ScopedTypeVariables #-}
|
2016-10-29 20:51:43 +03:00
|
|
|
|
2016-04-05 16:59:52 +03:00
|
|
|
import Prelude ()
|
|
|
|
import "base-prelude" BasePrelude
|
2019-02-01 04:36:52 +03:00
|
|
|
import "base" Control.Exception as C
|
|
|
|
-- required packages, keep synced with Makefile -> SHAKEDEPS:
|
2018-03-31 04:43:28 +03:00
|
|
|
import "directory" System.Directory as S (getDirectoryContents)
|
2016-04-05 16:59:52 +03:00
|
|
|
import "extra" Data.List.Extra
|
2019-01-31 04:55:56 +03:00
|
|
|
import "process" System.Process
|
2019-02-08 22:32:37 +03:00
|
|
|
import "regex" Text.RE.TDFA.String
|
|
|
|
import "regex" Text.RE.Replace
|
2016-04-05 16:59:52 +03:00
|
|
|
import "safe" Safe
|
|
|
|
import "shake" Development.Shake
|
|
|
|
import "shake" Development.Shake.FilePath
|
|
|
|
import "time" Data.Time
|
2019-01-20 01:49:20 +03:00
|
|
|
-- import "hledger-lib" Hledger.Utils.Debug
|
2016-04-05 16:59:52 +03:00
|
|
|
|
2016-10-28 21:15:10 +03:00
|
|
|
usage = unlines
|
2019-02-01 21:19:12 +03:00
|
|
|
---------------------------------------79--------------------------------------
|
2016-10-28 21:15:10 +03:00
|
|
|
["Usage:"
|
2019-02-01 21:19:12 +03:00
|
|
|
,"./Shake.hs (re)compile this script"
|
|
|
|
,"./Shake commandhelp build embedded help texts for the hledger CLI"
|
2019-05-09 22:23:11 +03:00
|
|
|
,"./Shake manuals build html/txt/man/info manuals for all packages"
|
|
|
|
,"./Shake htmlmanuals build html manuals for all packages"
|
2019-02-12 00:07:06 +03:00
|
|
|
,"./Shake oldmanuals build old versions of html manuals for all packages"
|
2019-02-01 21:19:12 +03:00
|
|
|
,"./Shake PKG build a single hledger package and its embedded docs"
|
|
|
|
,"./Shake build build all hledger packages and their embedded docs"
|
|
|
|
,"./Shake website build the website and web manuals"
|
2019-02-12 00:07:06 +03:00
|
|
|
,"./Shake website-all build the website and all web manual versions"
|
2019-02-01 21:19:12 +03:00
|
|
|
,"./Shake all build all the above"
|
2019-03-06 18:59:51 +03:00
|
|
|
,"./Shake hledgerorg update the hledger.org website (when run on prod)"
|
2019-01-20 01:49:20 +03:00
|
|
|
,""
|
2019-02-08 15:14:10 +03:00
|
|
|
,"./Shake mainpages build the web pages from the main repo"
|
2019-02-08 22:32:37 +03:00
|
|
|
-- ,"./Shake site/index.md update wiki links on the website home page"
|
2019-02-01 21:19:12 +03:00
|
|
|
,"./Shake FILE build any individual file"
|
2019-02-05 05:47:27 +03:00
|
|
|
,"./Shake setversion update all packages from PKG/.version"
|
2019-02-01 21:19:12 +03:00
|
|
|
,"./Shake changelogs update the changelogs with any new commits"
|
|
|
|
,"./Shake [PKG/]CHANGES.md[-dry] update or preview this changelog"
|
2019-02-05 18:31:06 +03:00
|
|
|
,"./Shake [PKG/]CHANGES.md-finalise set final release heading in this changelog"
|
2019-02-01 21:19:12 +03:00
|
|
|
,"./Shake site/doc/VERSION/.snapshot save current web manuals as this snapshot"
|
2019-01-20 01:49:20 +03:00
|
|
|
,""
|
2019-02-01 21:19:12 +03:00
|
|
|
,"./Shake clean clean help texts, manuals, staged site content"
|
|
|
|
,"./Shake Clean also clean rendered site, object files, Shake's cache"
|
|
|
|
,"./Shake [help] show these commands"
|
|
|
|
,"./Shake --help show Shake options (--color, --rebuild, ...)"
|
2019-02-04 04:01:57 +03:00
|
|
|
,""
|
|
|
|
,"See also: make help"
|
2016-10-28 21:15:10 +03:00
|
|
|
]
|
2016-02-21 13:21:41 +03:00
|
|
|
|
2019-01-20 00:14:33 +03:00
|
|
|
groff = "groff"
|
2019-01-20 02:16:08 +03:00
|
|
|
makeinfo = "makeinfo"
|
|
|
|
pandoc = "pandoc"
|
2019-02-05 22:54:10 +03:00
|
|
|
|
|
|
|
-- Must support both BSD sed and GNU sed. Tips:
|
|
|
|
-- BSD:
|
|
|
|
-- use [a-z] [0-9] instead of \w \d etc.
|
|
|
|
-- GNU:
|
|
|
|
-- backslash-escape {
|
|
|
|
sed = "sed -E"
|
2019-01-20 02:16:08 +03:00
|
|
|
|
|
|
|
-- The kind of markdown used in our doc source files.
|
2019-01-25 02:23:41 +03:00
|
|
|
fromsrcmd = "-f markdown-smart-tex_math_dollars"
|
2019-01-20 02:16:08 +03:00
|
|
|
|
|
|
|
-- The kind of markdown we like to generate for the website.
|
2019-08-26 19:04:07 +03:00
|
|
|
-- This will be consumed by sphinx extensions:
|
|
|
|
-- recommonmark (Commonmark syntax, https://spec.commonmark.org)
|
|
|
|
-- sphinx-markdown-tables (PHP Markdown Extra table syntax, https://michelf.ca/projects/php-markdown/extra/#table)
|
|
|
|
-- XXX trying to force the use of pipe_tables here, but sometimes it uses html instead
|
2019-08-27 04:40:21 +03:00
|
|
|
towebmd = "-t markdown-smart-fenced_divs-fenced_code_attributes-simple_tables-multiline_tables-grid_tables --atx-headers"
|
2016-02-21 13:21:41 +03:00
|
|
|
|
2018-12-03 20:21:05 +03:00
|
|
|
|
2016-02-21 13:21:41 +03:00
|
|
|
main = do
|
|
|
|
|
2019-01-27 03:21:59 +03:00
|
|
|
-- hledger manual also includes the markdown files from here:
|
|
|
|
let commandsdir = "hledger/Hledger/Cli/Commands"
|
2019-03-04 22:37:40 +03:00
|
|
|
commandmds <-
|
|
|
|
filter (not . ("README." `isPrefixOf`) . takeFileName) . filter (".md" `isSuffixOf`) . map (commandsdir </>)
|
|
|
|
<$> S.getDirectoryContents commandsdir
|
2019-01-30 21:27:53 +03:00
|
|
|
let commandtxts = map (-<.> "txt") commandmds
|
2019-01-27 03:21:59 +03:00
|
|
|
|
2019-08-25 16:20:14 +03:00
|
|
|
let sitedir = "site"
|
|
|
|
pages <- map takeBaseName . filter (".md" `isSuffixOf`) <$> S.getDirectoryContents sitedir
|
|
|
|
|
2016-04-05 16:59:52 +03:00
|
|
|
shakeArgs
|
2019-03-06 19:39:43 +03:00
|
|
|
shakeOptions
|
|
|
|
{
|
|
|
|
shakeVerbosity=Quiet
|
2016-04-05 16:59:52 +03:00
|
|
|
-- ,shakeReport=[".shake.html"]
|
2019-03-06 19:39:43 +03:00
|
|
|
}
|
|
|
|
$ do
|
2016-04-05 16:59:52 +03:00
|
|
|
|
|
|
|
want ["help"]
|
|
|
|
|
|
|
|
phony "help" $ liftIO $ putStrLn usage
|
|
|
|
|
2019-01-31 04:55:56 +03:00
|
|
|
phony "all" $ need ["commandhelp", "manuals", "build", "website"]
|
2016-04-06 02:16:38 +03:00
|
|
|
|
2019-01-20 01:49:20 +03:00
|
|
|
-- phony "compile" $ need ["Shake"]
|
|
|
|
-- "Shake" %> \out -> do
|
|
|
|
-- need [out <.> "hs"]
|
|
|
|
-- unit $ cmd "./Shake.hs" -- running as stack script installs deps and compiles
|
|
|
|
-- putLoud "You can now run ./Shake instead of ./Shake.hs"
|
|
|
|
|
|
|
|
|
2019-01-30 21:27:53 +03:00
|
|
|
-- NAMES, FILES, URIS..
|
2016-04-08 17:01:11 +03:00
|
|
|
|
|
|
|
let
|
2019-02-12 00:07:06 +03:00
|
|
|
-- documentation versions shown on the website
|
2019-08-30 18:00:21 +03:00
|
|
|
docversions = [ "1.0" , "1.1" , "1.2" , "1.3" , "1.4" , "1.5" , "1.9", "1.10", "1.11", "1.12", "1.13", "1.14" ]
|
2019-01-20 01:49:20 +03:00
|
|
|
|
2019-01-30 21:27:53 +03:00
|
|
|
-- main package names, in standard build order
|
|
|
|
packages = [
|
|
|
|
"hledger-lib"
|
|
|
|
,"hledger"
|
|
|
|
,"hledger-ui"
|
|
|
|
,"hledger-web"
|
2019-09-01 06:58:27 +03:00
|
|
|
-- ,"hledger-api"
|
2019-01-30 21:27:53 +03:00
|
|
|
]
|
|
|
|
|
2019-02-01 04:36:52 +03:00
|
|
|
changelogs = "CHANGES.md" : map (</> "CHANGES.md") packages
|
|
|
|
|
2019-01-30 21:27:53 +03:00
|
|
|
-- doc files (or related targets) that should be generated
|
|
|
|
-- before building hledger packages.
|
|
|
|
-- [(PKG, [TARGETS])]
|
|
|
|
embeddedFiles = [
|
|
|
|
-- hledger embeds the plain text command help files and all packages' text/nroff/info manuals
|
|
|
|
("hledger", commandtxts ++ ["manuals"])
|
|
|
|
-- hledger-ui imports the hledger-ui manuals from hledger
|
|
|
|
,("hledger-ui", ["hledger"])
|
|
|
|
]
|
2019-01-20 01:49:20 +03:00
|
|
|
|
|
|
|
-- man page names (manual names plus a man section number), in suggested reading order
|
|
|
|
manpageNames = [
|
2016-04-08 17:01:11 +03:00
|
|
|
"hledger.1"
|
|
|
|
,"hledger-ui.1"
|
|
|
|
,"hledger-web.1"
|
2019-09-01 06:58:27 +03:00
|
|
|
-- ,"hledger-api.1"
|
2016-04-08 17:01:11 +03:00
|
|
|
,"hledger_journal.5"
|
|
|
|
,"hledger_csv.5"
|
2016-04-13 07:10:02 +03:00
|
|
|
,"hledger_timeclock.5"
|
2016-04-08 17:01:11 +03:00
|
|
|
,"hledger_timedot.5"
|
|
|
|
]
|
2017-01-26 17:40:50 +03:00
|
|
|
|
2019-01-20 01:49:20 +03:00
|
|
|
-- basic manual names, without numbers
|
2017-12-07 05:16:35 +03:00
|
|
|
manualNames = map manpageNameToManualName manpageNames
|
|
|
|
|
2019-01-20 01:49:20 +03:00
|
|
|
-- main markdown+m4 source files for manuals (hledger/hledger.m4.md)
|
|
|
|
-- These may include additional files using m4.
|
|
|
|
m4manuals = [manualDir m </> m <.> "m4.md" | m <- manualNames]
|
2017-12-07 05:16:35 +03:00
|
|
|
|
|
|
|
-- manuals rendered to nroff, ready for man (hledger/hledger.1)
|
2019-01-20 01:49:20 +03:00
|
|
|
nroffmanuals = [manpageDir m </> m | m <- manpageNames]
|
2017-01-26 17:40:50 +03:00
|
|
|
|
2019-01-20 01:49:20 +03:00
|
|
|
-- manuals rendered to plain text, ready for embedding (hledger/hledger.txt)
|
|
|
|
txtmanuals = [manualDir m </> m <.> "txt" | m <- manualNames]
|
2017-01-26 17:40:50 +03:00
|
|
|
|
2017-12-07 05:16:35 +03:00
|
|
|
-- manuals rendered to info, ready for info (hledger/hledger.info)
|
2019-01-20 01:49:20 +03:00
|
|
|
infomanuals = [manualDir m </> m <.> "info" | m <- manualNames]
|
2018-05-06 08:18:58 +03:00
|
|
|
|
2019-01-31 04:55:56 +03:00
|
|
|
-- individual manuals rendered to markdown, ready for conversion to html (site/hledger.md)
|
2019-02-12 00:07:06 +03:00
|
|
|
mdmanuals = ["site" </> manpageNameToUri m <.> "md" | m <- manpageNames]
|
|
|
|
|
|
|
|
-- latest version of the manuals rendered to html
|
2019-08-26 03:16:12 +03:00
|
|
|
htmlmanuals = ["site/_site" </> manpageNameToUri m <.> "html" | m <- manpageNames]
|
2019-02-12 00:07:06 +03:00
|
|
|
|
|
|
|
-- old versions of the manuals rendered to html
|
|
|
|
oldhtmlmanuals = map (normalise . ("site/_site/doc" </>) . (<.> "html")) $
|
|
|
|
[ v </> manpageNameToUri p | v <- docversions, v>="1.0", p <- manpageNames ++ ["manual"] ] ++
|
|
|
|
[ v </> "manual" | v <- docversions, v <"1.0" ] -- before 1.0 there was only the combined manual
|
|
|
|
|
|
|
|
-- the html for website pages kept in the main repo
|
2019-08-25 16:20:14 +03:00
|
|
|
mainpageshtml = map (normalise . ("site/_site" </>) . (<.> "html")) pages
|
2017-01-26 17:40:50 +03:00
|
|
|
|
2019-02-12 00:07:06 +03:00
|
|
|
-- TODO: make website URIs lower-case ?
|
|
|
|
|
2019-01-20 01:49:20 +03:00
|
|
|
-- extensions of static web asset files, to be copied to the website
|
|
|
|
webassetexts = ["png", "gif", "cur", "js", "css", "eot", "ttf", "woff", "svg"]
|
2018-04-28 06:29:26 +03:00
|
|
|
|
2019-01-20 01:49:20 +03:00
|
|
|
-- The directory in which to find this man page.
|
2016-04-16 13:47:00 +03:00
|
|
|
-- hledger.1 -> hledger/doc, hledger_journal.5 -> hledger-lib/doc
|
|
|
|
manpageDir m
|
2017-12-07 05:16:35 +03:00
|
|
|
| '_' `elem` m = "hledger-lib"
|
|
|
|
| otherwise = dropExtension m
|
|
|
|
|
2019-01-20 01:49:20 +03:00
|
|
|
-- The directory in which to find this manual.
|
2017-12-07 05:16:35 +03:00
|
|
|
-- hledger -> hledger, hledger_journal -> hledger-lib
|
|
|
|
manualDir m
|
|
|
|
| '_' `elem` m = "hledger-lib"
|
|
|
|
| otherwise = m
|
2016-04-08 17:01:11 +03:00
|
|
|
|
2019-01-20 01:49:20 +03:00
|
|
|
-- The URI corresponding to this man page.
|
2016-04-08 17:01:11 +03:00
|
|
|
-- hledger.1 -> hledger, hledger_journal.5 -> journal
|
|
|
|
manpageNameToUri m | "hledger_" `isPrefixOf` m = dropExtension $ drop 8 m
|
|
|
|
| otherwise = dropExtension m
|
|
|
|
|
2019-01-20 01:49:20 +03:00
|
|
|
-- The man page corresponding to this URI.
|
2016-04-08 17:01:11 +03:00
|
|
|
-- hledger -> hledger.1, journal -> hledger_journal.5
|
|
|
|
manpageUriToName u | "hledger" `isPrefixOf` u = u <.> "1"
|
|
|
|
| otherwise = "hledger_" ++ u <.> "5"
|
|
|
|
|
2019-01-30 21:27:53 +03:00
|
|
|
-- MANUALS
|
|
|
|
|
2019-01-20 01:49:20 +03:00
|
|
|
-- Generate the manuals in nroff, plain text and info formats.
|
2019-02-12 00:07:06 +03:00
|
|
|
phony "manuals" $ need $ concat [
|
|
|
|
nroffmanuals
|
|
|
|
,infomanuals
|
|
|
|
,txtmanuals
|
|
|
|
,htmlmanuals
|
|
|
|
]
|
2016-04-16 13:47:00 +03:00
|
|
|
|
2019-01-20 01:49:20 +03:00
|
|
|
-- Generate nroff man pages suitable for man output.
|
2019-02-12 00:07:06 +03:00
|
|
|
phony "nroffmanuals" $ need nroffmanuals
|
2019-01-20 01:49:20 +03:00
|
|
|
nroffmanuals |%> \out -> do -- hledger/hledger.1
|
2019-02-05 02:04:57 +03:00
|
|
|
let src = manpageNameToManualName out <.> "m4.md"
|
|
|
|
commonm4 = "doc/common.m4"
|
|
|
|
dir = takeDirectory out
|
|
|
|
packagem4 = dir </> "defs.m4"
|
|
|
|
tmpl = "doc/manpage.nroff"
|
2016-04-16 20:09:51 +03:00
|
|
|
-- assume all other m4 files in dir are included by this one XXX not true in hledger-lib
|
|
|
|
deps <- liftIO $ filter (/= src) . filter (".m4.md" `isSuffixOf`) . map (dir </>) <$> S.getDirectoryContents dir
|
2019-02-05 02:04:57 +03:00
|
|
|
need $ [src, commonm4, packagem4, tmpl] ++ deps
|
2019-01-27 03:21:59 +03:00
|
|
|
when (dir=="hledger") $ need commandmds
|
2016-04-16 20:09:51 +03:00
|
|
|
cmd Shell
|
2019-02-05 02:04:57 +03:00
|
|
|
"m4 -P -DMAN -I" dir commonm4 packagem4 src "|"
|
2019-01-20 02:16:08 +03:00
|
|
|
pandoc fromsrcmd "-s" "--template" tmpl
|
2018-04-22 01:00:45 +03:00
|
|
|
"--lua-filter tools/pandoc-drop-html-blocks.lua"
|
2018-04-22 01:17:00 +03:00
|
|
|
"--lua-filter tools/pandoc-drop-html-inlines.lua"
|
2018-04-22 01:23:07 +03:00
|
|
|
"--lua-filter tools/pandoc-drop-links.lua"
|
2016-04-08 07:58:42 +03:00
|
|
|
"-o" out
|
2016-02-21 13:21:41 +03:00
|
|
|
|
2019-01-20 01:49:20 +03:00
|
|
|
-- Generate plain text manuals suitable for embedding in
|
|
|
|
-- executables and viewing with a pager.
|
|
|
|
phony "txtmanuals" $ need txtmanuals
|
|
|
|
txtmanuals |%> \out -> do -- hledger/hledger.txt
|
2017-12-07 07:53:36 +03:00
|
|
|
let src = manualNameToManpageName $ dropExtension out
|
2016-04-16 13:47:00 +03:00
|
|
|
need [src]
|
2016-06-12 07:34:20 +03:00
|
|
|
cmd Shell groff "-t -e -mandoc -Tascii" src "| col -bx >" out -- http://www.tldp.org/HOWTO/Man-Page/q10.html
|
2016-04-16 13:47:00 +03:00
|
|
|
|
2019-01-20 01:49:20 +03:00
|
|
|
-- Generate Info manuals suitable for viewing with info.
|
|
|
|
phony "infomanuals" $ need infomanuals
|
|
|
|
infomanuals |%> \out -> do -- hledger/hledger.info
|
2019-02-05 02:04:57 +03:00
|
|
|
let src = out -<.> "m4.md"
|
|
|
|
commonm4 = "doc/common.m4"
|
|
|
|
dir = takeDirectory out
|
|
|
|
packagem4 = dir </> "defs.m4"
|
2016-04-19 03:54:55 +03:00
|
|
|
-- assume all other m4 files in dir are included by this one XXX not true in hledger-lib
|
|
|
|
deps <- liftIO $ filter (/= src) . filter (".m4.md" `isSuffixOf`) . map (dir </>) <$> S.getDirectoryContents dir
|
2019-02-05 02:04:57 +03:00
|
|
|
need $ [src, commonm4, packagem4] ++ deps
|
2019-01-27 03:21:59 +03:00
|
|
|
when (dir=="hledger") $ need commandmds
|
2016-04-19 03:54:55 +03:00
|
|
|
cmd Shell
|
2019-02-05 02:04:57 +03:00
|
|
|
"m4 -P -I" dir commonm4 packagem4 src "|"
|
2019-01-20 02:16:08 +03:00
|
|
|
pandoc fromsrcmd
|
2018-04-22 01:00:45 +03:00
|
|
|
"--lua-filter tools/pandoc-drop-html-blocks.lua"
|
2018-04-22 01:17:00 +03:00
|
|
|
"--lua-filter tools/pandoc-drop-html-inlines.lua"
|
2018-04-22 01:23:07 +03:00
|
|
|
"--lua-filter tools/pandoc-drop-links.lua"
|
2016-04-19 03:54:55 +03:00
|
|
|
"-t texinfo |"
|
|
|
|
makeinfo "--force --no-split -o" out
|
|
|
|
|
2016-04-16 13:47:00 +03:00
|
|
|
|
2019-01-20 01:49:20 +03:00
|
|
|
-- WEBSITE MARKDOWN SOURCE
|
2016-04-16 13:47:00 +03:00
|
|
|
|
2019-01-20 01:49:20 +03:00
|
|
|
-- Generate the individual web manuals' markdown source, using m4
|
|
|
|
-- and pandoc to tweak content.
|
2019-02-12 00:07:06 +03:00
|
|
|
phony "mdmanuals" $ need mdmanuals
|
|
|
|
mdmanuals |%> \out -> do -- site/hledger.md
|
2019-02-05 02:04:57 +03:00
|
|
|
let manpage = manpageUriToName $ dropExtension $ takeFileName out -- hledger
|
|
|
|
manual = manpageNameToManualName manpage
|
|
|
|
dir = manpageDir manpage
|
|
|
|
src = dir </> manual <.> "m4.md"
|
|
|
|
commonm4 = "doc/common.m4"
|
|
|
|
packagem4 = dir </> "defs.m4"
|
|
|
|
heading = let h = manual
|
|
|
|
in if "hledger_" `isPrefixOf` h
|
|
|
|
then drop 8 h ++ " format"
|
|
|
|
else h
|
2016-04-16 20:09:51 +03:00
|
|
|
-- assume all other m4 files in dir are included by this one XXX not true in hledger-lib
|
|
|
|
deps <- liftIO $ filter (/= src) . filter (".m4.md" `isSuffixOf`) . map (dir </>) <$> S.getDirectoryContents dir
|
2019-02-05 02:04:57 +03:00
|
|
|
need $ [src, commonm4, packagem4] ++ deps
|
2019-01-27 03:21:59 +03:00
|
|
|
when (manual=="hledger") $ need commandmds
|
2016-04-09 23:36:48 +03:00
|
|
|
liftIO $ writeFile out $ "# " ++ heading ++ "\n\n"
|
2016-04-16 20:09:51 +03:00
|
|
|
cmd Shell
|
2019-02-05 02:04:57 +03:00
|
|
|
"m4 -P -DMAN -DWEB -I" dir commonm4 packagem4 src "|"
|
2019-01-20 02:16:08 +03:00
|
|
|
pandoc fromsrcmd towebmd
|
2018-04-18 05:25:06 +03:00
|
|
|
"--lua-filter tools/pandoc-demote-headers.lua"
|
2016-04-09 23:36:48 +03:00
|
|
|
">>" out
|
2016-02-21 13:21:41 +03:00
|
|
|
|
2019-01-20 04:31:03 +03:00
|
|
|
-- Copy some extra markdown files from the main repo into the site
|
|
|
|
-- TODO adding table of contents placeholders
|
2019-04-25 18:01:00 +03:00
|
|
|
[
|
|
|
|
-- "site/README.md",
|
2019-04-25 18:10:06 +03:00
|
|
|
-- "site/CONTRIBUTING.md"
|
2019-04-25 18:01:00 +03:00
|
|
|
] |%> \out ->
|
2019-01-20 02:42:43 +03:00
|
|
|
copyFile' (dropDirectory1 out) out -- XXX (map toLower out)
|
2016-04-16 15:55:16 +03:00
|
|
|
|
2019-01-20 01:49:20 +03:00
|
|
|
-- WEBSITE HTML & ASSETS
|
|
|
|
|
2019-02-10 04:49:28 +03:00
|
|
|
phony "website" $ need [
|
|
|
|
"webassets"
|
|
|
|
,"mainpages"
|
2019-02-12 00:07:06 +03:00
|
|
|
,"htmlmanuals"
|
|
|
|
]
|
|
|
|
|
|
|
|
phony "website-all" $ need [
|
|
|
|
"website"
|
|
|
|
,"oldmanuals"
|
2019-02-10 04:49:28 +03:00
|
|
|
]
|
2019-01-20 01:49:20 +03:00
|
|
|
|
|
|
|
-- copy all static asset files (files with certain extensions
|
|
|
|
-- found under sites, plus one or two more) to sites/_site/
|
|
|
|
phony "webassets" $ do
|
|
|
|
assets <- getDirectoryFiles "site" (map ("//*" <.>) webassetexts)
|
2018-04-28 06:29:26 +03:00
|
|
|
need [ "site/_site" </> file
|
2019-01-20 01:49:20 +03:00
|
|
|
| file <- assets ++ [
|
|
|
|
"files/README"
|
|
|
|
]
|
2018-04-28 06:29:26 +03:00
|
|
|
, not ("_site//*" ?== file)
|
|
|
|
]
|
|
|
|
|
2019-01-20 01:49:20 +03:00
|
|
|
-- copy any one of the static asset files to sites/_site/
|
|
|
|
"site/_site/files/README" : [ "site/_site//*" <.> ext | ext <- webassetexts ] |%> \out -> do
|
|
|
|
copyFile' ("site" </> dropDirectory2 out) out
|
2018-05-06 08:18:58 +03:00
|
|
|
|
2019-02-08 15:14:10 +03:00
|
|
|
-- render all web pages from the main repo (manuals, home, download, relnotes etc) as html, saved in site/_site/
|
|
|
|
phony "mainpages" $ need mainpageshtml
|
|
|
|
|
2019-02-12 00:07:06 +03:00
|
|
|
phony "htmlmanuals" $ need htmlmanuals
|
|
|
|
|
|
|
|
phony "oldmanuals" $ need oldhtmlmanuals
|
|
|
|
|
2019-08-24 14:32:54 +03:00
|
|
|
-- Render one website page as html, saved in sites/_site/.
|
|
|
|
-- Github-style wiki links will be hyperlinked.
|
2018-05-06 08:18:58 +03:00
|
|
|
"site/_site//*.html" %> \out -> do
|
2019-02-10 06:22:00 +03:00
|
|
|
let filename = takeBaseName out
|
|
|
|
pagename = fileNameToPageName filename
|
2019-05-18 06:59:44 +03:00
|
|
|
isdownloadpage = filename == "download"
|
2019-02-12 00:07:06 +03:00
|
|
|
isoldmanual = "site/_site/doc/" `isPrefixOf` out
|
2019-02-08 15:14:10 +03:00
|
|
|
source
|
2019-02-12 00:07:06 +03:00
|
|
|
| isoldmanual = "site" </> (drop 11 $ dropExtension out) <.> "md"
|
|
|
|
| otherwise = "site" </> filename <.> "md"
|
2019-02-10 06:22:00 +03:00
|
|
|
template = "site/site.tmpl"
|
|
|
|
siteRoot = if "site/_site/doc//*" ?== out then "../.." else "."
|
2018-05-19 00:50:54 +03:00
|
|
|
need [source, template]
|
2019-08-26 03:00:04 +03:00
|
|
|
-- read markdown source, link any wikilinks, pipe it to pandoc, write html out
|
|
|
|
Stdin . wikiLink <$> (readFile' source) >>=
|
2019-02-12 00:07:06 +03:00
|
|
|
(cmd Shell pandoc "-" fromsrcmd "-t html"
|
2019-02-10 06:22:00 +03:00
|
|
|
"--template" template
|
|
|
|
("--metadata=siteRoot:" ++ siteRoot)
|
|
|
|
("--metadata=\"title:" ++ pagename ++ "\"")
|
|
|
|
"-o" out )
|
2018-05-06 08:18:58 +03:00
|
|
|
|
2019-03-06 18:59:51 +03:00
|
|
|
-- This rule, for updating the live hledger.org site, gets called by:
|
|
|
|
-- 1. github-post-receive (github webhook handler), when something is pushed
|
2019-08-24 14:32:54 +03:00
|
|
|
-- to the main repo on Github. Config:
|
2019-03-06 18:59:51 +03:00
|
|
|
-- /etc/supervisord.conf -> [program:github-post-receive]
|
|
|
|
-- /etc/github-post-receive.conf
|
|
|
|
-- 2. cron, nightly. Config: /etc/crontab
|
|
|
|
-- 3. manually (make site).
|
|
|
|
phony "hledgerorg" $ do
|
2019-03-06 20:24:44 +03:00
|
|
|
-- XXX ideally we would ensure here that output is logged in site.log,
|
|
|
|
-- but I don't know how to do that for the Shake rules.
|
|
|
|
-- Instead we'll do the logging in "make site".
|
2019-03-06 18:59:51 +03:00
|
|
|
cmd_ Shell
|
|
|
|
|
|
|
|
-- print timestamp. On mac, use brew-installed GNU date.
|
2019-03-06 20:24:44 +03:00
|
|
|
"PATH=\"/usr/local/opt/coreutils/libexec/gnubin:$PATH\" date --rfc-3339=seconds"
|
2019-08-25 16:26:17 +03:00
|
|
|
-- pull latest code and site repos - sometimes already done by webhook, not always
|
|
|
|
"&& printf 'code repo: ' && git pull"
|
2019-08-26 19:34:46 +03:00
|
|
|
"&& printf 'site repo: ' && git -C site pull"
|
2019-03-06 18:59:51 +03:00
|
|
|
|
|
|
|
-- Shake.hs might have been updated, but we won't execute the
|
|
|
|
-- new one, too insecure. Continue with this one.
|
|
|
|
|
|
|
|
-- update the live site based on all latest content
|
|
|
|
need [ "website-all" ]
|
|
|
|
|
2019-01-30 21:27:53 +03:00
|
|
|
-- HLEDGER PACKAGES/EXECUTABLES
|
|
|
|
|
2019-01-30 23:45:09 +03:00
|
|
|
phony "build" $ need packages
|
2019-01-30 21:27:53 +03:00
|
|
|
|
2019-01-30 23:45:09 +03:00
|
|
|
-- build any of the hledger packages, after generating any doc
|
|
|
|
-- files they embed or import.
|
2019-01-30 21:27:53 +03:00
|
|
|
sequence_ [ phony pkg $ do
|
|
|
|
need $ fromMaybe [] $ lookup pkg embeddedFiles
|
|
|
|
cmd Shell "stack build " pkg
|
|
|
|
| pkg <- packages ]
|
|
|
|
|
2019-01-31 04:55:56 +03:00
|
|
|
phony "commandhelp" $ need commandtxts
|
2019-07-15 13:28:52 +03:00
|
|
|
|
2019-01-30 21:27:53 +03:00
|
|
|
commandtxts |%> \out -> do
|
|
|
|
let src = out -<.> "md"
|
|
|
|
need [src]
|
|
|
|
cmd Shell
|
2019-01-31 19:34:49 +03:00
|
|
|
pandoc fromsrcmd src "--lua-filter" "tools/pandoc-dedent-code-blocks.lua" "-t plain" ">" out
|
2019-01-20 01:49:20 +03:00
|
|
|
|
2019-02-01 04:36:52 +03:00
|
|
|
-- CHANGELOGS
|
|
|
|
|
|
|
|
let
|
|
|
|
-- git log showing short commit hashes
|
|
|
|
gitlog = "git log --abbrev-commit"
|
|
|
|
|
|
|
|
-- git log formats suitable for changelogs/release notes
|
|
|
|
-- %s=subject, %an=author name, %n=newline if needed, %w=width/indent1/indent2, %b=body, %h=hash
|
|
|
|
changelogGitFormat = "--pretty=format:'- %s (%an)%n%w(0,2,2)%b'"
|
|
|
|
-- changelogVerboseGitFormat = "--pretty=format:'- %s (%an)%n%w(0,2,2)%b%h' --stat"
|
|
|
|
|
|
|
|
-- Format a git log message, with one of the formats above, as a changelog item
|
|
|
|
changelogCleanupCmd = unwords [
|
2019-02-05 05:47:27 +03:00
|
|
|
sed
|
2019-02-01 04:36:52 +03:00
|
|
|
,"-e 's/^( )*\\* /\1- /'" -- ensure bullet lists in descriptions use hyphens not stars
|
|
|
|
,"-e 's/ \\(Simon Michael\\)//'" -- strip maintainer's author name
|
|
|
|
,"-e 's/^- (doc: *)?(updated? *)?changelogs?( *updates?)?$//'" -- strip some variants of "updated changelog"
|
|
|
|
,"-e 's/^ +\\[ci skip\\] *$//'" -- strip [ci skip] lines
|
|
|
|
,"-e 's/^ +$//'" -- replace lines containing only spaces with empty lines
|
|
|
|
-- ,"-e 's/\r//'" -- strip windows carriage returns (XXX \r untested. IDEA doesn't like a real ^M here)
|
|
|
|
,"-e '/./,/^$/!d'" -- replace consecutive newlines with one
|
|
|
|
]
|
|
|
|
|
|
|
|
-- Things to exclude when doing git log for project-wide changelog.
|
|
|
|
-- git exclude pathspecs, https://git-scm.com/docs/gitglossary.html#gitglossary-aiddefpathspecapathspec
|
|
|
|
projectChangelogExcludeDirs = unwords [
|
|
|
|
":!hledger-lib"
|
|
|
|
,":!hledger"
|
|
|
|
,":!hledger-ui"
|
|
|
|
,":!hledger-web"
|
|
|
|
,":!hledger-api"
|
|
|
|
,":!tests"
|
|
|
|
]
|
|
|
|
|
|
|
|
-- update all changelogs with latest commits
|
|
|
|
phony "changelogs" $ need changelogs
|
|
|
|
|
|
|
|
-- show the changelogs updates that would be written
|
|
|
|
-- phony "changelogs-dry" $ need changelogsdry
|
|
|
|
|
2019-02-05 18:31:06 +03:00
|
|
|
-- [PKG/]CHANGES.md[-dry] <- git log
|
2019-02-01 04:36:52 +03:00
|
|
|
-- Add commits to the specified changelog since the tag/commit in
|
|
|
|
-- the topmost heading, also removing that previous heading if it
|
|
|
|
-- was an interim heading (a commit hash). Or (the -dry variants)
|
|
|
|
-- just print the new changelog items to stdout without saving.
|
|
|
|
phonys (\out' -> if
|
2019-02-05 18:31:06 +03:00
|
|
|
| not $ out' `elem` (changelogs ++ map (++"-dry") changelogs) -> Nothing
|
2019-02-01 04:36:52 +03:00
|
|
|
| otherwise -> Just $ do
|
|
|
|
let (out, dryrun) | "-dry" `isSuffixOf` out' = (take (length out' - 4) out', True)
|
|
|
|
| otherwise = (out', False)
|
|
|
|
old <- liftIO $ lines <$> readFileStrictly out
|
|
|
|
|
|
|
|
let dir = takeDirectory out
|
|
|
|
pkg | dir=="." = Nothing
|
|
|
|
| otherwise = Just dir
|
|
|
|
gitlogpaths = fromMaybe projectChangelogExcludeDirs pkg
|
|
|
|
isnotheading = not . ("#" `isPrefixOf`)
|
|
|
|
iscommithash s = length s > 6 && all isAlphaNum s
|
|
|
|
(preamble, oldheading:rest) = span isnotheading old
|
|
|
|
lastversion = words oldheading !! 1
|
|
|
|
lastrev | iscommithash lastversion = lastversion
|
|
|
|
| otherwise = fromMaybe "hledger" pkg ++ "-" ++ lastversion
|
2019-08-19 13:44:00 +03:00
|
|
|
excludeboring = "--invert-grep --grep '^;'" -- ignore commits beginning with ;
|
2019-02-01 04:36:52 +03:00
|
|
|
|
|
|
|
headrev <- unwords . words . fromStdout <$>
|
|
|
|
(cmd Shell gitlog "-1 --pretty=%h -- " gitlogpaths :: Action (Stdout String))
|
|
|
|
|
|
|
|
if headrev == lastrev
|
|
|
|
then liftIO $ putStrLn $ out ++ ": up to date"
|
|
|
|
else do
|
|
|
|
newitems <- fromStdout <$>
|
2019-08-19 13:44:00 +03:00
|
|
|
(cmd Shell gitlog changelogGitFormat (lastrev++"..") excludeboring "--" gitlogpaths
|
2019-02-01 04:36:52 +03:00
|
|
|
"|" changelogCleanupCmd :: Action (Stdout String))
|
|
|
|
let newcontent = "# "++headrev++"\n\n" ++ newitems
|
|
|
|
newfile = unlines $ concat [
|
|
|
|
preamble
|
|
|
|
,[newcontent]
|
|
|
|
,if iscommithash lastrev then [] else [oldheading]
|
|
|
|
,rest
|
|
|
|
]
|
|
|
|
liftIO $ if dryrun
|
|
|
|
then putStr newcontent
|
2019-07-25 10:46:13 +03:00
|
|
|
else do
|
|
|
|
writeFile out newfile
|
|
|
|
putStrLn $ out ++ ": updated to " ++ headrev
|
2019-02-01 04:36:52 +03:00
|
|
|
)
|
|
|
|
|
2019-02-05 18:31:06 +03:00
|
|
|
-- [PKG/]CHANGES.md-finalise <- PKG/.version
|
|
|
|
-- Converts the specified changelog's topmost heading, if it is an
|
|
|
|
-- interim heading (a commit hash), to a permanent heading
|
|
|
|
-- containing the intended release version (from .version) and
|
|
|
|
-- today's date. For the project CHANGES.md, the version number
|
|
|
|
-- in hledger/.version is used.
|
|
|
|
phonys (\out' -> let suffix = "-finalise" in if
|
|
|
|
| not $ out' `elem` (map (++suffix) changelogs) -> Nothing
|
|
|
|
| otherwise -> Just $ do
|
|
|
|
let
|
|
|
|
out = take (length out' - length suffix) out'
|
|
|
|
versiondir = case takeDirectory out of
|
|
|
|
"." -> "hledger"
|
|
|
|
d -> d
|
|
|
|
versionfile = versiondir </> ".version"
|
|
|
|
need [versionfile]
|
|
|
|
version <- ((head . words) <$>) $ liftIO $ readFile versionfile
|
|
|
|
old <- liftIO $ readFileStrictly out
|
|
|
|
date <- liftIO getCurrentDay
|
|
|
|
let (before, _:after) = break ("# " `isPrefixOf`) $ lines old
|
|
|
|
new = unlines $ before ++ ["# "++version++" "++show date] ++ after
|
2019-07-25 10:46:13 +03:00
|
|
|
liftIO $ do
|
|
|
|
writeFile out new
|
|
|
|
putStrLn $ out ++ ": updated to " ++ version
|
2019-02-05 18:31:06 +03:00
|
|
|
)
|
|
|
|
|
2019-02-05 05:47:27 +03:00
|
|
|
-- VERSION NUMBERS
|
|
|
|
|
|
|
|
-- Given the desired version string saved in PKG/.version, update
|
|
|
|
-- it everywhere needed in the package. See also CONTRIBUTING.md >
|
|
|
|
-- Version numbers.
|
|
|
|
|
|
|
|
let inAllPackages f = map (</> f) packages
|
|
|
|
|
|
|
|
phony "setversion" $ need $
|
|
|
|
inAllPackages "defs.m4"
|
|
|
|
++ inAllPackages "package.yaml"
|
|
|
|
|
|
|
|
-- PKG/defs.m4 <- PKG/.version
|
|
|
|
"hledger*/defs.m4" %> \out -> do
|
|
|
|
let versionfile = takeDirectory out </> ".version"
|
|
|
|
need [versionfile]
|
|
|
|
version <- ((head . words) <$>) $ liftIO $ readFile versionfile
|
2019-02-05 22:56:51 +03:00
|
|
|
cmd_ Shell sed "-i -e" ("'s/(_version_}}, *)\\{\\{[^}]+/\\1{{"++version++"/'") out
|
2019-02-05 05:47:27 +03:00
|
|
|
|
|
|
|
-- PKG/package.yaml <- PKG/.version
|
|
|
|
"hledger*/package.yaml" %> \out -> do
|
|
|
|
let versionfile = takeDirectory out </> ".version"
|
|
|
|
need [versionfile]
|
|
|
|
version <- ((head . words) <$>) $ liftIO $ readFile versionfile
|
|
|
|
let ma:jor:_ = splitOn "." version
|
|
|
|
nextmajorversion = intercalate "." $ ma : (show $ read jor+1) : []
|
|
|
|
|
|
|
|
-- One simple task: update some strings in a small text file.
|
|
|
|
-- Several ugly solutions:
|
|
|
|
--
|
|
|
|
-- 1. use haskell list utils. Tedious.
|
|
|
|
-- old <- liftIO $ readFileStrictly out
|
|
|
|
-- let isversionline s = "version" `isPrefixOf` (dropWhile isSpace $ takeWhile (not.(`elem` " :")) s)
|
|
|
|
-- (before, _:after) = break isversionline $ lines old
|
|
|
|
-- -- oldversion = words versionline !! 1
|
|
|
|
-- new = unlines $ before ++ ["version: "++version] ++ after
|
|
|
|
-- liftIO $ writeFile out new
|
|
|
|
--
|
|
|
|
-- 2. use regular expressions in haskell. Haskell has no portable,
|
|
|
|
-- featureful, replacing, backreference-supporting regex lib yet.
|
|
|
|
--
|
|
|
|
-- 3. use sed. Have to assume non-GNU sed, eg on mac.
|
|
|
|
|
|
|
|
-- Things to update in package.yaml:
|
|
|
|
--
|
|
|
|
-- version: VER
|
|
|
|
cmd_ Shell sed "-i -e" ("'s/(^version *:).*/\\1 "++version++"/'") out
|
|
|
|
--
|
|
|
|
-- -DVERSION="VER"
|
|
|
|
cmd_ Shell sed "-i -e" ("'s/(-DVERSION=)\"[^\"]+/\\1\""++version++"/'") out
|
|
|
|
--
|
|
|
|
-- this package's dependencies on other hledger packages (typically hledger-lib, hledger)
|
|
|
|
--
|
|
|
|
-- This one is a bit tricky, and we do it with these limitations:
|
|
|
|
-- a. We handle bounds in one of these forms (allowing extra whitespace):
|
|
|
|
-- ==A
|
|
|
|
-- >A
|
|
|
|
-- >=A
|
|
|
|
-- >A && <B
|
|
|
|
-- >=A && <B
|
|
|
|
-- b. We set
|
|
|
|
-- the new lower bound to: this package's new version, V
|
|
|
|
-- the new upper bound if any, to: the next major version after V
|
|
|
|
-- both of which may not be what's desired.
|
|
|
|
-- c. We convert > bounds to >= bounds.
|
|
|
|
--
|
|
|
|
-- hledger[-PKG] ==LOWER
|
|
|
|
let versionre = "([0-9]+\\.)*[0-9]+" -- 2 or 3 part version number regexp
|
|
|
|
cmd_ Shell sed "-i -e" ("'s/(hledger(-[a-z]+)?) *== *"++versionre++" *$/\\1 == "++version++"/'") out
|
|
|
|
--
|
|
|
|
-- hledger[-PKG] >[=]LOWER
|
|
|
|
cmd_ Shell sed "-i -e" ("'s/(hledger(-[a-z]+)?) *>=? *"++versionre++" *$/\\1 >= "++version++"/'") out
|
|
|
|
--
|
|
|
|
-- hledger[-PKG] >[=]LOWER && <UPPER
|
|
|
|
let
|
|
|
|
pat = "(hledger(-[a-z]+)?) *>=? *"++versionre++" *&& *< *"++versionre++" *$"
|
|
|
|
rpl = "\\1 >="++version++" \\&\\& <"++nextmajorversion -- This was a beast. These ampersands must be backslash-escaped.
|
|
|
|
arg = "'s/"++pat++"/"++rpl++"/'"
|
|
|
|
cmd_ Shell sed "-i -e" arg out
|
|
|
|
|
|
|
|
-- tagrelease: \
|
|
|
|
-- $(call def-help,tagrelease, commit a release tag based on $(VERSIONFILE) for each package )
|
|
|
|
-- for p in $(PACKAGES); do git tag -f $$p-$(VERSION); done
|
2019-07-15 13:28:52 +03:00
|
|
|
|
2019-01-20 01:49:20 +03:00
|
|
|
-- MISC
|
|
|
|
|
|
|
|
-- Generate the web manuals based on the current checkout and save
|
|
|
|
-- them as the specified versioned snapshot in site/doc/VER/ .
|
|
|
|
-- .snapshot is a dummy file.
|
|
|
|
"site/doc/*/.snapshot" %> \out -> do
|
2019-08-26 03:16:12 +03:00
|
|
|
need mdmanuals
|
2019-01-20 01:49:20 +03:00
|
|
|
let snapshot = takeDirectory out
|
2019-02-10 04:49:28 +03:00
|
|
|
cmd_ Shell "mkdir -p" snapshot
|
2019-02-12 00:07:06 +03:00
|
|
|
forM_ mdmanuals $ \f -> -- site/hledger.md, site/journal.md
|
2019-02-10 04:49:28 +03:00
|
|
|
cmd_ Shell "cp" f (snapshot </> takeFileName f)
|
|
|
|
cmd_ Shell "cp -r site/images" snapshot
|
|
|
|
cmd_ Shell "touch" out
|
2016-04-06 01:40:59 +03:00
|
|
|
|
2019-02-05 05:47:27 +03:00
|
|
|
-- Cleanup.
|
|
|
|
|
2016-02-21 13:21:41 +03:00
|
|
|
phony "clean" $ do
|
2019-02-26 21:14:03 +03:00
|
|
|
-- putNormal "Cleaning generated help texts, manuals, staged site content"
|
|
|
|
-- removeFilesAfter "." commandtxts
|
|
|
|
putNormal "Cleaning generated manuals, staged site content"
|
2019-02-12 00:07:06 +03:00
|
|
|
removeFilesAfter "." mdmanuals
|
2019-04-25 18:01:00 +03:00
|
|
|
removeFilesAfter "." [
|
|
|
|
-- "site/README.md",
|
2019-04-25 18:10:06 +03:00
|
|
|
-- "site/CONTRIBUTING.md"
|
2019-04-25 18:01:00 +03:00
|
|
|
]
|
doc: experimental m4-based man page build process
The new m4manpages, m4webmanpages targets generate nroff and markdown
man pages via an alternate, excitingly complicated process, involving
shake, hakyll, pandoc *and* m4. Currently just the hledger man page is
processed this way, and the output (hledger/doc/m4-hledger.1,
site/m4-hledger.1.md) is equivalent to that of the non-m4 process.
Pro: selecting and massaging web/man content may be smoother with m4
than with pandoc filters. File inclusion allows documentation to be
broken up into chunks, which may be easier to edit, reorganize and
reuse. Macros could reduce boilerplate and enable more featureful and
attractive docs.
Con: the non-m4 process was simpler, easier to for contributors to
understand and working well enough. YAGNI.
2016-04-06 18:23:12 +03:00
|
|
|
|
|
|
|
phony "Clean" $ do
|
|
|
|
need ["clean"]
|
2019-02-01 21:19:12 +03:00
|
|
|
putNormal "Cleaning generated site content, object files, shake build cache"
|
2016-04-10 00:24:33 +03:00
|
|
|
removeFilesAfter "site" ["_*"]
|
2017-03-27 14:39:00 +03:00
|
|
|
removeFilesAfter "tools" ["*.o","*.p_o","*.hi"]
|
2016-04-10 00:24:33 +03:00
|
|
|
removeFilesAfter "site" ["*.o","*.p_o","*.hi"]
|
2016-04-13 06:32:01 +03:00
|
|
|
removeFilesAfter ".shake" ["//*"]
|
2019-01-20 00:14:33 +03:00
|
|
|
|
|
|
|
|
2019-01-20 01:49:20 +03:00
|
|
|
-- Convert numbered man page names to manual names.
|
|
|
|
-- hledger.1 -> hledger, hledger_journal.5 -> hledger_journal
|
|
|
|
manpageNameToManualName = dropNumericSuffix
|
|
|
|
where
|
|
|
|
dropNumericSuffix s = reverse $
|
|
|
|
case reverse s of
|
|
|
|
c : '.' : cs | isDigit c -> cs
|
|
|
|
cs -> cs
|
|
|
|
|
|
|
|
-- Convert manual names to numbered man page names.
|
|
|
|
-- hledger -> hledger.1, hledger_journal -> hledger_journal.5
|
|
|
|
manualNameToManpageName s
|
|
|
|
| '_' `elem` s = s <.> "5"
|
|
|
|
| otherwise = s <.> "1"
|
|
|
|
|
2019-01-20 00:14:33 +03:00
|
|
|
dropDirectory2 = dropDirectory1 . dropDirectory1
|
|
|
|
|
2019-02-01 04:36:52 +03:00
|
|
|
readFileStrictly :: FilePath -> IO String
|
|
|
|
readFileStrictly f = readFile f >>= \s -> C.evaluate (length s) >> return s
|
|
|
|
|
2019-02-05 18:31:06 +03:00
|
|
|
-- | Get the current local date.
|
|
|
|
getCurrentDay :: IO Day
|
|
|
|
getCurrentDay = do
|
|
|
|
t <- getZonedTime
|
|
|
|
return $ localDay (zonedTimeToLocalTime t)
|
2019-02-08 22:32:37 +03:00
|
|
|
|
2019-02-12 00:07:06 +03:00
|
|
|
-- markdown helpers
|
|
|
|
|
2019-02-10 06:22:00 +03:00
|
|
|
type Markdown = String
|
|
|
|
|
2019-02-12 00:07:06 +03:00
|
|
|
-- | Prepend a markdown heading.
|
|
|
|
addHeading :: String -> Markdown -> Markdown
|
|
|
|
addHeading h = (("# "++h++"\n\n")++)
|
|
|
|
|
2019-02-08 22:32:37 +03:00
|
|
|
-- | Convert Github-style wikilinks to hledger website links.
|
2019-02-12 00:07:06 +03:00
|
|
|
wikiLink :: Markdown -> Markdown
|
|
|
|
wikiLink =
|
2019-02-08 22:32:37 +03:00
|
|
|
replaceBy wikilinkre wikilinkReplace .
|
|
|
|
replaceBy labelledwikilinkre labelledwikilinkReplace
|
2019-07-15 13:28:52 +03:00
|
|
|
|
2019-02-12 00:07:06 +03:00
|
|
|
-- regex stuff
|
|
|
|
|
2019-02-08 22:32:37 +03:00
|
|
|
-- couldn't figure out how to use match subgroups, so we don't
|
|
|
|
-- wikilinkre = [re|\[\[$([^]]+)]]|] -- [[A]]
|
|
|
|
-- labelledwikilinkre = [re|\[\[$([^(|)]+)\|$([^]]*)\]\]|] -- [[A|B]]
|
|
|
|
wikilinkre = [re|\[\[[^]]+]]|] -- [[A]]
|
|
|
|
labelledwikilinkre = [re|\[\[[^(|)]+\|[^]]*\]\]|] -- [[A|B]]. The | is parenthesised to avoid ending the quasiquoter
|
|
|
|
|
|
|
|
-- wikilinkReplace _ loc@RELocation{locationCapture} cap@Capture{capturedText} =
|
|
|
|
wikilinkReplace _ _ Capture{capturedText} =
|
|
|
|
-- trace (show (loc,cap)) $
|
|
|
|
Just $ "["++name++"]("++uri++")"
|
|
|
|
where
|
|
|
|
name = init $ init $ drop 2 capturedText
|
2019-02-10 06:22:00 +03:00
|
|
|
uri = pageNameToUri name
|
2019-02-08 22:32:37 +03:00
|
|
|
|
|
|
|
-- labelledwikilinkReplace _ loc@RELocation{locationCapture} cap@Capture{capturedText} =
|
|
|
|
labelledwikilinkReplace _ _ Capture{capturedText} =
|
|
|
|
Just $ "["++label++"]("++uri++")"
|
|
|
|
where
|
|
|
|
[label,name] = take 2 $ (splitOn "|" $ init $ init $ drop 2 capturedText) ++ [""]
|
2019-02-10 06:22:00 +03:00
|
|
|
uri = pageNameToUri name
|
|
|
|
|
|
|
|
pageNameToUri = (++".html") . intercalate "-" . words
|
2019-02-08 22:32:37 +03:00
|
|
|
|
2019-02-10 06:22:00 +03:00
|
|
|
fileNameToPageName = unwords . splitOn "-"
|
2019-02-08 22:32:37 +03:00
|
|
|
|
|
|
|
-- | Easier regex replace helper. Replaces each occurrence of a
|
|
|
|
-- regular expression in src, by transforming each matched text with
|
|
|
|
-- the given function.
|
|
|
|
replaceBy re f src = replaceAllCaptures TOP f $ src *=~ re
|
|
|
|
|
|
|
|
-- not powerful enough, saved for reference:
|
|
|
|
-- wikify = (*=~/ wikilinkreplace) . (*=~/ labelledwikilinkreplace)
|
|
|
|
-- where
|
|
|
|
-- -- [[A]] -> [A](.../A)
|
|
|
|
-- wikilinkreplace :: SearchReplace RE String
|
|
|
|
-- wikilinkreplace = [ed|\[\[$([^]]+)]]///[$1]($1.html)|]
|
|
|
|
-- -- [[A|B]] -> [A](.../B)
|
|
|
|
-- labelledwikilinkreplace :: SearchReplace RE String
|
|
|
|
-- labelledwikilinkreplace = [ed|\[\[$([^(|)]+)\|$([^]]*)\]\]///[$1]($2.html)|]
|