From e2aa17c086cb7b3c0abaf1528fd93be5b5129809 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Wed, 21 Aug 2024 12:24:58 +0200 Subject: [PATCH] Anaconda3: Remove Software might require a license, so don't offer it. https://www.anaconda.com/terms-of-service --- Anaconda3-5.0.1-0.build.sh | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100755 Anaconda3-5.0.1-0.build.sh diff --git a/Anaconda3-5.0.1-0.build.sh b/Anaconda3-5.0.1-0.build.sh deleted file mode 100755 index 9d87946..0000000 --- a/Anaconda3-5.0.1-0.build.sh +++ /dev/null @@ -1,38 +0,0 @@ -#! /bin/bash - -PKG=Anaconda3 -VERSION=5.0.1 -BUILD=0 - -PREFIX=/pkg/$PKG-$VERSION-$BUILD -#PREFIX=/scratch/local2/$PKG-$VERSION-$BUILD - -set -xe -umask 022 - -BUILD_TMPDIR=/dev/shm/$PKG-$VERSION-$BUILD.build.tmp -test -d $BUILD_TMPDIR && rm -rf $BUILD_TMPDIR -mkdir -p $BUILD_TMPDIR/home -export TMPDIR=$BUILD_TMPDIR -export HOME=$BUILD_TMPDIR/home - -exec $PREFIX/profile <<-EOF - PATH=$PREFIX/bin:\$PATH -EOF -. $PREFIX/profile - -export MAKEFLAGS="-j $(nproc)" - -BUILDDIR=$PREFIX/build - -mkdir -p $BUILDDIR -cd $BUILDDIR - -test -e Anaconda3-$VERSION-Linux-x86_64.sh || wget https://repo.continuum.io/archive/Anaconda3-$VERSION-Linux-x86_64.sh -chmod +x Anaconda3-$VERSION-Linux-x86_64.sh -./Anaconda3-$VERSION-Linux-x86_64.sh -b -f -p $PREFIX - -exit