From e15edcff69a73efe96e7029124f526cd195d9177 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Fri, 9 Jan 2026 11:11:50 -1000 Subject: [PATCH] ;examples: how to get debconf's ledger files --- examples/debconf/Makefile | 9 +++++++++ examples/debconf/README.md | 7 +++++++ 2 files changed, 16 insertions(+) create mode 100644 examples/debconf/Makefile create mode 100644 examples/debconf/README.md diff --git a/examples/debconf/Makefile b/examples/debconf/Makefile new file mode 100644 index 000000000..e0c136bcd --- /dev/null +++ b/examples/debconf/Makefile @@ -0,0 +1,9 @@ +recent: \ + dc26 \ + dc25 \ + dc24 \ + dc23 \ + +dc%: + git clone --filter=blob:none --sparse http://salsa.debian.org/debconf-team/public/data/$@ + git -C $@ sparse-checkout set --no-cone budget '!budget/invoices' diff --git a/examples/debconf/README.md b/examples/debconf/README.md new file mode 100644 index 000000000..2bfa17edb --- /dev/null +++ b/examples/debconf/README.md @@ -0,0 +1,7 @@ +DebConf does their accounting with Ledger. + +Eg: + +Multiple years are available, though I'm not sure where to browse them all. + +These repos are big; to clone just the accounting data for a few recent years, run `make` here.