about summary refs log tree commit diff
path: root/build-aux
diff options
context:
space:
mode:
authorArun Isaac2024-01-26 13:52:18 +0000
committerArun Isaac2024-01-26 13:52:18 +0000
commit608735a4bd0811fe2a76365409238c2aad5958a9 (patch)
treed6229f61ec899759ffb36b50d6393df8c66ad638 /build-aux
parent3f242d02b8ddc64c2c669d50363bb4e6e40cb79e (diff)
downloadkolam-main.tar.gz
kolam-main.tar.lz
kolam-main.zip
README: Hard-code releases. HEAD main
* README.org (Download): Replace releases dynamic block with
hard-coded list of releases.
* build-aux/build-website.el (org-dblock-write:releases): Delete
function.
(build-website): Do not call org-update-all-dblocks.
Diffstat (limited to 'build-aux')
-rw-r--r--build-aux/build-home-page.el12
1 files changed, 0 insertions, 12 deletions
diff --git a/build-aux/build-home-page.el b/build-aux/build-home-page.el
index 0f5ef9d..aa4f483 100644
--- a/build-aux/build-home-page.el
+++ b/build-aux/build-home-page.el
@@ -35,18 +35,6 @@
       org-html-head-include-scripts nil
       org-html-postamble nil)
 
-(defun org-dblock-write:releases (params)
-  "Dynamically write releases block."
-  (dolist (release '(("2022-01-05" "v0.1.0")))
-    (pcase release
-      (`(,date ,version)
-       (insert (format "- %s [[./releases/kolam-%s.tar.lz][kolam-%s.tar.lz]] [[./releases/kolam-%s.tar.lz.asc][GPG Signature]]\n"
-                       date
-                       version
-                       version
-                       version))))))
-
 (defun build-website ()
   (with-current-buffer (find-file "README.org")
-    (org-update-all-dblocks)
     (org-export-to-file 'html "website/index.html")))