changelog shortlog graph tags branches files raw help

Mercurial > infra / changeset: defaults

changeset 288: 50329ab8865a
parent 287: 152aa544eaa4
child 289: acaa2f3cfbd4
author: Richard Westhaver <ellis@rwest.io>
date: Tue, 18 Jun 2024 14:45:11 -0400
files: autogen.lisp default.sxp skelfile
description: defaults
     1.1--- a/autogen.lisp	Tue Jun 18 14:26:09 2024 -0400
     1.2+++ b/autogen.lisp	Tue Jun 18 14:45:11 2024 -0400
     1.3@@ -41,7 +41,7 @@
     1.4                         hcfg)))
     1.5 (defparameter *host-env* (let ((table (make-hash-table :test 'equal))
     1.6                                (keys (list "STASH" "STORE" "DIST" "PACKY_URL" "VC_URL" "INSTALL_PREFIX"
     1.7-                                           "CC" "AR" "HG" "GIT" "LISP" "RUST" "LD" "SHELL" "DEV" "DEV_HOME"
     1.8+                                           "CC" "AR" "HG" "GIT" "LISP" "RUSTC" "LD" "SHELL" "DEV" "DEV_HOME"
     1.9                                            "DEV_ID" "WORKER" "WORKER_ID" "WORKER_HOME" "CARGO_HOME" "RUSTUP_HOME"
    1.10                                            "LISP_HOME" "INFRA_PROFILE" "LOG_LEVEL")))
    1.11                            (dolist (k keys table)
    1.12@@ -96,6 +96,7 @@
    1.13          (log-level (getprofile :log-level))
    1.14          (lisp-home (getprofile :lisp-home))
    1.15          (quicklisp-home (getprofile :quicklisp-home))
    1.16+         (rustc (getpro-else :rustc "rustc"))
    1.17          (rust-home (getprofile :rust-home))
    1.18          (rustup-home (getprofile :rustup-home))
    1.19          (cargo-home (getprofile :cargo-home))
    1.20@@ -112,6 +113,7 @@
    1.21      "LISP_VERSION" lisp-version
    1.22      "LISP_HOME" lisp-home
    1.23      "QUICKLISP_HOME" quicklisp-home
    1.24+     "RUSTC" rustc
    1.25      "RUST_HOME" rust-home
    1.26      "RUSTUP_HOME" rustup-home
    1.27      "CARGO_HOME" cargo-home
    1.28@@ -186,4 +188,5 @@
    1.29        (when (member :default features) (sb-thread:make-thread 'make-default :name "default"))
    1.30        (when (member :pod features) (sb-thread:make-thread 'make-pods :name "pod"))
    1.31        (when (member :box features) (sb-thread:make-thread 'make-boxes :name "box"))
    1.32-       (when (member :org features) (sb-thread:make-thread 'make-pods :name "org")))))))
    1.33+       (when (member :org features) (sb-thread:make-thread 'make-pods :name "org"))
    1.34+       (when (member :packy features) (sb-thread:make-thread 'make-packy :name "packy")))))))
     2.1--- a/default.sxp	Tue Jun 18 14:26:09 2024 -0400
     2.2+++ b/default.sxp	Tue Jun 18 14:45:11 2024 -0400
     2.3@@ -4,6 +4,7 @@
     2.4 :lisp-home "/usr/local/share/lisp"
     2.5 :quicklisp-home "/usr/local/share/lisp/quicklisp"
     2.6 
     2.7+:rustc "/usr/bin/rustc"
     2.8 :rust-home "/usr/local/share/rust"
     2.9 :cargo-home "/usr/local/share/rust/cargo"
    2.10 :rustup-home "/usr/local/share/rust/rustup"
    2.11@@ -20,4 +21,7 @@
    2.12 :log-level :debug ;; should usually be set to at least :DEBUG, set to
    2.13                   ;; :TRACE or T for verbose output
    2.14 
    2.15-:features (:default :pod :box :org) ;; :demo
    2.16+:features (:default :org) ;; :demo :rust :rust-docs :caddy :stumpwm :emacs
    2.17+                          ;; :emacs-mini :sbcl-gencgc :sbcl :sbcl-docs :prolog
    2.18+                          ;; :ublk :blake3 :ts :ts-langs :rust-tools :rocksdb
    2.19+                          ;; :quicklisp :pod :box :packy
     3.1--- a/skelfile	Tue Jun 18 14:26:09 2024 -0400
     3.2+++ b/skelfile	Tue Jun 18 14:45:11 2024 -0400
     3.3@@ -68,7 +68,7 @@
     3.4         #$cd .stash/src/linux && make mrproper -j &&
     3.5         zcat /proc/config.gz > .config && yes N | make localmodconfig$#)
     3.6  (xcaddy () #$go install github.com/caddyserver/xcaddy/cmd/xcaddy@latest$#)
     3.7- (caddy (xcaddy) #$CGO_ENABLED=1 xcaddy build --output .stash/bin/caddy --with github.com/mholt/caddy-webdav --with github.com/mliezun/caddy-snake$#)
     3.8+ (caddy (xcaddy) #$CGO_ENABLED=1 xcaddy build --output .stash/bin/caddy --with github.com/mholt/caddy-webdav$#)
     3.9  (rust () #$scripts/get-rust.sh$#)
    3.10  (rust-docs (rust) #$cd .stash/src/rust && ./x doc$#)
    3.11  (ublk () #$scripts/get-ublksrv.sh$#