changelog shortlog graph tags branches files raw help

Mercurial > infra / changeset: merge

changeset 314: 532910875d5a
parent 313: f5b55e03bf5c (diff)
parent 312: d0429338ca65 (current diff)
child 315: 0f82807e8b6e
author: Richard Westhaver <ellis@rwest.io>
date: Sat, 06 Jul 2024 23:58:54 -0400
files: autogen.lisp
description: merge
     1.1--- a/autogen.lisp	Sat Jul 06 22:35:42 2024 -0400
     1.2+++ b/autogen.lisp	Sat Jul 06 23:58:54 2024 -0400
     1.3@@ -240,10 +240,10 @@
     1.4 (defun make-emacs-mini ()
     1.5   (sk-run (sk-find-script "install-emacs-mini-pack" *skel-project*)))
     1.6 
     1.7-(defun make-ts ()
     1.8+(defun make-tree-sitter ()
     1.9   (sk-call *skel-project* :tree-sitter))
    1.10 
    1.11-(defun make-ts-langs ()
    1.12+(defun make-tree-sitter-langs ()
    1.13   (sk-call *skel-project* :tree-sitter-langs))
    1.14 
    1.15 (defun autogen ()
     2.1--- a/skelfile	Sat Jul 06 22:35:42 2024 -0400
     2.2+++ b/skelfile	Sat Jul 06 23:58:54 2024 -0400
     2.3@@ -21,7 +21,7 @@
     2.4         unzstd comp.tar.zst && tar -xf comp.tar -C ../src && \
     2.5         mv ../src/hg/* ../src/ && rm -rf ../src/hg comp.tar$#)
     2.6  (packy-repos (src) #$cd .stash && curl -O https://packy.compiler.company/src/packy.tar.zst && \
     2.7-              unzstd packy.tar.zst && tar -xf packy.tar -C src && \
     2.8+              unzstd packy.tar.zst && tar -xf packy.tar -C src/packy && \
     2.9               rm -rf packy.tar$#)
    2.10  ;; containers
    2.11  (archlinux () #$podman build -f .stash/src/pod/Containerfile.archlinux . -t localhost/archlinux$#)
    2.12@@ -63,6 +63,7 @@
    2.13  (scryer-prolog (src) #$./scripts/get-scryer-prolog.sh$#
    2.14                 #$cd .stash/src/scryer-prolog && cargo build --release$#)
    2.15  (tree-sitter (src) #$./scripts/get-tree-sitter.sh$#)
    2.16+ (tree-sitter-install (src) #$cd .stash/src/tree-sitter && make install$#)
    2.17  (linux () #$mkdir -pv .stash/src/linux$#
    2.18         #$gpg --export autosigner@ torvalds@ gregkh@ > .stash/src/linux/keyring.gpg$#
    2.19         #$./scripts/get-linux.sh $(uname -r | cut -d- -f1) .stash .stash/src/linux/keyring.gpg$#