changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > core / skelfile

revision 647: 74e563ed4537
parent 645: 3e6a17fb5712
child 651: af486e0a40c9
     1.1--- a/skelfile	Wed Sep 11 18:08:29 2024 -0400
     1.2+++ b/skelfile	Wed Sep 11 21:40:01 2024 -0400
     1.3@@ -31,24 +31,32 @@
     1.4                             alien.c -o ../../../.stash/libtree-sitter-alien.so$#)
     1.5                     (:install () #$cp .stash/libtree-sitter-alien.so /usr/local/lib/$#))
     1.6  (psl.dat (%stash)
     1.7-          (download "https://publicsuffix.org/list/public_suffix_list.dat" :output ".stash/psl.dat"))
     1.8+          (download "https://publicsuffix.org/list/public_suffix_list.dat"
     1.9+                    :output (merge-pathnames
    1.10+                             ".stash/psl.dat"
    1.11+                             *skel-path*)))
    1.12  (rgb.txt (%stash)
    1.13-          (download "https://packy.compiler.company/data/rgb.txt" :output ".stash/rgb.txt"))
    1.14+          (download "https://packy.compiler.company/data/rgb.txt"
    1.15+                    :output (merge-pathnames
    1.16+                             ".stash/rgb.txt"
    1.17+                             *skel-path*)))
    1.18  (x11.lisp (rgb.txt)
    1.19-           (color::parse-x11-color-definitions :input ".stash/rgb.txt" :output "color/x11.lisp"))
    1.20+           (color::parse-x11-color-definitions
    1.21+            :input ".stash/rgb.txt"
    1.22+            :output (merge-pathnames "color/x11.lisp" *skel-path*)))
    1.23  (parquet.thrift (%stash)
    1.24                  (download
    1.25                   "https://raw.githubusercontent.com/apache/parquet-format/master/src/main/thrift/parquet.thrift"
    1.26-                  :output ".stash/parquet.thrift")
    1.27+                  :output (merge-pathnames ".stash/parquet.thrift" *skel-path*))
    1.28                  #$thrift --gen json -out .stash .stash/parquet.thrift$#)
    1.29  (parquet.json (%stash)
    1.30                (download "https://packy.compiler.company/data/parquet.json"
    1.31-                         :output ".stash/parquet.json"))
    1.32+                         :output (merge-pathnames ".stash/parquet.json" *skel-path*)))
    1.33  (freedesktop.org.xml (%stash)
    1.34                       (download "https://packy.compiler.company/data/freedesktop.org.xml"
    1.35-                                :output ".stash/freedesktop.org.xml"))
    1.36+                                :output (merge-pathnames ".stash/freedesktop.org.xml" *skel-path*)))
    1.37  (parquet-test-data (%stash) (download "https://packy.compiler.company/data/test/alltypes_plain.parquet"
    1.38-                                       :output ".stash/alltypes_plain.parquet"))
    1.39+                                       :output (merge-pathnames ".stash/alltypes_plain.parquet" *skel-path*)))
    1.40  ;; lisp
    1.41  (%stash () #$mkdir -pv .stash$#)
    1.42  (rdb (%stash)