diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2024-05-15 19:57:17 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2024-05-17 21:46:11 +0200 |
commit | d184f575fca70296a411240b5ba6ed222eeaa420 (patch) | |
tree | 542eee7eca03c0ef3f3225b952c7d8b134b1c274 /annual | |
parent | f43068ca50cb21c582d680f7856ead034f9abb1a (diff) |
Annual 2024. Create Makefile and sycn script
Diffstat (limited to 'annual')
-rw-r--r-- | annual/2024/Makefile | 56 | ||||
-rw-r--r-- | annual/2024/pre.sed | 1 | ||||
-rwxr-xr-x | annual/2024/sync | 18 |
3 files changed, 75 insertions, 0 deletions
diff --git a/annual/2024/Makefile b/annual/2024/Makefile new file mode 100644 index 0000000..352b861 --- /dev/null +++ b/annual/2024/Makefile @@ -0,0 +1,56 @@ +#!/usr/bin/env make -f +# +# Makefile for Fripost annual meeting + +SLIDES = agenda +MINUTES = minutes +POLICY = annual-report operational-plan +TRG = 2024-05-19-annual operational-plan-2024 + +# General (reusable) compilation and processing commands + +ALL = \ + $(addsuffix .pdf, $(SLIDES)) \ + $(addsuffix .pdf, $(POLICY)) \ + $(addsuffix .pdf, $(MINUTES)) \ + $(addsuffix .pdf, $(TRG)) + +all: $(ALL) + +$(addsuffix .pdf, $(SLIDES)): %.pdf: %.md + pandoc -s -f markdown -t beamer -o $@ < $< + +$(addsuffix .pdf, $(MINUTES)): %.pdf: %.yml %.md + pandoc -f markdown -t latex \ + --template=fripost-minutes --metadata-file=$*.yml -o $@ $*.md + +$(addsuffix .pdf, $(POLICY)): %.pdf: %.yml %.md + pandoc -f markdown -t latex \ + --template=fripost-by-laws --metadata-file=$*.yml -o $@ $*.md + +send: + make -f ../../resources/Makefile-common \ + send SEND_FILES="$(TRG)" + +clean: + rm -f $(ALL) + rm -f *~ + +# Specific commands for this year 2023 + +2024-05-19-annual.pdf: \ + minutes.pdf \ + annual-report.pdf \ + Balans-och-resultat-2023.pdf \ + revision2023.pdf \ + operational-plan.pdf \ + motions/operational-policy.pdf + pdftk $^ cat output $@ + +motions/example.pdf: + make -C $(dir $@) + +operational-plan-2024.pdf: \ + operational-plan.pdf \ + ../../by-laws/operational-policy-2023.pdf + pdftk $^ cat output $@ diff --git a/annual/2024/pre.sed b/annual/2024/pre.sed new file mode 100644 index 0000000..dabfef0 --- /dev/null +++ b/annual/2024/pre.sed @@ -0,0 +1 @@ +1 i `\\thispagestyle{fancy}`{=latex}\n diff --git a/annual/2024/sync b/annual/2024/sync new file mode 100755 index 0000000..da7b734 --- /dev/null +++ b/annual/2024/sync @@ -0,0 +1,18 @@ +#!/usr/bin/env bash + +# Sync a set of sources with a Git repository target. Set target +# directory where the repository is found. Make sure that all pahts are +# absolute !!! + +mv ${0##*/} ${XDG_RUNTIME_DIR}/ + +TRG="$HOME/git/fripost/meetings/annual/2024" +SRC="$HOME/cloud-fripost/fripost/årsmöte" + +echo ${0##*/}: I: ${SRC} ${TRG} 1>&2 + +rsync -a --delete -P ${SRC}/ ${TRG}/ \ + | grep -iv "^sending" +git -C ${TRG} status --short --branch + +mv ${XDG_RUNTIME_DIR}/${0##*/} . |