summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
Diffstat (limited to 'etc')
-rwxr-xr-xetc/pkgs/001-jupyter.sh (renamed from etc/pkgs/003-jupyter.sh)0
-rwxr-xr-xetc/pkgs/001-tini.sh18
-rwxr-xr-xetc/pkgs/002-nodejs.sh17
3 files changed, 0 insertions, 35 deletions
diff --git a/etc/pkgs/003-jupyter.sh b/etc/pkgs/001-jupyter.sh
index dfc312a..dfc312a 100755
--- a/etc/pkgs/003-jupyter.sh
+++ b/etc/pkgs/001-jupyter.sh
diff --git a/etc/pkgs/001-tini.sh b/etc/pkgs/001-tini.sh
deleted file mode 100755
index 44bb172..0000000
--- a/etc/pkgs/001-tini.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-set -x
-
-sudo yum install -y cmake glibc-static || exit 1
-git clone https://github.com/krallin/tini.git
-export CFLAGS="${CFLAGS} -DPR_SET_CHILD_SUBREAPER=36 -DPR_GET_CHILD_SUBREAPER=37"
-
-pushd tini
- git checkout v0.18.0
- mkdir -p build
- pushd build
- cmake ..
- make
- install -m755 tini ${TOOLCHAIN_BIN}
- popd
-popd
-
-rm -rf tini
diff --git a/etc/pkgs/002-nodejs.sh b/etc/pkgs/002-nodejs.sh
deleted file mode 100755
index b52a229..0000000
--- a/etc/pkgs/002-nodejs.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-set -x
-
-name=node
-version=v10.15.0
-srcdir=${name}-${version}
-tarball=${srcdir}.tar.gz
-url=https://nodejs.org/dist/${version}/${tarball}
-
-curl -LO "${url}"
-tar xf "${tarball}"
-pushd "${srcdir}"
- export CFLAGS="${CFLAGS} -fPIC"
- ./configure --prefix=${TOOLCHAIN}
- make -j${_maxjobs}
- make install
-popd