From 753c5a754e3b1f3db6d210d8f29874bf16e93e5a Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Sat, 29 Mar 2025 22:20:24 +0000 Subject: Implement the Cache Directory Tagging Specification. * ennum.el (ennum-eval): Mark store as a cache directory. --- ennum.el | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ennum.el b/ennum.el index e7ee9f0..530cae3 100644 --- a/ennum.el +++ b/ennum.el @@ -247,6 +247,15 @@ respectively by - and _, and the pad character = is optional." (ennum-setting :store)))) ;; Create store if it doesn't exist (ennum-mkdir-p (ennum-setting :store)) + ;; Mark store as a cache directory following the Cache Directory + ;; Tagging Specification: https://bford.info/cachedir/ + (let ((cachedir-tag (expand-file-name "CACHEDIR.TAG" (ennum-setting :store)))) + (unless (file-exists-p cachedir-tag) + (with-temp-file cachedir-tag + (insert "Signature: 8a477f597d28d172789f06886806bc55 +# This directory is the ennum store. All the data in this +# directory is generated from source files backed up elsewhere. +")))) ;; Create store item if it doesn't already exist (unless (file-exists-p output) (message "Building %s" output) -- cgit v1.2.3