changelog shortlog graph tags branches files raw help

Mercurial > infra / changeset: 2

changeset 38: 197d061b1f2e
parent 37: 745d8b0118e5
child 39: 7889aacae1e0
author: ellis <ellis@rwest.io>
date: Sat, 30 Dec 2023 23:45:41 -0500
files: scripts/build-emacs.sh scripts/bundle-dir.sh scripts/get-cl.sh scripts/get-emacs.sh scripts/get-lust.sh scripts/get-rocksdb.sh scripts/get-rust.sh scripts/get-sbcl.sh scripts/ts-install-langs.sh
description: 2
     1.1--- a/scripts/build-emacs.sh	Sat Dec 30 23:40:09 2023 -0500
     1.2+++ b/scripts/build-emacs.sh	Sat Dec 30 23:45:41 2023 -0500
     1.3@@ -1,6 +1,6 @@
     1.4 #!/usr/bin/env bash
     1.5 CPUS=$(getconf _NPROCESSORS_ONLN)
     1.6-TARGETDIR=${1:-$(realpath build/src/emacs)}
     1.7+TARGETDIR=${1:-build/src/emacs}
     1.8 CONFIG=(--with-mailutils
     1.9 	--with-imagemagick
    1.10 	--with-x-toolkit=gtk
     2.1--- a/scripts/bundle-dir.sh	Sat Dec 30 23:40:09 2023 -0500
     2.2+++ b/scripts/bundle-dir.sh	Sat Dec 30 23:45:41 2023 -0500
     2.3@@ -1,7 +1,7 @@
     2.4 #!/usr/bin/env bash
     2.5 # bundle a tar.zst archive of Mercurial repositories.
     2.6 WD=/mnt/y/data/packy
     2.7-#WD=$(realpath dist)
     2.8+#WD=dist
     2.9 OUT=$WD/bundle/src
    2.10 SRC_PATH=$HOME/dev/comp
    2.11 BUNDLE_NAME="${1:-comp}"
     3.1--- a/scripts/get-cl.sh	Sat Dec 30 23:40:09 2023 -0500
     3.2+++ b/scripts/get-cl.sh	Sat Dec 30 23:45:41 2023 -0500
     3.3@@ -1,5 +1,5 @@
     3.4 #!/usr/bin/env bash
     3.5-TARGETDIR=${1:-$(realpath build/cl)}
     3.6+TARGETDIR=${1:-build/cl}
     3.7 hg clone https://vc.compiler.company/cl $TARGETDIR
     3.8 pushd $TARGETDIR
     3.9 make
     4.1--- a/scripts/get-emacs.sh	Sat Dec 30 23:40:09 2023 -0500
     4.2+++ b/scripts/get-emacs.sh	Sat Dec 30 23:45:41 2023 -0500
     4.3@@ -1,4 +1,4 @@
     4.4 #!/usr/bin/env bash
     4.5 # get Emacs source code
     4.6-TARGETDIR=${1:-$(realpath build/src/emacs)}
     4.7+TARGETDIR=${1:-build/src/emacs}
     4.8 git clone https://vc.compiler.company/packy/shed/vendor/emacs.git $TARGETDIR
     5.1--- a/scripts/get-lust.sh	Sat Dec 30 23:40:09 2023 -0500
     5.2+++ b/scripts/get-lust.sh	Sat Dec 30 23:45:41 2023 -0500
     5.3@@ -1,6 +1,6 @@
     5.4 #!/usr/bin/env bash
     5.5 # install the Lonely Rust compiler source code
     5.6-TARGETDIR=${1:-$(realpath build/lust)}
     5.7+TARGETDIR=${1:-build/lust}
     5.8 hg clone https://vc.compiler.company/lust $TARGETDIR
     5.9 pushd $TARGETDIR
    5.10 make
     6.1--- a/scripts/get-rocksdb.sh	Sat Dec 30 23:40:09 2023 -0500
     6.2+++ b/scripts/get-rocksdb.sh	Sat Dec 30 23:45:41 2023 -0500
     6.3@@ -1,4 +1,4 @@
     6.4 #!/usr/bin/env bash
     6.5 # get RocksDB source code
     6.6-TARGETDIR=${2:-$(realpath build/src/rocksdb)}
     6.7+TARGETDIR=${2:-build/src/rocksdb}
     6.8 git clone https://vc.compiler.company/packy/shed/vendor/rocksdb.git $TARGETDIR
     7.1--- a/scripts/get-rust.sh	Sat Dec 30 23:40:09 2023 -0500
     7.2+++ b/scripts/get-rust.sh	Sat Dec 30 23:45:41 2023 -0500
     7.3@@ -8,5 +8,5 @@
     7.4 #rustup update
     7.5 #rustup default nightly
     7.6 
     7.7-TARGETDIR=${1:-$(realpath build/src/rust)}
     7.8+TARGETDIR=${1:-build/src/rust}
     7.9 git clone https://vc.compiler.company/packy/shed/vendor/rust.git $TARGETDIR
     8.1--- a/scripts/get-sbcl.sh	Sat Dec 30 23:40:09 2023 -0500
     8.2+++ b/scripts/get-sbcl.sh	Sat Dec 30 23:45:41 2023 -0500
     8.3@@ -1,4 +1,4 @@
     8.4 #!/usr/bin/env bash
     8.5 # get SBCL source code
     8.6-TARGETDIR=${1:-$(realpath build/src/sbcl)}
     8.7+TARGETDIR=${1:-build/src/sbcl}
     8.8 git clone https://vc.compiler.company/packy/shed/vendor/sbcl.git $TARGETDIR
     9.1--- a/scripts/ts-install-langs.sh	Sat Dec 30 23:40:09 2023 -0500
     9.2+++ b/scripts/ts-install-langs.sh	Sat Dec 30 23:45:41 2023 -0500
     9.3@@ -8,7 +8,7 @@
     9.4   typescript/tsx typescript/typescript yaml
     9.5 ) # more langs: agda c-sharp julia ocaml/interface ocaml/ocaml php ql ruby scala
     9.6 
     9.7-TARGETDIR=${1:-$(realpath build/src/ts-langs)}
     9.8+TARGETDIR=${1:-build/src/ts-langs}
     9.9 PREFIX=${PREFIX:-/usr/local}
    9.10 CC=${CC:-clang}
    9.11 CXX=${CXX:-clang++}