# HG changeset patch # User Richard Westhaver # Date 1721001598 14400 # Node ID 312eb5995ed479cda60b800f392c3c6887226b7d # Parent ec1d4d544c36e282f3352775c2baf4c6ce033344 adjust skelfile diff -r ec1d4d544c36 -r 312eb5995ed4 skelfile --- a/skelfile Sat Jul 13 18:18:01 2024 -0400 +++ b/skelfile Sun Jul 14 19:59:58 2024 -0400 @@ -14,7 +14,12 @@ :components ((:dir-locals ".dir-locals") (:org "readme")) :rules -((all (compile std prelude user infra core tests rdb skel organ homer packy fasl rust-bin tree-sitter-alien)) +((all (%stash + psl.dat parquet.json + compile std prelude user + infra core tests rdb + skel organ homer packy + fasl rust-bin tree-sitter-alien)) (clean () #$rm -vrf .stash$# #$find emacs -name '*.elc' -type f -delete$# @@ -29,13 +34,17 @@ (st ".stash/psl.dat" :direction :output :element-type 'octet) (loop for x across (req:get "https://publicsuffix.org/list/public_suffix_list.dat" :force-binary t) do (write-byte x st)))) - (parquet.thrift () + (parquet.thrift () (with-open-file (st ".stash/parquet.thrift" :direction :output :element-type 'octet) (loop for x across (req:get "https://raw.githubusercontent.com/apache/parquet-format/master/src/main/thrift/parquet.thrift" :force-binary t) - do (write-byte x st)))) + do (write-byte x st))) + #$thrift --gen json -out .stash .stash/parquet.thrift$#) (parquet.json () - #$thrift --gen json -out .stash .stash/parquet.thrift$#) + (with-open-file + (st ".stash/parquet.json" :direction :output :element-type 'octet) + (loop for x across (req:get "https://packy.compiler.company/data/parquet.json" :force-binary t) + do (write-byte x st)))) ;; lisp (%stash () #$mkdir -pv .stash$#) (rdb (%stash) (with-sbcl (:noinform t :quit t)