Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill the pipol build scripts
authorGabriel Corona <gabriel.corona@loria.fr>
Mon, 15 Jun 2015 09:46:15 +0000 (11:46 +0200)
committerGabriel Corona <gabriel.corona@loria.fr>
Mon, 15 Jun 2015 09:46:15 +0000 (11:46 +0200)
pipol does not exist anymore.

15 files changed:
buildtools/pipol/Experimental_bindings.sh [deleted file]
buildtools/pipol/MemCheck.sh [deleted file]
buildtools/pipol/Nightly_memCheck.sh [deleted file]
buildtools/pipol/Nightly_simgrid.sh [deleted file]
buildtools/pipol/cmake.pl [deleted file]
buildtools/pipol/deploy.sh [deleted file]
buildtools/pipol/install_gtnets.sh [deleted file]
buildtools/pipol/install_ns3.sh [deleted file]
buildtools/pipol/pre-simgrid.sh [deleted file]
buildtools/pipol/rc.debian [deleted file]
buildtools/pipol/rc.fedora [deleted file]
buildtools/pipol/rc.mac [deleted file]
buildtools/pipol/rc.ubuntu [deleted file]
buildtools/pipol/rc.windows [deleted file]
buildtools/pipol/ruby.pl [deleted file]

diff --git a/buildtools/pipol/Experimental_bindings.sh b/buildtools/pipol/Experimental_bindings.sh
deleted file mode 100755 (executable)
index 8e7f0ea..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-#!/bin/bash
-
-ulimit -c 0
-
-if [ -e ./pipol ] ; then
-       rm -rf ./pipol/$PIPOL_HOST
-       mkdir ./pipol/$PIPOL_HOST
-else
-       mkdir ./pipol
-       rm -rf ./pipol/$PIPOL_HOST
-       mkdir ./pipol/$PIPOL_HOST
-fi
-cd ./pipol/$PIPOL_HOST
-
-export GIT_SSL_NO_VERIFY=1
-git clone git://scm.gforge.inria.fr/simgrid/simgrid.git
-cd simgrid
-#git checkout v3_7_x
-
-perl ./buildtools/pipol/cmake.pl
-perl ./buildtools/pipol/ruby.pl
-
-if [ -e /usr/bin/gcc-4.6 ] ; then
-export CC=gcc-4.6
-export CXX=g++-4.6
-else
-export CC=gcc
-export CXX=g++
-fi
-
-mkdir build-def
-cd build-def
-
-#DEFAULT CONF
-cmake \
--Denable_smpi_MPICH3_testsuite=on ..
-ctest -D ExperimentalStart
-ctest -D ExperimentalConfigure
-ctest -D ExperimentalBuild
-ctest -D ExperimentalTest
-ctest -D ExperimentalSubmit
-cd ../
-rm -rf ./build-def
-
-# really clean the working directory
-git reset --hard master
-git clean -dfx
-
-#MC
-cmake \
--Denable_coverage=on \
--Denable_model-checking=on \
--Denable_lua=on \
--Denable_compile_optimizations=off .
-ctest -D ExperimentalStart
-ctest -D ExperimentalConfigure
-ctest -D ExperimentalBuild
-ctest -D ExperimentalTest
-ctest -D ExperimentalCoverage
-ctest -D ExperimentalSubmit
-
-export SIMGRID_ROOT=`pwd`
-export LD_LIBRARY_PATH=`pwd`/lib
-export DYLD_LIBRARY_PATH=`pwd`/lib #for mac
-
-cd ../
-git clone git://scm.gforge.inria.fr/simgrid/simgrid-ruby.git simgrid-ruby --quiet
-cd simgrid-ruby
-
-cmake .
-ctest -D ExperimentalStart
-ctest -D ExperimentalConfigure
-ctest -D ExperimentalBuild
-ctest -D ExperimentalTest
-ctest -D ExperimentalSubmit
diff --git a/buildtools/pipol/MemCheck.sh b/buildtools/pipol/MemCheck.sh
deleted file mode 100755 (executable)
index c696420..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/bin/bash
-
-ulimit -c 0
-
-if [ -e ./pipol ] ; then
-       rm -rf ./pipol/$PIPOL_HOST
-       mkdir ./pipol/$PIPOL_HOST
-else
-       mkdir ./pipol
-       rm -rf ./pipol/$PIPOL_HOST
-       mkdir ./pipol/$PIPOL_HOST
-fi
-cd ./pipol/$PIPOL_HOST
-
-export GIT_SSL_NO_VERIFY=1
-git clone git://scm.gforge.inria.fr/simgrid/simgrid.git
-cd simgrid
-
-perl ./buildtools/pipol/cmake.pl
-perl ./buildtools/pipol/ruby.pl
-
-if [ -e /usr/bin/gcc-4.6 ] ; then
-export CC=gcc-4.6
-export CXX=g++-4.6
-else
-export CC=gcc
-export CXX=g++
-fi
-
-#mem-check
-cmake \
--Denable_lua=off \
--Denable_tracing=on \
--Denable_smpi=on \
--Denable_compile_optimizations=off \
--Denable_compile_warnings=on \
--Denable_lib_static=off \
--Denable_model-checking=off \
--Denable_latency_bound_tracking=off \
--Denable_gtnets=off \
--Denable_jedule=off \
--Denable_mallocators=off \
--Denable_memcheck=on ./
-ctest -D ExperimentalStart
-ctest -D ExperimentalConfigure
-ctest -D ExperimentalBuild
-ctest -D ExperimentalMemCheck
-ctest -D ExperimentalSubmit
diff --git a/buildtools/pipol/Nightly_memCheck.sh b/buildtools/pipol/Nightly_memCheck.sh
deleted file mode 100755 (executable)
index a1720c6..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-#!/bin/bash
-
-ulimit -c 0
-
-#PIPOL esn amd64_2010-linux-ubuntu-maverick.dd.gz none 02:00 --user --silent
-
-if [ -e ./pipol ] ; then
-       rm -rf ./pipol/$PIPOL_HOST
-       mkdir ./pipol/$PIPOL_HOST
-else
-       mkdir ./pipol
-       rm -rf ./pipol/$PIPOL_HOST
-       mkdir ./pipol/$PIPOL_HOST
-fi
-cd ./pipol/$PIPOL_HOST
-
-export GIT_SSL_NO_VERIFY=1
-git clone git://scm.gforge.inria.fr/simgrid/simgrid.git
-cd simgrid
-
-perl ./buildtools/pipol/cmake.pl
-perl ./buildtools/pipol/ruby.pl
-
-if [ -e /usr/bin/gcc-4.6 ] ; then
-export CC=gcc-4.6
-export CXX=g++-4.6
-else
-export CC=gcc
-export CXX=g++
-fi
-
-#mem-check
-cmake \
--Denable_lua=off \
--Denable_tracing=on \
--Denable_smpi=on \
--Denable_compile_optimizations=off \
--Denable_compile_warnings=on \
--Denable_lib_static=off \
--Denable_model-checking=off \
--Denable_latency_bound_tracking=off \
--Denable_gtnets=off \
--Denable_jedule=off \
--Denable_mallocators=off \
--Denable_memcheck=on ./
-ctest -D NightlyStart
-ctest -D NightlyConfigure
-ctest -D NightlyBuild
-ctest -D NightlyMemCheck
-ctest -D NightlySubmit
diff --git a/buildtools/pipol/Nightly_simgrid.sh b/buildtools/pipol/Nightly_simgrid.sh
deleted file mode 100755 (executable)
index b556483..0000000
+++ /dev/null
@@ -1,118 +0,0 @@
-#!/bin/bash
-
-#PRE-PIPOL ~/pre-simgrid.sh
-
-#___________________________________________________________________________________________________
-#Ubuntu 9.10________________________________________________________________________________________
-#PIPOL esn i386-linux-ubuntu-karmic.dd.gz none 02:00 --user --silent
-#PIPOL esn amd64-linux-ubuntu-karmic.dd.gz none 02:00 --user --silent
-
-#Ubuntu 10.04
-#PIPOL esn i386-linux-ubuntu-lucid.dd.gz none 02:00 --user --silent
-#PIPOL esn amd64-linux-ubuntu-lucid.dd.gz pipol8 05:00 --user --silent
-
-#Ubuntu 10.10
-#PIPOL esn amd64_2010-linux-ubuntu-maverick.dd.gz none 02:00 --user --silent
-
-#___________________________________________________________________________________________________
-#Fedora 12__________________________________________________________________________________________
-#PIPOL esn i386-linux-fedora-core12.dd.gz none 02:00 --user --silent
-#PIPOL esn amd64-linux-fedora-core12.dd.gz none 02:00 --user --silent
-
-#Fedora 13
-#PIPOL esn i386-linux-fedora-core13.dd.gz none 02:00 --user --silent
-#PIPOL esn amd64-linux-fedora-core13.dd.gz none 02:00 --user --silent
-
-#Fedora 14
-#PIPOL esn amd64_2010-linux-fedora-core14.dd.gz none 02:00 --user --silent
-#PIPOL esn i386_2010-linux-fedora-core14.dd.gz none 02:00 --user --silent
-
-#__________________________________________________________________________________________________
-#Debian Lenny 5.0___________________________________________________________________________________
-#PIPOL esn i386-linux-debian-lenny.dd.gz none 02:00 --user --silent
-#PIPOL esn amd64-linux-debian-lenny.dd.gz none 02:00 --user --silent
-
-#Debian Lenny 6.0
-#PIPOL esn amd64_2010-linux-debian-squeeze.dd.gz none 02:00 --user --silent
-
-#Debian Testing
-#PIPOL esn i386-linux-debian-testing none 02:00 --user --silent
-#PIPOL esn amd64-linux-debian-testing none 02:00 --user --silent
-
-#___________________________________________________________________________________________________
-#MacOS Snow Leopard 10.6____________________________________________________________________________
-
-ulimit -c 0
-
-if [ -e ./pipol ] ; then
-        rm -rf ./pipol/$PIPOL_HOST
-        mkdir ./pipol/$PIPOL_HOST
-else
-        mkdir ./pipol
-        rm -rf ./pipol/$PIPOL_HOST
-        mkdir ./pipol/$PIPOL_HOST
-fi
-cd ./pipol/$PIPOL_HOST
-
-export GIT_SSL_NO_VERIFY=1
-git clone git://scm.gforge.inria.fr/simgrid/simgrid.git
-cd simgrid
-#git checkout v3_7_x
-
-perl ./buildtools/pipol/cmake.pl
-perl ./buildtools/pipol/ruby.pl
-
-if [ -e /usr/bin/gcc-4.6 ] ; then
-export CC=gcc-4.6
-export CXX=g++-4.6
-else
-export CC=gcc
-export CXX=g++
-fi
-
-mkdir build-def
-cd build-def
-
-#DEFAULT CONF
-cmake \
--Denable_smpi_MPICH3_testsuite=on ..
-ctest -D NightlyStart
-ctest -D NightlyConfigure
-ctest -D NightlyBuild
-ctest -D NightlyTest
-ctest -D NightlySubmit
-cd ../
-rm -rf ./build-def
-
-# really clean the working directory
-git reset --hard master
-git clean -dfx
-
-#MC
-cmake \
--Denable_coverage=on \
--Denable_model-checking=on \
--Denable_java=on \
--Denable_lua=on \
--Denable_compile_optimizations=off .
-ctest -D NightlyStart
-ctest -D NightlyConfigure
-ctest -D NightlyBuild
-ctest -D NightlyTest
-ctest -D NightlyCoverage
-ctest -D NightlySubmit
-
-export SIMGRID_ROOT=`pwd`
-export LD_LIBRARY_PATH=`pwd`/lib
-export DYLD_LIBRARY_PATH=`pwd`/lib #for mac
-
-cd ../
-git clone git://scm.gforge.inria.fr/simgrid/simgrid-ruby.git simgrid-ruby --quiet
-cd simgrid-ruby
-
-cmake .
-ctest -D NightlyStart
-ctest -D NightlyConfigure
-ctest -D NightlyBuild
-ctest -D NightlyTest
-ctest -D NightlySubmit
diff --git a/buildtools/pipol/cmake.pl b/buildtools/pipol/cmake.pl
deleted file mode 100644 (file)
index 01cf9f0..0000000
+++ /dev/null
@@ -1,104 +0,0 @@
-#!/usr/bin/perl -w
-use strict;
-
-my($my_cmake_version);
-my($cmake);
-my($ctest);
-my($cpack);
-
-$my_cmake_version = `cmake --version`;
-$cmake = `which cmake`;
-$ctest = `which ctest`;
-$cpack = `which cpack`;
-print "$cmake";
-print "$ctest";
-print "$cpack";
-
-chomp $cmake;
-chomp $ctest;
-chomp $cpack;
-
-if ( -f "$cmake" )
-  {
-  if($my_cmake_version =~ /.*2.8.[0-9].*$/)
-    {
-    print "cmake version : $my_cmake_version";
-    }
-    else
-    {
-    if($my_cmake_version =~ /.*2.6.[1-9].*$/)
-      {
-      print "version > 2.6.0\n";
-      system "wget http://www.cmake.org/files/v2.8/cmake-2.8.2.tar.gz";
-      system "tar zxvf cmake-2.8.2.tar.gz";
-      chdir("./cmake-2.8.2");
-      system "cmake .";
-      system "make";
-      if (-f "./bin/cmake"){
-       system "sudo ln -sf `pwd`/bin/cmake $cmake";
-       system "sudo ln -sf `pwd`/bin/cpack $cpack";
-       system "sudo ln -sf `pwd`/bin/ctest $ctest";
-       }
-       else
-       {
-       return;
-       }
-
-       }
-       else
-       {
-       print "version < 2.6.1\n";
-       system "wget http://www.cmake.org/files/v2.6/cmake-2.6.4.tar.gz";
-       system "wget http://www.cmake.org/files/v2.8/cmake-2.8.2.tar.gz";
-
-       system "tar zxvf cmake-2.6.4.tar.gz";
-       chdir("./cmake-2.6.4/");
-       system "cmake .";
-       system "make";
-       if (-f "./bin/cmake"){
-         system "sudo ln -sf `pwd`/bin/cmake $cmake";
-         system "sudo ln -sf `pwd`/bin/cpack $cpack";
-         system "sudo ln -sf `pwd`/bin/ctest $ctest";
-         }
-         else
-         {
-         return;
-         }
-         chdir("./..");
-
-         $my_cmake_version = `cmake --version`;
-         print "cmake version : $my_cmake_version";
-         $cmake = `which cmake`;
-         $ctest = `which ctest`;
-         $cpack = `which cpack`;
-         print "$cmake";
-         print "$ctest";
-         print "$cpack";
-         chomp $cmake;
-         chomp $ctest;
-         chomp $cpack;
-
-         system "tar zxvf cmake-2.8.2.tar.gz";
-         chdir("./cmake-2.8.2/");
-         system "cmake .";
-         system "make";
-         if (-f "./bin/cmake"){
-           system "sudo ln -sf `pwd`/bin/cmake $cmake";
-           system "sudo ln -sf `pwd`/bin/cpack $cpack";
-           system "sudo ln -sf `pwd`/bin/ctest $ctest";
-           }
-           else
-           {
-           return;
-           }
-           }
-           $my_cmake_version = `cmake --version`;
-           print "cmake version : $my_cmake_version";
-           $cmake = `which cmake`;
-           $ctest = `which ctest`;
-           $cpack = `which cpack`;
-           print "$cmake";
-           print "$ctest";
-           print "$cpack";
-           }
-           }
diff --git a/buildtools/pipol/deploy.sh b/buildtools/pipol/deploy.sh
deleted file mode 100755 (executable)
index 90b8af5..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/bash
-
-#___________________________________________________________________________________________________
-#Ubuntu 9.10________________________________________________________________________________________
-ssh pipol pipol-sub esn i386-linux-ubuntu-karmic.dd.gz none 02:00 "~/Experimental_bindings.sh"
-ssh pipol pipol-sub esn amd64-linux-ubuntu-karmic.dd.gz none 02:00 "~/Experimental_bindings.sh"
-
-#Ubuntu 10.04
-ssh pipol pipol-sub esn i386-linux-ubuntu-lucid.dd.gz none 02:00 "~/Experimental_bindings.sh"
-ssh pipol pipol-sub esn amd64-linux-ubuntu-lucid.dd.gz none 02:00 "~/Experimental_bindings.sh"
-
-#Ubuntu 10.10
-ssh pipol pipol-sub esn amd64_2010-linux-ubuntu-maverick.dd.gz none 02:00 "~/Experimental_bindings.sh"
-
-#___________________________________________________________________________________________________
-#Fedora 12__________________________________________________________________________________________
-ssh pipol pipol-sub esn i386-linux-fedora-core12.dd.gz none 02:00 "~/Experimental_bindings.sh"
-ssh pipol pipol-sub esn amd64-linux-fedora-core12.dd.gz none 02:00 "~/Experimental_bindings.sh"
-
-#Fedora 13
-ssh pipol pipol-sub esn i386-linux-fedora-core13.dd.gz none 02:00 "~/Experimental_bindings.sh"
-ssh pipol pipol-sub esn amd64-linux-fedora-core13.dd.gz none 02:00 "~/Experimental_bindings.sh"
-
-#Fedora 14
-ssh pipol pipol-sub esn amd64_2010-linux-fedora-core14.dd.gz none 02:00 "~/Experimental_bindings.sh"
-ssh pipol pipol-sub esn i386_2010-linux-fedora-core14.dd.gz none 02:00 "~/Experimental_bindings.sh"
-
-#___________________________________________________________________________________________________
-#Debian Lenny 5.0___________________________________________________________________________________
-ssh pipol pipol-sub esn i386-linux-debian-lenny.dd.gz none 02:00 "~/Experimental_bindings.sh"
-ssh pipol pipol-sub esn amd64-linux-debian-lenny.dd.gz none 02:00 "~/Experimental_bindings.sh"
-
-#Debian Lenny 6.0
-ssh pipol pipol-sub esn amd64_2010-linux-debian-squeeze.dd.gz none 02:00 "~/Experimental_bindings.sh"
-ssh pipol pipol-sub esn i386_2010-linux-debian-squeeze.dd.gz none 02:00 "~/Experimental_bindings.sh"
-
-#Debian Testing
-ssh pipol pipol-sub esn i386-linux-debian-testing none 02:00 "~/Experimental_bindings.sh"
-ssh pipol pipol-sub esn amd64-linux-debian-testing none 02:00 "~/Experimental_bindings.sh"
\ No newline at end of file
diff --git a/buildtools/pipol/install_gtnets.sh b/buildtools/pipol/install_gtnets.sh
deleted file mode 100644 (file)
index fe015eb..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-SYSTEM=`uname`
-if [ $SYSTEM = Linux ] ; then
-       if [ x$1 != x ]  ; then
-               prefix=$1;
-       fi
-       
-       if [ -e $prefix/lib ] ; then
-               echo -n ""
-       else    
-               echo "Creating directory $prefix/lib";
-               mkdir -p $prefix/lib;
-       fi
-       
-       if [ -e $prefix/include/gtnets ] ; then
-               echo -n "";
-       else    
-               echo "Creating directory $prefix/include/gtnets";
-               mkdir -p $prefix/include/gtnets;
-       fi
-       
-       localdir=`pwd`;
-       cd $prefix;
-       prefix=`pwd`;
-       cd $localdir;
-       echo "Install to prefix = $prefix";
-       
-       echo "Downloading GTNetS from SVN SimGrid's repository";
-       svn checkout svn://scm.gforge.inria.fr/svn/simgrid/contrib/trunk/GTNetS/ --quiet
-       cd GTNetS
-       echo "Uncompressing package";
-       unzip gtnets-current.zip > /dev/null
-       tar zxvf gtnets-current-patch.tgz  > /dev/null
-       cd gtnets-current
-       cat ../00*.patch | patch -p1 > /dev/null
-       
-       ARCH_32=`uname -m | cut -d'_' -f2`
-       
-       if [ x$ARCH_32 = x64 ] ; then #only if 64 bit processor family
-       cat ../AMD64-FATAL-Removed-DUL_SIZE_DIFF-Added-fPIC-compillin.patch | patch -p1 > /dev/null
-       fi
-       
-       ln -sf Makefile.linux Makefile
-       echo "Creating dependencies";
-       make -j 3 depend > /dev/null
-       echo "Compiling GTNetS debug libs";
-       make -j 3 debug > /dev/null 2>&1
-       echo "Compiling GTNetS optimal libs";
-       make -j 3 opt > /dev/null 2>&1
-       wait
-       
-       cd ../../
-       
-       echo "Copying files to $prefix/lib";
-       cp -fr ./GTNetS/gtnets-current/*.so $prefix/lib/
-       ln -sf $prefix/lib/libgtsim-opt.so $prefix/lib/libgtnets.so
-       
-       echo "Copying files to $prefix/include/gtnets";
-       cp -fr ./GTNetS/gtnets-current/SRC/*.h $prefix/include/gtnets
-       wait
-       
-       echo "Done with gtnets installation";
-       rm -rf ./GTNetS
-fi
\ No newline at end of file
diff --git a/buildtools/pipol/install_ns3.sh b/buildtools/pipol/install_ns3.sh
deleted file mode 100644 (file)
index 0cfed93..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-#Need python python-dev
-sudo apt-get install python python-dev
-       
-SYSTEM=`uname`
-if [ $SYSTEM = Linux ] ; then
-       if [ x$1 != x ]  ; then
-               prefix=$1;
-       fi
-       
-       if [ -e $prefix ] ; then
-               echo -n ""
-       else    
-               echo "Creating directory $prefix"
-               mkdir -p $prefix;
-       fi
-       
-       if [ -e $prefix/lib ] ; then
-               echo -n ""
-       else    
-               echo "Creating directory $prefix/lib"
-               mkdir -p $prefix/lib;
-       fi
-       
-       if [ -e $prefix/include/ns3 ] ; then
-               echo -n ""
-       else    
-               echo "Creating directory $prefix/include/ns3"
-               mkdir -p $prefix/include/ns3;
-       fi
-       
-       if [ -e $prefix/doc/html ] ; then
-               echo -n ""
-       else    
-               echo "Creating directory $prefix/doc/html"
-               mkdir -p $prefix/doc/html;
-       fi
-       
-       localdir=`pwd`
-       cd $prefix
-       prefix=`pwd`
-       cd $localdir
-       echo "Install to prefix = $prefix"
-       
-       echo "Downloading NS3"
-       wget http://ns-3.googlecode.com/files/ns-allinone-3.10.tar.bz2
-       
-       echo "Uncompressing package";
-       tar -xvjf ns-allinone-3.10.tar.bz2
-       rm -rf ns-allinone-3.10.tar.bz2
-       cd ns-allinone-3.10/ns-3.10
-       
-       ./waf configure
-       ./waf
-       ./waf --doxygen
-       
-       cp -f build/debug/libns3.so $prefix/lib/libns3.so
-       cp -f build/debug/ns3/* $prefix/include/ns3/
-       cp -f doc/html/* $prefix/doc/html/
-fi
\ No newline at end of file
diff --git a/buildtools/pipol/pre-simgrid.sh b/buildtools/pipol/pre-simgrid.sh
deleted file mode 100644 (file)
index 7d042f8..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-#! /bin/sh
-
-set -e
-
-rm -rf ~/.pipol/log/*
-
-#if [ -e ~/version/bckup_version ] ; then
-#      svn cleanup version/
-#      cd ~/version
-#      svn up README --quiet
-#else
-#      if [ -e ~/version ] ; then
-#              svn cleanup version/
-#              echo "0000P" > ~/version/bckup_version
-#      else
-#              mkdir ~/version
-#              echo "0000P" > ~/version/bckup_version
-#      fi
-#      cd ~/
-#      svn checkout svn://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk ~/version --depth empty --quiet
-#
-#      cd ~/version
-#      svn up README --quiet
-#fi
-
-#old_version=`cat bckup_version`
-#new_version=`svnversion`
-Date=`date`
-
-echo date : $date
-#echo version old : $old_version
-#echo version svn : $new_version
-#echo `svnversion` > bckup_version
-
-#if [ "$old_version" = "$new_version" ] ; then
-#      echo "matches"  
-#      exit 1
-#else
-#      echo "not matches"
-       exit 0
-#fi
diff --git a/buildtools/pipol/rc.debian b/buildtools/pipol/rc.debian
deleted file mode 100644 (file)
index 67e8688..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-#!/bin/bash
-
-sudo aptitude update
-
-sudo aptitude -y install cmake
-sudo aptitude -y install default-jdk
-sudo aptitude -y install swig
-sudo aptitude -y install f2c
-sudo aptitude -y install g++
-sudo aptitude -y install gcc
-sudo aptitude -y install git
-sudo aptitude -y install git-core
-sudo aptitude -y install graphviz-dev graphviz
-sudo aptitude -y install libboost-dev
-sudo aptitude -y install liblua5.1-dev lua5.1
-sudo aptitude -y install libunwind7-dev
-sudo aptitude -y install make
-sudo aptitude -y install valgrind
-
-which_svn=`which svn`          #svn necessary
-which_gcc=`which gcc`          #gcc gcc necessary
-which_gpp=`which g++`          #gcc g++ necessary
-which_make=`which make`                #make necessary
-which_java=`which java`                #java optional
-which_swig=`which swig`                #swig optional
-which_lua=`which lua`          #lua
-which_cmake=`which cmake`      #cmake necessary
-which_unzip=`which unzip`      #unzip for gtnets
-which_wget=`which wget`                #wget for cmake
-which_dot=`which dot`          #dot for cgraph
-which_perl=`which perl`                #perl
-which_f2c=`which f2c`          #f2c
-which_gcov=`which gcov`     #gcov
-which_git=`which git`
-echo "DEBUT----------------------------------"
-echo $which_cmake
-echo $which_unzip
-echo $which_lua
-echo $which_java
-echo $which_swig
-echo $which_make
-echo $which_gcc
-echo $which_gpp
-echo $which_svn
-echo $which_dot
-echo $which_wget
-echo $which_perl
-echo $which_f2c
-echo $which_gcov
-echo $which_git
-echo "FIN------------------------------------"
diff --git a/buildtools/pipol/rc.fedora b/buildtools/pipol/rc.fedora
deleted file mode 100644 (file)
index 9c0f818..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/bash
-
-# find the package you need on https://admin.fedoraproject.org/pkgdb/
-
-sudo yum -y -q update
-
-sudo yum -y -q install boost-devel
-sudo yum -y -q install cmake
-sudo yum -y -q install f2c
-sudo yum -y -q install gcc
-sudo yum -y -q install git-core
-sudo yum -y -q install graphviz-dev graphviz
-sudo yum -y -q install java-1.6.0-openjdk
-sudo yum -y -q install swig
-sudo yum -y -q install libunwind libunwind-devel
-sudo yum -y -q install lua-devel lua
-sudo yum -y -q install make
-sudo yum -y -q install perl
-sudo yum -y -q install ruby ruby-devel
-sudo yum -y -q install unzip
-sudo yum -y -q install wget
-
-which_svn=`which svn`          #svn necessary
-which_gcc=`which gcc`          #gcc gcc necessary
-which_gpp=`which g++`          #gcc g++ necessary
-which_make=`which make`                #make necessary
-which_java=`which java`                #java optional
-which_swig=`which swig`                #swig optional
-which_lua=`which lua`          #lua
-which_cmake=`which cmake`      #cmake necessary
-which_unzip=`which unzip`      #unzip for gtnets
-which_wget=`which wget`                #wget for cmake
-which_dot=`which dot`          #dot for cgraph
-which_perl=`which perl`                #perl
-which_f2c=`which f2c`          #f2c
-which_gcov=`which gcov`     #gcov
-which_git=`which git`
-echo "DEBUT----------------------------------"
-echo $which_cmake
-echo $which_unzip
-echo $which_lua
-echo $which_java
-echo $which_swig
-echo $which_make
-echo $which_gcc
-echo $which_gpp
-echo $which_svn
-echo $which_dot
-echo $which_wget
-echo $which_perl
-echo $which_f2c
-echo $which_gcov
-echo $which_git
-echo "FIN------------------------------------"
diff --git a/buildtools/pipol/rc.mac b/buildtools/pipol/rc.mac
deleted file mode 100644 (file)
index 7538a6c..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/bin/bash
-
-#sudo port install wget
-#sudo port install gcc46
-#sudo port install graphviz-devel
-#sudo port install lua
-#sudo port install swig
-#sudo port select bf2c
-
-sudo port install ruby19
-sudo ln -sf /opt/local/lib/libruby.1.9.1.dylib /usr/lib/libruby.dylib
-sudo ln -sf /opt/local/bin/ruby1.9 /usr/bin/ruby
-
-#sudo port select gcc mp-gcc46
-
-which_gcc=`which gcc`          #gcc gcc necessary
-which_gpp=`which g++`          #gcc g++ necessary
-which_make=`which make`                #make necessary
-which_java=`which java`                #java optional
-which_java=`which swig`                #swig optional
-which_lua=`which lua`          #lua
-which_cmake=`which cmake`      #cmake necessary
-which_unzip=`which unzip`      #unzip for gtnets
-which_wget=`which wget`                #wget for cmake
-which_dot=`which dot`          #dot for cgraph
-which_perl=`which perl`                #perl
-which_f2c=`which f2c`          #f2c
-which_gcov=`which gcov`     #gcov
-which_git=`which git`
-echo "DEBUT----------------------------------"
-echo $which_cmake
-echo $which_unzip
-echo $which_lua
-echo $which_java
-echo $which_swig
-echo $which_make
-echo $which_gcc
-echo $which_gpp
-echo $which_dot
-echo $which_wget
-echo $which_perl
-echo $which_f2c
-echo $which_gcov
-echo $which_git
-echo "FIN------------------------------------"
diff --git a/buildtools/pipol/rc.ubuntu b/buildtools/pipol/rc.ubuntu
deleted file mode 100644 (file)
index 19658e8..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-#!/bin/bash
-
-sudo apt-get update
-
-sudo apt-get -y -qq install cmake
-sudo apt-get -y -qq install default-jdk
-sudo apt-get -y -qq install swig
-sudo apt-get -y -qq install f2c
-sudo apt-get -y -qq install g++
-sudo apt-get -y -qq install gcc
-sudo apt-get -y -qq install git-core
-sudo apt-get -y -qq install graphviz-dev graphviz
-sudo apt-get -y -qq install libboost-dev
-sudo apt-get -y -qq install liblua5.1-dev lua5.1
-sudo apt-get -y -qq install libunwind7-dev
-sudo apt-get -y -qq install make
-sudo apt-get -y -qq install perl
-sudo apt-get -y -qq install unzip
-sudo apt-get -y -qq install valgrind
-sudo apt-get -y -qq install wget
-
-if [ $PIPOL_IMAGE == "i386-linux-ubuntu-lucid.dd.gz" ]; then
-  wget http://mirror.ovh.net/ubuntu//pool/universe/libu/libunwind/libunwind7_0.99-0.3ubuntu1_i386.deb
-  sudo dpkg -i libunwind7_0.99-0.3ubuntu1_i386.deb
-fi
-
-if [ $PIPOL_IMAGE == "amd64-linux-ubuntu-lucid.dd.gz" ]; then
-  wget http://mirror.ovh.net/ubuntu//pool/universe/libu/libunwind/libunwind7_0.99-0.3ubuntu1_amd64.deb
-  sudo dpkg -i libunwind7_0.99-0.3ubuntu1_amd64.deb
-fi
-
-which_svn=`which svn`          #svn necessary
-which_gcc=`which gcc`          #gcc gcc necessary
-which_gpp=`which g++`          #gcc g++ necessary
-which_make=`which make`                #make necessary
-which_java=`which java`                #java optional
-which_swig=`which swig`                #swig optional
-which_lua=`which lua`          #lua
-which_cmake=`which cmake`      #cmake necessary
-which_unzip=`which unzip`      #unzip for gtnets
-which_wget=`which wget`                #wget for cmake
-which_dot=`which dot`          #dot for cgraph
-which_perl=`which perl`                #perl
-which_f2c=`which f2c`          #f2c
-which_gcov=`which gcov`     #gcov
-which_git=`which git`
-echo "DEBUT----------------------------------"
-echo $which_cmake
-echo $which_unzip
-echo $which_lua
-echo $which_java
-echo $which_swig
-echo $which_make
-echo $which_gcc
-echo $which_gpp
-echo $which_svn
-echo $which_dot
-echo $which_wget
-echo $which_perl
-echo $which_f2c
-echo $which_gcov
-echo $which_git
-echo "FIN------------------------------------"
diff --git a/buildtools/pipol/rc.windows b/buildtools/pipol/rc.windows
deleted file mode 100644 (file)
index a25ecea..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-
-which_svn=`which svn`          #svn necessary
-which_gcc=`which gcc`          #gcc gcc necessary
-which_gpp=`which g++`          #gcc g++ necessary
-which_make=`which gmake`               #make necessary
-which_cmake=`which cmake`      #cmake necessary
-which_perl=`which perl`                #perl
-which_git=`which git`
-
-echo "DEBUT----------------------------------"
-echo $which_cmake
-echo $which_make
-echo $which_gcc
-echo $which_gpp
-echo $which_svn
-echo $which_perl
-echo $which_git
-echo $PATH
-echo "FIN------------------------------------"
\ No newline at end of file
diff --git a/buildtools/pipol/ruby.pl b/buildtools/pipol/ruby.pl
deleted file mode 100644 (file)
index d27264c..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/usr/bin/perl -w
-use strict;
-my($ruby_version);
-if( -e "/usr/bin/apt-get")
-{
-       $ruby_version = `apt-cache search ruby1.9.1-dev`;
-       
-       if( $ruby_version=~ /^$/){
-       $ruby_version = `apt-cache search ruby1.9-dev`;
-       }
-       
-       if( $ruby_version=~ /^$/){
-       return;
-       }
-       
-       $ruby_version =~ s/-dev.*//g;
-       chomp $ruby_version;
-       
-       print "ruby to install $ruby_version $ruby_version-dev\n";
-       `sudo apt-get install -y $ruby_version $ruby_version-dev`;
-       `sudo ln -sf /usr/bin/$ruby_version /usr/bin/ruby`;
-       
-       $ruby_version=~ s/-dev//g;
-       $ruby_version=~ s/ruby/ruby\*/g;
-       my($ruby_lib)=`ls /usr/lib/lib$ruby_version.so`;
-       chomp $ruby_lib;
-       `sudo ln -sf "$ruby_lib" /usr/lib/libruby.so`;
-}
-
-$ruby_version=`ruby --version`;
-print "ruby = $ruby_version";
-print "libruby = ".`ls /usr/lib/libruby.so`;
\ No newline at end of file