Deleted old gcc sit class files except the last one in a release series.
This commit is contained in:
parent
1bd8b453e3
commit
b2ceea7b9a
7 changed files with 0 additions and 330 deletions
|
@ -1,46 +0,0 @@
|
|||
#!/bin/sh
|
||||
# sit class file
|
||||
#
|
||||
# Christoph Niethammer <niethammer@hlrs.de> (C) 2013
|
||||
#
|
||||
|
||||
CATEGORY="compiler"
|
||||
PACKAGE="gnu"
|
||||
VERSION="4.7.2"
|
||||
URL="http://gcc.gnu.org"
|
||||
INSTALLER="Elke Flehmig <flehmig@hlrs.de>"
|
||||
|
||||
# NOTE: autogen must be available, otherwise 'make check' fails with 'autogen not found' error! -> temporarily install autogen and set PATH before gcc installation...until we figure out how to include this in the sit script ;)
|
||||
|
||||
# Archive A and package name P
|
||||
A=gcc-${VERSION}.tar.bz2
|
||||
P=gcc-${VERSION}
|
||||
|
||||
src_unpack() {
|
||||
# extract gcc source package
|
||||
unpack
|
||||
if [ $PLATFORM = "laki" ] ; then
|
||||
# On laki currently too old versions of GMP, MPFR and MPC are installed
|
||||
# http://gcc.gnu.org/install/prerequisites.html
|
||||
# unpack required GMP, MPFR and MPC sources into subdirectories
|
||||
tar xjf ${SRC_POOL}/gmp-4.3.2.tar.bz2 -C $SRCDIR
|
||||
tar xjf ${SRC_POOL}/mpfr-2.4.2.tar.bz2 -C $SRCDIR
|
||||
tar xzf ${SRC_POOL}/mpc-0.8.1.tar.gz -C $SRCDIR
|
||||
# rename subdirectories as required by gcc's configure
|
||||
mv $SRCDIR/gmp-* $SRCDIR/gmp
|
||||
mv $SRCDIR/mpfr-* $SRCDIR/mpfr
|
||||
mv $SRCDIR/mpc-* $SRCDIR/mpc
|
||||
fi
|
||||
}
|
||||
|
||||
src_pretest() {
|
||||
tar xfz ${SRC_POOL}/dejagnu-1.5.tar.gz
|
||||
DEJAGNUDIR=$PWD/dejagnu-1.5
|
||||
cd objdir
|
||||
DEJAGNULIBS=$DEJAGNUDIR/lib make -k check
|
||||
}
|
||||
|
||||
# Other interesting configure options:
|
||||
CONFIGURE_OPTS=" \
|
||||
--enable-languages=c,c++,fortran \
|
||||
"
|
|
@ -1,47 +0,0 @@
|
|||
#!/bin/sh
|
||||
# sit class file
|
||||
#
|
||||
# Christoph Niethammer <niethammer@hlrs.de> (C) 2013
|
||||
#
|
||||
# sit command:
|
||||
# PREFIX_BASE=/opt ./sit compiler/gcc/gcc-4.8.1
|
||||
|
||||
CATEGORY="compiler"
|
||||
PACKAGE="gnu"
|
||||
VERSION="4.8.1"
|
||||
URL="http://gcc.gnu.org"
|
||||
INSTALLER="Elke Flehmig <flehmig@hlrs.de>"
|
||||
|
||||
# Archive A and package name P
|
||||
A=gcc-${VERSION}.tar.gz
|
||||
P=gcc-${VERSION}
|
||||
|
||||
src_unpack() {
|
||||
# extract gcc source package
|
||||
unpack
|
||||
if [ $PLATFORM = "laki" ] ; then
|
||||
# On laki currently too old versions of GMP, MPFR and MPC are installed
|
||||
# http://gcc.gnu.org/install/prerequisites.html
|
||||
# unpack required GMP, MPFR and MPC sources into subdirectories
|
||||
tar xjf ${SRC_POOL}/gmp-4.3.2.tar.bz2 -C $SRCDIR
|
||||
tar xjf ${SRC_POOL}/mpfr-2.4.2.tar.bz2 -C $SRCDIR
|
||||
tar xzf ${SRC_POOL}/mpc-0.8.1.tar.gz -C $SRCDIR
|
||||
tar xjf ${SRC_POOL}/isl-0.11.1.tar.bz2 -C $SRCDIR
|
||||
tar xzf ${SRC_POOL}/cloog-0.18.0.tar.gz -C $SRCDIR
|
||||
# rename subdirectories as required by gcc's configure
|
||||
mv $SRCDIR/gmp-* $SRCDIR/gmp
|
||||
mv $SRCDIR/mpfr-* $SRCDIR/mpfr
|
||||
mv $SRCDIR/mpc-* $SRCDIR/mpc
|
||||
mv $SRCDIR/isl-* $SRCDIR/isl
|
||||
mv $SRCDIR/cloog-* $SRCDIR/cloog
|
||||
fi
|
||||
}
|
||||
|
||||
src_pretest() {
|
||||
make check
|
||||
}
|
||||
|
||||
# Other interesting configure options:
|
||||
CONFIGURE_OPTS=" \
|
||||
--enable-languages=c,c++,fortran \
|
||||
"
|
|
@ -1,49 +0,0 @@
|
|||
#!/bin/sh
|
||||
# sit class file
|
||||
#
|
||||
# Christoph Niethammer <niethammer@hlrs.de> (C) 2013
|
||||
#
|
||||
# sit command:
|
||||
# PREFIX_BASE=/opt ./sit compiler/gcc/gcc-4.9.0
|
||||
|
||||
# NOTE FOR NEXT VERSION: use unsupported module autogen (instead of installing myself)!
|
||||
|
||||
CATEGORY="compiler"
|
||||
PACKAGE="gnu"
|
||||
VERSION="4.9.0"
|
||||
URL="http://gcc.gnu.org"
|
||||
INSTALLER="Elke Flehmig <flehmig@hlrs.de>"
|
||||
|
||||
# Archive A and package name P
|
||||
A=gcc-${VERSION}.tar.bz2
|
||||
P=gcc-${VERSION}
|
||||
|
||||
src_unpack() {
|
||||
# extract gcc source package
|
||||
unpack
|
||||
if [ $PLATFORM = "laki" ] ; then
|
||||
# Currently, older versions of GMP, MPFR and MPC are installed to avoid problems
|
||||
# http://gcc.gnu.org/install/prerequisites.html
|
||||
# unpack required GMP, MPFR and MPC sources into subdirectories
|
||||
tar xjf ${SRC_POOL}/gmp-4.3.2.tar.bz2 -C $SRCDIR
|
||||
tar xjf ${SRC_POOL}/mpfr-2.4.2.tar.bz2 -C $SRCDIR
|
||||
tar xzf ${SRC_POOL}/mpc-0.8.1.tar.gz -C $SRCDIR
|
||||
tar xjf ${SRC_POOL}/isl-0.11.1.tar.bz2 -C $SRCDIR
|
||||
tar xzf ${SRC_POOL}/cloog-0.18.0.tar.gz -C $SRCDIR
|
||||
# rename subdirectories as required by gcc's configure
|
||||
mv $SRCDIR/gmp-* $SRCDIR/gmp
|
||||
mv $SRCDIR/mpfr-* $SRCDIR/mpfr
|
||||
mv $SRCDIR/mpc-* $SRCDIR/mpc
|
||||
mv $SRCDIR/isl-* $SRCDIR/isl
|
||||
mv $SRCDIR/cloog-* $SRCDIR/cloog
|
||||
fi
|
||||
}
|
||||
|
||||
src_pretest() {
|
||||
make check
|
||||
}
|
||||
|
||||
# Other interesting configure options:
|
||||
CONFIGURE_OPTS=" \
|
||||
--enable-languages=c,c++,fortran \
|
||||
"
|
|
@ -1,49 +0,0 @@
|
|||
#!/bin/sh
|
||||
# sit class file
|
||||
#
|
||||
# Christoph Niethammer <niethammer@hlrs.de> (C) 2013
|
||||
#
|
||||
# sit command:
|
||||
# PREFIX_BASE=/opt ./sit compiler/gcc/gcc-4.9.1
|
||||
|
||||
# NOTE FOR NEXT VERSION: use unsupported module autogen (instead of installing myself)!
|
||||
|
||||
CATEGORY="compiler"
|
||||
PACKAGE="gnu"
|
||||
VERSION="4.9.1"
|
||||
URL="http://gcc.gnu.org"
|
||||
INSTALLER="Elke Flehmig <flehmig@hlrs.de>"
|
||||
|
||||
# Archive A and package name P
|
||||
A=gcc-${VERSION}.tar.bz2
|
||||
P=gcc-${VERSION}
|
||||
|
||||
src_unpack() {
|
||||
# extract gcc source package
|
||||
unpack
|
||||
if [ $PLATFORM = "laki" ] ; then
|
||||
# Currently, older versions of GMP, MPFR and MPC are installed to avoid problems
|
||||
# http://gcc.gnu.org/install/prerequisites.html
|
||||
# unpack required GMP, MPFR and MPC sources into subdirectories
|
||||
tar xjf ${SRC_POOL}/gmp-4.3.2.tar.bz2 -C $SRCDIR
|
||||
tar xjf ${SRC_POOL}/mpfr-2.4.2.tar.bz2 -C $SRCDIR
|
||||
tar xzf ${SRC_POOL}/mpc-0.8.1.tar.gz -C $SRCDIR
|
||||
tar xjf ${SRC_POOL}/isl-0.12.2.tar.bz2 -C $SRCDIR
|
||||
tar xzf ${SRC_POOL}/cloog-0.18.1.tar.gz -C $SRCDIR
|
||||
# rename subdirectories as required by gcc's configure
|
||||
mv $SRCDIR/gmp-* $SRCDIR/gmp
|
||||
mv $SRCDIR/mpfr-* $SRCDIR/mpfr
|
||||
mv $SRCDIR/mpc-* $SRCDIR/mpc
|
||||
mv $SRCDIR/isl-* $SRCDIR/isl
|
||||
mv $SRCDIR/cloog-* $SRCDIR/cloog
|
||||
fi
|
||||
}
|
||||
|
||||
src_pretest() {
|
||||
make check
|
||||
}
|
||||
|
||||
# Other interesting configure options:
|
||||
CONFIGURE_OPTS=" \
|
||||
--enable-languages=c,c++,fortran \
|
||||
"
|
|
@ -1,47 +0,0 @@
|
|||
#!/bin/sh
|
||||
# sit class file
|
||||
#
|
||||
# Christoph Niethammer <niethammer@hlrs.de> (C) 2015
|
||||
#
|
||||
# sit command:
|
||||
|
||||
|
||||
CATEGORY="compiler"
|
||||
PACKAGE="gnu"
|
||||
VERSION="5.1.0"
|
||||
URL="http://gcc.gnu.org"
|
||||
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
||||
|
||||
# Archive A and package name P
|
||||
A=gcc-${VERSION}.tar.bz2
|
||||
P=gcc-${VERSION}
|
||||
|
||||
src_unpack() {
|
||||
# extract gcc source package
|
||||
unpack
|
||||
if [ $PLATFORM = "laki" ] ; then
|
||||
# Currently, older versions of GMP, MPFR and MPC are installed to avoid problems
|
||||
# http://gcc.gnu.org/install/prerequisites.html
|
||||
# unpack required GMP, MPFR and MPC sources into subdirectories
|
||||
tar xjf ${SRC_POOL}/gmp-4.3.2.tar.bz2 -C $SRCDIR
|
||||
tar xjf ${SRC_POOL}/mpfr-2.4.2.tar.bz2 -C $SRCDIR
|
||||
tar xzf ${SRC_POOL}/mpc-0.8.1.tar.gz -C $SRCDIR
|
||||
tar xjf ${SRC_POOL}/isl-0.12.2.tar.bz2 -C $SRCDIR
|
||||
tar xzf ${SRC_POOL}/cloog-0.18.1.tar.gz -C $SRCDIR
|
||||
# rename subdirectories as required by gcc's configure
|
||||
mv $SRCDIR/gmp-* $SRCDIR/gmp
|
||||
mv $SRCDIR/mpfr-* $SRCDIR/mpfr
|
||||
mv $SRCDIR/mpc-* $SRCDIR/mpc
|
||||
mv $SRCDIR/isl-* $SRCDIR/isl
|
||||
mv $SRCDIR/cloog-* $SRCDIR/cloog
|
||||
fi
|
||||
}
|
||||
|
||||
src_pretest() {
|
||||
make check
|
||||
}
|
||||
|
||||
# Other interesting configure options:
|
||||
CONFIGURE_OPTS=" \
|
||||
--enable-languages=c,c++,fortran \
|
||||
"
|
|
@ -1,47 +0,0 @@
|
|||
#!/bin/sh
|
||||
# sit class file
|
||||
#
|
||||
# Christoph Niethammer <niethammer@hlrs.de> (C) 2015
|
||||
#
|
||||
# sit command:
|
||||
|
||||
|
||||
CATEGORY="compiler"
|
||||
PACKAGE="gnu"
|
||||
VERSION="5.2.0"
|
||||
URL="http://gcc.gnu.org"
|
||||
INSTALLER="Tünde Erdei <erdei@hlrs.de>"
|
||||
|
||||
# Archive A and package name P
|
||||
A=gcc-${VERSION}.tar.bz2
|
||||
P=gcc-${VERSION}
|
||||
|
||||
src_unpack() {
|
||||
# extract gcc source package
|
||||
unpack
|
||||
if [ $PLATFORM = "laki" ] ; then
|
||||
# Currently, older versions of GMP, MPFR and MPC are installed to avoid problems
|
||||
# http://gcc.gnu.org/install/prerequisites.html
|
||||
# unpack required GMP, MPFR and MPC sources into subdirectories
|
||||
tar xjf ${SRC_POOL}/gmp-4.3.2.tar.bz2 -C $SRCDIR
|
||||
tar xjf ${SRC_POOL}/mpfr-2.4.2.tar.bz2 -C $SRCDIR
|
||||
tar xzf ${SRC_POOL}/mpc-0.8.1.tar.gz -C $SRCDIR
|
||||
tar xjf ${SRC_POOL}/isl-0.12.2.tar.bz2 -C $SRCDIR
|
||||
tar xzf ${SRC_POOL}/cloog-0.18.1.tar.gz -C $SRCDIR
|
||||
# rename subdirectories as required by gcc's configure
|
||||
mv $SRCDIR/gmp-* $SRCDIR/gmp
|
||||
mv $SRCDIR/mpfr-* $SRCDIR/mpfr
|
||||
mv $SRCDIR/mpc-* $SRCDIR/mpc
|
||||
mv $SRCDIR/isl-* $SRCDIR/isl
|
||||
mv $SRCDIR/cloog-* $SRCDIR/cloog
|
||||
fi
|
||||
}
|
||||
|
||||
src_pretest() {
|
||||
make check
|
||||
}
|
||||
|
||||
# Other interesting configure options:
|
||||
CONFIGURE_OPTS=" \
|
||||
--enable-languages=c,c++,fortran \
|
||||
"
|
|
@ -1,45 +0,0 @@
|
|||
#!/bin/sh
|
||||
# sit class file
|
||||
#
|
||||
# Christoph Niethammer <niethammer@hlrs.de> (C) 2015
|
||||
#
|
||||
# sit command:
|
||||
|
||||
|
||||
CATEGORY="compiler"
|
||||
PACKAGE="gnu"
|
||||
VERSION="6-20160403"
|
||||
URL="http://gcc.gnu.org"
|
||||
INSTALLER="Tünde Erdei <erdei@hlrs.de>"
|
||||
|
||||
# Archive A and package name P
|
||||
A=gcc-${VERSION}.tar.bz2
|
||||
P=gcc-${VERSION}
|
||||
|
||||
src_unpack() {
|
||||
# extract gcc source package
|
||||
unpack
|
||||
if [ $PLATFORM = "laki" ] ; then
|
||||
# Currently, older versions of GMP, MPFR and MPC are installed to avoid problems
|
||||
# http://gcc.gnu.org/install/prerequisites.html
|
||||
# unpack required GMP, MPFR and MPC sources into subdirectories
|
||||
tar xjf ${SRC_POOL}/gmp-4.3.2.tar.bz2 -C $SRCDIR
|
||||
tar xjf ${SRC_POOL}/mpfr-2.4.2.tar.bz2 -C $SRCDIR
|
||||
tar xzf ${SRC_POOL}/mpc-0.8.1.tar.gz -C $SRCDIR
|
||||
tar xjf ${SRC_POOL}/isl-0.15.tar.bz2 -C $SRCDIR
|
||||
# rename subdirectories as required by gcc's configure
|
||||
mv $SRCDIR/gmp-* $SRCDIR/gmp
|
||||
mv $SRCDIR/mpfr-* $SRCDIR/mpfr
|
||||
mv $SRCDIR/mpc-* $SRCDIR/mpc
|
||||
mv $SRCDIR/isl-* $SRCDIR/isl
|
||||
fi
|
||||
}
|
||||
|
||||
src_pretest() {
|
||||
make check
|
||||
}
|
||||
|
||||
# Other interesting configure options:
|
||||
CONFIGURE_OPTS=" \
|
||||
--enable-languages=c,c++,fortran \
|
||||
"
|
Loading…
Reference in a new issue