diff --git a/package/R/3.6.3/clang/install.sh b/package/R/3.6.3/clang/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..66c0e2e9fb80bf29175e48330179bb10faa3758a --- /dev/null +++ b/package/R/3.6.3/clang/install.sh @@ -0,0 +1,11 @@ +#!/bin/bash +#yum install libXt-devel.aarch64 readline-devel.aarch64 +set -x +set -e +. ${DOWNLOAD_TOOL} -u https://cloud.r-project.org/src/base/R-3/R-3.6.3.tar.gz +cd ${JARVIS_TMP} +tar -xvf ${JARVIS_DOWNLOAD}/R-3.6.3.tar.gz +cd R-3.6.3 +./configure -enable-R-shlib -enable-R-static-lib --with-libpng --with-jpeglib --prefix=$1 +make all -j +make install diff --git a/package/R/3.6.3/install.sh b/package/R/3.6.3/install.sh index daa865ddcc3aa91a4674cb35bec93ffae922329c..66c0e2e9fb80bf29175e48330179bb10faa3758a 100755 --- a/package/R/3.6.3/install.sh +++ b/package/R/3.6.3/install.sh @@ -1,9 +1,8 @@ #!/bin/bash - -#wget https://cloud.r-project.org/src/base/R-3/R-3.6.3.tar.gz #yum install libXt-devel.aarch64 readline-devel.aarch64 set -x set -e +. ${DOWNLOAD_TOOL} -u https://cloud.r-project.org/src/base/R-3/R-3.6.3.tar.gz cd ${JARVIS_TMP} tar -xvf ${JARVIS_DOWNLOAD}/R-3.6.3.tar.gz cd R-3.6.3 diff --git a/package/automake/1.16.5/clang/install.sh b/package/automake/1.16.5/clang/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..233a4d77884049ad152534b17fe253d2db875c13 --- /dev/null +++ b/package/automake/1.16.5/clang/install.sh @@ -0,0 +1,10 @@ +#!/bin/bash +set -x +set -e +. ${DOWNLOAD_TOOL} -u https://ftp.gnu.org/gnu/automake/automake-1.16.5.tar.gz +cd ${JARVIS_TMP} +tar -xvf ${JARVIS_DOWNLOAD}/automake-1.16.5.tar.gz +cd automake-1.16.5 +./configure --prefix=$1 +make -j +make install diff --git a/package/automake/1.16.5/install.sh b/package/automake/1.16.5/install.sh index 3ef86733541a7f7eb7a870c0bdf020d27522ae02..233a4d77884049ad152534b17fe253d2db875c13 100644 --- a/package/automake/1.16.5/install.sh +++ b/package/automake/1.16.5/install.sh @@ -1,8 +1,7 @@ #!/bin/bash - -#wget https://ftp.gnu.org/gnu/automake/automake-1.16.5.tar.gz set -x set -e +. ${DOWNLOAD_TOOL} -u https://ftp.gnu.org/gnu/automake/automake-1.16.5.tar.gz cd ${JARVIS_TMP} tar -xvf ${JARVIS_DOWNLOAD}/automake-1.16.5.tar.gz cd automake-1.16.5 diff --git a/package/boost/1.72.0/install.sh b/package/boost/1.72.0/clang/install.sh similarity index 61% rename from package/boost/1.72.0/install.sh rename to package/boost/1.72.0/clang/install.sh index b4f49328f3d2b19a6a89e3a281a6b9c665c6d12b..d6cfad141711ec3db3fe9743691d72b4bdae68de 100644 --- a/package/boost/1.72.0/install.sh +++ b/package/boost/1.72.0/clang/install.sh @@ -1,7 +1,7 @@ #!/bin/bash -#wget https://boostorg.jfrog.io/artifactory/main/release/1.72.0/source/boost_1_72_0.tar.gz set -x set -e +. ${DOWNLOAD_TOOL} -u https://boostorg.jfrog.io/artifactory/main/release/1.72.0/source/boost_1_72_0.tar.gz cd ${JARVIS_TMP} tar -xvf ${JARVIS_DOWNLOAD}/boost_1_72_0.tar.gz cd boost_1_72_0 diff --git a/package/git/2.35.1/clang/install.sh b/package/git/2.35.1/clang/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..ffee590f6adf05ad5903150fd70502fcf29267fa --- /dev/null +++ b/package/git/2.35.1/clang/install.sh @@ -0,0 +1,12 @@ +#!/bin/bash +#wget https://github.com/git/git/archive/refs/tags/v2.35.1.tar.gz -O git-2.35.1.tar.gz +set -x +set -e +. ${DOWNLOAD_TOOL} -u https://github.com/git/git/archive/refs/tags/v2.35.1.tar.gz -f git-2.35.1.tar.gz +cd ${JARVIS_TMP} +tar -xvf ${JARVIS_DOWNLOAD}/git-2.35.1.tar.gz +cd git-2.35.1 +autoconf +./configure --prefix=$1 +make -j +make install diff --git a/package/git/2.35.1/install.sh b/package/git/2.35.1/install.sh index 9993f8b5a04c911eca72faa4542f234bd4e050a2..e6a726f051af0ce8aeb594eadfb0d7a42194bd4e 100644 --- a/package/git/2.35.1/install.sh +++ b/package/git/2.35.1/install.sh @@ -1,7 +1,7 @@ #!/bin/bash -#wget https://github.com/git/git/archive/refs/tags/v2.35.1.tar.gz -O git-2.35.1.tar.gz set -x set -e +. ${DOWNLOAD_TOOL} -u https://github.com/git/git/archive/refs/tags/v2.35.1.tar.gz -f git-2.35.1.tar.gz cd ${JARVIS_TMP} tar -xvf ${JARVIS_DOWNLOAD}/git-2.35.1.tar.gz cd git-2.35.1 @@ -9,4 +9,3 @@ autoconf ./configure --prefix=$1 make -j make install -#export PATH=${JARVIS_COMPILER}/git/2.35.1/bin:$PATH diff --git a/package/htslib/1.15/clang/install.sh b/package/htslib/1.15/clang/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..a8064d9e99e422724f9819bb3e44366225157037 --- /dev/null +++ b/package/htslib/1.15/clang/install.sh @@ -0,0 +1,11 @@ +#!/bin/bash +set -x +set -e +. ${DOWNLOAD_TOOL} -u https://github.com/samtools/htslib/releases/download/1.15/htslib-1.15.tar.bz2 +cd ${JARVIS_TMP} +tar -xvf ${JARVIS_DOWNLOAD}/htslib-1.15.tar.bz2 +cd htslib-1.15 +autoreconf -i +./configure --prefix=$1 +make -j +make install diff --git a/package/htslib/1.15/install.sh b/package/htslib/1.15/install.sh index c9d1359b0c3e3d3ea2d1a6685671b0d92b9692f1..a8064d9e99e422724f9819bb3e44366225157037 100644 --- a/package/htslib/1.15/install.sh +++ b/package/htslib/1.15/install.sh @@ -1,7 +1,7 @@ #!/bin/bash -#wget https://github.com/samtools/htslib/releases/download/1.15/htslib-1.15.tar.bz2 set -x set -e +. ${DOWNLOAD_TOOL} -u https://github.com/samtools/htslib/releases/download/1.15/htslib-1.15.tar.bz2 cd ${JARVIS_TMP} tar -xvf ${JARVIS_DOWNLOAD}/htslib-1.15.tar.bz2 cd htslib-1.15 diff --git a/package/libjpeg/v7/clang/install.sh b/package/libjpeg/v7/clang/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..8bf9232fdb89b20a42bfa43f1f9b631d2db1f4be --- /dev/null +++ b/package/libjpeg/v7/clang/install.sh @@ -0,0 +1,10 @@ +#!/bin/bash +set -x +set -e +. ${DOWNLOAD_TOOL} -u http://www.ijg.org/files/jpegsrc.v7.tar.gz +cd ${JARVIS_TMP} +tar xvf ${JARVIS_DOWNLOAD}/jpegsrc.v7.tar.gz +cd jpeg-7 +./configure --prefix=$1 --build=aarch64-unknown-linux-gnu +make -j +make install diff --git a/package/libjpeg/v7/install.sh b/package/libjpeg/v7/install.sh index 56a4f9ac785308acd35b0c9238646bf35973a551..8bf9232fdb89b20a42bfa43f1f9b631d2db1f4be 100644 --- a/package/libjpeg/v7/install.sh +++ b/package/libjpeg/v7/install.sh @@ -1,7 +1,7 @@ #!/bin/bash -#下载地址:http://www.ijg.org/files/jpegsrc.v7.tar.gz set -x set -e +. ${DOWNLOAD_TOOL} -u http://www.ijg.org/files/jpegsrc.v7.tar.gz cd ${JARVIS_TMP} tar xvf ${JARVIS_DOWNLOAD}/jpegsrc.v7.tar.gz cd jpeg-7 diff --git a/package/libpng/1.6.37/clang/install.sh b/package/libpng/1.6.37/clang/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..af16a463b72f639e3f46f76f94e868e2e2bd4559 --- /dev/null +++ b/package/libpng/1.6.37/clang/install.sh @@ -0,0 +1,10 @@ +#!/bin/bash +set -x +set -e +. ${DOWNLOAD_TOOL} -u https://nchc.dl.sourceforge.net/project/libpng/libpng16/1.6.37/libpng-1.6.37.tar.gz +cd ${JARVIS_TMP} +tar xvf ${JARVIS_DOWNLOAD}/libpng-1.6.37.tar.gz +cd libpng-1.6.37 +./configure --prefix=$1 --build=aarch64-unknown-linux-gnu +make -j +make install diff --git a/package/libpng/1.6.37/install.sh b/package/libpng/1.6.37/install.sh index 5bbc9ff4faebcbaa4227964cbb6cd747db111191..af16a463b72f639e3f46f76f94e868e2e2bd4559 100644 --- a/package/libpng/1.6.37/install.sh +++ b/package/libpng/1.6.37/install.sh @@ -1,7 +1,7 @@ #!/bin/bash -#下载地址:https://nchc.dl.sourceforge.net/project/libpng/libpng16/1.6.37/libpng-1.6.37.tar.gz set -x set -e +. ${DOWNLOAD_TOOL} -u https://nchc.dl.sourceforge.net/project/libpng/libpng16/1.6.37/libpng-1.6.37.tar.gz cd ${JARVIS_TMP} tar xvf ${JARVIS_DOWNLOAD}/libpng-1.6.37.tar.gz cd libpng-1.6.37 diff --git a/package/python3/3.7.10/clang/install.sh b/package/python3/3.7.10/clang/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..38b87d0acefd46a429d0628b77cdb7d7a21080f7 --- /dev/null +++ b/package/python3/3.7.10/clang/install.sh @@ -0,0 +1,13 @@ +#!/bin/bash +set -x +set -e +. ${DOWNLOAD_TOOL} -u https://repo.huaweicloud.com/python/3.7.10/Python-3.7.10.tgz +cd ${JARVIS_TMP} +#yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gcc make libffi-devel +tar -zxvf ${JARVIS_DOWNLOAD}/Python-3.7.10.tgz +cd Python-3.7.10 +./configure --prefix=$1 +make +make install +#ln -s $1/python3/3.7.10/bin/python3.7 /usr/local/bin/python3 +#ln -s $1/python3/3.7.10/bin/pip3.7 /usr/local/bin/pip3 diff --git a/package/python3/3.7.10/install.sh b/package/python3/3.7.10/install.sh index 2dd773f8b73b65574117d94e8ee148c0fb441e25..38b87d0acefd46a429d0628b77cdb7d7a21080f7 100644 --- a/package/python3/3.7.10/install.sh +++ b/package/python3/3.7.10/install.sh @@ -1,7 +1,7 @@ #!/bin/bash -# https://repo.huaweicloud.com/python/3.7.10/Python-3.7.10.tgz set -x set -e +. ${DOWNLOAD_TOOL} -u https://repo.huaweicloud.com/python/3.7.10/Python-3.7.10.tgz cd ${JARVIS_TMP} #yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gcc make libffi-devel tar -zxvf ${JARVIS_DOWNLOAD}/Python-3.7.10.tgz diff --git a/package/samtools/1.15/clang/install.sh b/package/samtools/1.15/clang/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..09bc47017c11be971b5b7ec7ea1b8177d0b2b143 --- /dev/null +++ b/package/samtools/1.15/clang/install.sh @@ -0,0 +1,10 @@ +#!/bin/bash +set -x +set -e +. ${DOWNLOAD_TOOL} -u https://github.com/samtools/samtools/releases/download/1.15/samtools-1.15.tar.bz2 +cd ${JARVIS_TMP} +tar xvf ${JARVIS_DOWNLOAD}/samtools-1.15.tar.bz2 +cd samtools-1.15 +./configure --prefix=$1 +make -j +make install diff --git a/package/samtools/1.15/install.sh b/package/samtools/1.15/install.sh index c2751339b8f68ed10b35f95c1545b22f1071d0c0..09bc47017c11be971b5b7ec7ea1b8177d0b2b143 100644 --- a/package/samtools/1.15/install.sh +++ b/package/samtools/1.15/install.sh @@ -1,7 +1,7 @@ #!/bin/bash -#wget https://github.com/samtools/samtools/releases/download/1.15/samtools-1.15.tar.bz2 set -x set -e +. ${DOWNLOAD_TOOL} -u https://github.com/samtools/samtools/releases/download/1.15/samtools-1.15.tar.bz2 cd ${JARVIS_TMP} tar xvf ${JARVIS_DOWNLOAD}/samtools-1.15.tar.bz2 cd samtools-1.15 diff --git a/package/szip/2.1.1/clang/install.sh b/package/szip/2.1.1/clang/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..425dc896328d3643f08469a217ac5f75ae8078e4 --- /dev/null +++ b/package/szip/2.1.1/clang/install.sh @@ -0,0 +1,10 @@ +#!/bin/bash +set -x +set -e +. ${DOWNLOAD_TOOL} -u https://distfiles.macports.org/szip/szip-2.1.1.tar.gz +cd ${JARVIS_TMP} +tar xvf ${JARVIS_DOWNLOAD}/szip-2.1.1.tar.gz +cd szip-2.1.1 +./configure --prefix=$1 +make -j +make install diff --git a/package/szip/2.1.1/install.sh b/package/szip/2.1.1/install.sh index 12191e74656d3c373336b7712b1d4102d012c3dc..425dc896328d3643f08469a217ac5f75ae8078e4 100644 --- a/package/szip/2.1.1/install.sh +++ b/package/szip/2.1.1/install.sh @@ -1,7 +1,7 @@ #!/bin/bash -#wget https://distfiles.macports.org/szip/szip-2.1.1.tar.gz set -x set -e +. ${DOWNLOAD_TOOL} -u https://distfiles.macports.org/szip/szip-2.1.1.tar.gz cd ${JARVIS_TMP} tar xvf ${JARVIS_DOWNLOAD}/szip-2.1.1.tar.gz cd szip-2.1.1 diff --git a/package/udunits/2.2.28/clang/install.sh b/package/udunits/2.2.28/clang/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..655e44169da0f39acc7e6575476261f6e9b084bc --- /dev/null +++ b/package/udunits/2.2.28/clang/install.sh @@ -0,0 +1,10 @@ +#!/bin/bash +set -x +set -e +. ${DOWNLOAD_TOOL} -u https://artifacts.unidata.ucar.edu/repository/downloads-udunits/2.2.28/udunits-2.2.28.tar.gz +cd ${JARVIS_TMP} +tar xvf ${JARVIS_DOWNLOAD}/udunits-2.2.28.tar.gz +cd udunits-2.2.28 +./configure --prefix=$1 +make -j +make install diff --git a/package/udunits/2.2.28/install.sh b/package/udunits/2.2.28/install.sh index 5538418a8b146afe07341c4436f8ee3bb150174f..655e44169da0f39acc7e6575476261f6e9b084bc 100644 --- a/package/udunits/2.2.28/install.sh +++ b/package/udunits/2.2.28/install.sh @@ -1,7 +1,7 @@ #!/bin/bash -#下载地址:https://artifacts.unidata.ucar.edu/repository/downloads-udunits/2.2.28/udunits-2.2.28.tar.gz set -x set -e +. ${DOWNLOAD_TOOL} -u https://artifacts.unidata.ucar.edu/repository/downloads-udunits/2.2.28/udunits-2.2.28.tar.gz cd ${JARVIS_TMP} tar xvf ${JARVIS_DOWNLOAD}/udunits-2.2.28.tar.gz cd udunits-2.2.28 diff --git a/package/zlib/1.2.11/clang/install.sh b/package/zlib/1.2.11/clang/install.sh new file mode 100644 index 0000000000000000000000000000000000000000..8c707b2c72b52174639ab466fa2f8bc23688f547 --- /dev/null +++ b/package/zlib/1.2.11/clang/install.sh @@ -0,0 +1,10 @@ +#!/bin/bash +set -x +set -e +. ${DOWNLOAD_TOOL} -u https://nchc.dl.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.gz +cd ${JARVIS_TMP} +tar -xvf ${JARVIS_DOWNLOAD}/zlib-1.2.11.tar.gz +cd zlib-1.2.11 +./configure --prefix=$1 +make -j +make install diff --git a/package/zlib/1.2.11/install.sh b/package/zlib/1.2.11/install.sh index 1122db7ccb20d26cb6fa0306d23dcc94b9eb1578..8c707b2c72b52174639ab466fa2f8bc23688f547 100644 --- a/package/zlib/1.2.11/install.sh +++ b/package/zlib/1.2.11/install.sh @@ -1,7 +1,7 @@ #!/bin/bash -#下载地址:http://www.zlib.net/zlib-1.2.11.tar.gz set -x set -e +. ${DOWNLOAD_TOOL} -u https://nchc.dl.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.gz cd ${JARVIS_TMP} tar -xvf ${JARVIS_DOWNLOAD}/zlib-1.2.11.tar.gz cd zlib-1.2.11 diff --git a/templates/R/3.6.3/data.R.arm.bisheng.config b/templates/R/3.6.3/data.R.arm.bisheng.config index 9f7779a858f5621ecf7efc55d5a07ed9204bde1e..c361bdb1517d9ef5ed6146e435f105289b9b8ad1 100644 --- a/templates/R/3.6.3/data.R.arm.bisheng.config +++ b/templates/R/3.6.3/data.R.arm.bisheng.config @@ -1,10 +1,6 @@ [SERVER] 11.11.11.11 -[DOWNLOAD] -R/3.6.3 https://cloud.r-project.org/src/base/R-3/R-3.6.3.tar.gz -bisheng/2.1.0 https://mirrors.huaweicloud.com/kunpeng/archive/compiler/bisheng_compiler/bisheng-compiler-2.1.0-aarch64-linux.tar.gz - [DEPENDENCY] ./jarvis -install bisheng/2.1.0 com @@ -12,9 +8,7 @@ bisheng/2.1.0 https://mirrors.huaweicloud.com/kunpeng/archive/compiler/bisheng_c module purge module use ./software/modulefiles module load bisheng2/2.1.0 -export CC=`which clang` -export CXX=`which clang++` -export FC=`which flang` +export CC=clang CXX=clang++ FC=flang [APP] app_name = R diff --git a/templates/automake/1.16.5/data.automake.arm.bisheng.config b/templates/automake/1.16.5/data.automake.arm.bisheng.config index 32ba03571164b7cc27511ac36d32f9ab6330fd2c..540e57720fce24eab71d7c367fedaf3341bfbb46 100644 --- a/templates/automake/1.16.5/data.automake.arm.bisheng.config +++ b/templates/automake/1.16.5/data.automake.arm.bisheng.config @@ -1,10 +1,6 @@ [SERVER] 11.11.11.11 -[DOWNLOAD] -automake/1.16.5 https://ftp.gnu.org/gnu/automake/automake-1.16.5.tar.gz -bisheng/2.1.0 https://mirrors.huaweicloud.com/kunpeng/archive/compiler/bisheng_compiler/bisheng-compiler-2.1.0-aarch64-linux.tar.gz - [DEPENDENCY] ./jarvis -install bisheng/2.1.0 com diff --git a/templates/boost/1.72.0/data.boost.arm.cpu.config b/templates/boost/1.72.0/data.boost.arm.cpu.config index c9ee64d412b3af6b4547f361404d93bcbc50eb96..897438017f20462e009f893ece5ebc4e78fee21f 100644 --- a/templates/boost/1.72.0/data.boost.arm.cpu.config +++ b/templates/boost/1.72.0/data.boost.arm.cpu.config @@ -1,11 +1,6 @@ [SERVER] 11.11.11.11 -[DOWNLOAD] -boost/1.72.0 https://boostorg.jfrog.io/artifactory/main/release/1.72.0/source/boost_1_72_0.tar.gz -bisheng/2.1.0 https://mirrors.huaweicloud.com/kunpeng/archive/compiler/bisheng_compiler/bisheng-compiler-2.1.0-aarch64-linux.tar.gz - - [DEPENDENCY] ./jarvis -install bisheng/2.1.0 com @@ -22,7 +17,7 @@ binary_dir = case_dir = [BUILD] -./jarvis -install boost/1.72.0 clang +./jarvis -install boost/1.72.0/clang clang [RUN] run = diff --git a/templates/git/2.35.1/data.git.arm.bisheng.config b/templates/git/2.35.1/data.git.arm.bisheng.config index ace25fa1ea1b260579c5e2dc22d552bdbea01de3..a75c6251f656073983b2fcd20549ee4f686dafcb 100644 --- a/templates/git/2.35.1/data.git.arm.bisheng.config +++ b/templates/git/2.35.1/data.git.arm.bisheng.config @@ -1,10 +1,6 @@ [SERVER] 11.11.11.11 -[DOWNLOAD] -git/2.35.1 https://github.com/git/git/archive/refs/tags/v2.35.1.tar.gz git-2.35.1.tar.gz -bisheng/2.1.0 https://mirrors.huaweicloud.com/kunpeng/archive/compiler/bisheng_compiler/bisheng-compiler-2.1.0-aarch64-linux.tar.gz - [DEPENDENCY] ./jarvis -install bisheng/2.1.0 com @@ -12,9 +8,7 @@ bisheng/2.1.0 https://mirrors.huaweicloud.com/kunpeng/archive/compiler/bisheng_c module purge module use ./software/modulefiles module load bisheng2/2.1.0 -export CC=`which clang` -export CXX=`which clang++` -export FC=`which flang` +export CC=clang CXX=clang++ FC=flang [APP] app_name = git diff --git a/templates/htslib/1.15/data.htslib.arm.bisheng.config b/templates/htslib/1.15/data.htslib.arm.bisheng.config index 452779de1720e60e1ae9f124066767a6e0034f9a..eab87756095b2232e1acf8c2e9c246ab439866e9 100644 --- a/templates/htslib/1.15/data.htslib.arm.bisheng.config +++ b/templates/htslib/1.15/data.htslib.arm.bisheng.config @@ -1,10 +1,6 @@ [SERVER] 11.11.11.11 -[DOWNLOAD] -htslib/1.15 https://github.com/samtools/htslib/releases/download/1.15/htslib-1.15.tar.bz2 -bisheng/2.1.0 https://mirrors.huaweicloud.com/kunpeng/archive/compiler/bisheng_compiler/bisheng-compiler-2.1.0-aarch64-linux.tar.gz - [DEPENDENCY] ./jarvis -install bisheng/2.1.0 com @@ -12,9 +8,7 @@ bisheng/2.1.0 https://mirrors.huaweicloud.com/kunpeng/archive/compiler/bisheng_c module purge module use ./software/modulefiles module load bisheng2/2.1.0 -export CC=`which clang` -export CXX=`which clang++` -export FC=`which flang` +export CC=clang CXX=clang++ FC=flang [APP] app_name = htslib diff --git a/templates/libjpeg/v7/data.libjpeg.arm.cpu.config b/templates/libjpeg/v7/data.libjpeg.arm.cpu.config index dda95b7a604374f0dba5b5fa89ff641500d75347..705fd5e71596d1179c9a22fbe73e9bcf3e63352b 100644 --- a/templates/libjpeg/v7/data.libjpeg.arm.cpu.config +++ b/templates/libjpeg/v7/data.libjpeg.arm.cpu.config @@ -1,11 +1,6 @@ [SERVER] 11.11.11.11 -[DOWNLOAD] -libjpeg/v7 http://www.ijg.org/files/jpegsrc.v7.tar.gz -bisheng/2.1.0 https://mirrors.huaweicloud.com/kunpeng/archive/compiler/bisheng_compiler/bisheng-compiler-2.1.0-aarch64-linux.tar.gz - - [DEPENDENCY] ./jarvis -install bisheng/2.1.0 com diff --git a/templates/libpng/1.6.37/data.libpng.arm.cpu.config b/templates/libpng/1.6.37/data.libpng.arm.cpu.config index 2df1be7a18879761bc67beed99fdd74b066a0c05..9f05387fddca459b8ae93125cdb4fa853b5a808f 100644 --- a/templates/libpng/1.6.37/data.libpng.arm.cpu.config +++ b/templates/libpng/1.6.37/data.libpng.arm.cpu.config @@ -1,11 +1,6 @@ [SERVER] 11.11.11.11 -[DOWNLOAD] -libpng/1.6.37 https://nchc.dl.sourceforge.net/project/libpng/libpng16/1.6.37/libpng-1.6.37.tar.gz -bisheng/2.1.0 https://mirrors.huaweicloud.com/kunpeng/archive/compiler/bisheng_compiler/bisheng-compiler-2.1.0-aarch64-linux.tar.gz - - [DEPENDENCY] ./jarvis -install bisheng/2.1.0 com diff --git a/templates/python3/3.7.10/data.python3.arm.bisheng.config b/templates/python3/3.7.10/data.python3.arm.bisheng.config index 0796dbf1cc55e3cb65d1f7b0842da9c449b8352e..54604f2b8b5f70f4bbfeeeae254176bdd2f5db2e 100644 --- a/templates/python3/3.7.10/data.python3.arm.bisheng.config +++ b/templates/python3/3.7.10/data.python3.arm.bisheng.config @@ -1,10 +1,6 @@ [SERVER] 11.11.11.11 -[DOWNLOAD] -python3/3.7.10 https://repo.huaweicloud.com/python/3.7.10/Python-3.7.10.tgz -bisheng/2.1.0 https://mirrors.huaweicloud.com/kunpeng/archive/compiler/bisheng_compiler/bisheng-compiler-2.1.0-aarch64-linux.tar.gz - [DEPENDENCY] ./jarvis -install bisheng/2.1.0 com diff --git a/templates/samtools/1.15/data.samtools.arm.bisheng.config b/templates/samtools/1.15/data.samtools.arm.bisheng.config index 8dac01a2b5f1755ccb8aec17d28665afb02725a1..ebac9fee8313f76719063c5b0bbb3d52b49307fc 100644 --- a/templates/samtools/1.15/data.samtools.arm.bisheng.config +++ b/templates/samtools/1.15/data.samtools.arm.bisheng.config @@ -1,10 +1,6 @@ [SERVER] 11.11.11.11 -[DOWNLOAD] -samtools/1.15 https://github.com/samtools/samtools/releases/download/1.15/samtools-1.15.tar.bz2 -bisheng/2.1.0 https://mirrors.huaweicloud.com/kunpeng/archive/compiler/bisheng_compiler/bisheng-compiler-2.1.0-aarch64-linux.tar.gz - [DEPENDENCY] ./jarvis -install bisheng/2.1.0 com diff --git a/templates/szip/2.1.1/data.szip.arm.bisheng.config b/templates/szip/2.1.1/data.szip.arm.bisheng.config index 03c22f2adf50c2c12141969ef4867e6fb7bd5121..95e26acf01aeaba4ba8de9106dc70675e04173d0 100644 --- a/templates/szip/2.1.1/data.szip.arm.bisheng.config +++ b/templates/szip/2.1.1/data.szip.arm.bisheng.config @@ -1,10 +1,6 @@ [SERVER] 11.11.11.11 -[DOWNLOAD] -szip/2.1.1 https://distfiles.macports.org/szip/szip-2.1.1.tar.gz -bisheng/2.1.0 https://mirrors.huaweicloud.com/kunpeng/archive/compiler/bisheng_compiler/bisheng-compiler-2.1.0-aarch64-linux.tar.gz - [DEPENDENCY] ./jarvis -install bisheng/2.1.0 com diff --git a/templates/udunits/2.2.28/data.udunits.arm.cpu.config b/templates/udunits/2.2.28/data.udunits.arm.cpu.config index 56275398e9424c1f4171ff4ff1fda2240eb21028..4c1c191e40e1dc341c48a8c6f86cb4b1c8127fb8 100644 --- a/templates/udunits/2.2.28/data.udunits.arm.cpu.config +++ b/templates/udunits/2.2.28/data.udunits.arm.cpu.config @@ -1,13 +1,6 @@ [SERVER] 11.11.11.11 -[DOWNLOAD] -udunits/2.2.28 https://artifacts.unidata.ucar.edu/repository/downloads-udunits/2.2.28/udunits-2.2.28.tar.gz -hucx/1.1.1 https://github.com/kunpengcompute/hucx/archive/refs/tags/v1.1.1-huawei.tar.gz hucx-1.1.1-huawei.tar.gz -xucg/1.1.1 https://github.com/kunpengcompute/xucg/archive/refs/tags/v1.1.1-huawei.tar.gz xucg-1.1.1-huawei.tar.gz -hmpi/1.1.1 https://github.com/kunpengcompute/hmpi/archive/refs/tags/v1.1.1-huawei.tar.gz hmpi-1.1.1-huawei.tar.gz -bisheng/2.1.0 https://mirrors.huaweicloud.com/kunpeng/archive/compiler/bisheng_compiler/bisheng-compiler-2.1.0-aarch64-linux.tar.gz - [DEPENDENCY] module purge ./jarvis -install bisheng/2.1.0 com diff --git a/templates/zlib/1.2.11/data.zlib.arm.cpu.config b/templates/zlib/1.2.11/data.zlib.arm.cpu.config index 18845ba2857c3bd3335b3372597a366e20bc25b0..f936d1232ba767df66466c98e0bafc49e2f83aef 100644 --- a/templates/zlib/1.2.11/data.zlib.arm.cpu.config +++ b/templates/zlib/1.2.11/data.zlib.arm.cpu.config @@ -1,11 +1,6 @@ [SERVER] 11.11.11.11 -[DOWNLOAD] -zlib/1.2.11 https://nchc.dl.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.gz -bisheng/2.1.0 https://mirrors.huaweicloud.com/kunpeng/archive/compiler/bisheng_compiler/bisheng-compiler-2.1.0-aarch64-linux.tar.gz - - [DEPENDENCY] ./jarvis -install bisheng/2.1.0 com