diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml
index ac97a3f372f..bb4084c3781 100644
--- a/.github/workflows/linting.yml
+++ b/.github/workflows/linting.yml
@@ -10,12 +10,12 @@ concurrency:
jobs:
python-linting:
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-24.04
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
- name: set up Python
- uses: actions/setup-python@v2
+ uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
with:
python-version: 3.8
@@ -28,4 +28,4 @@ jobs:
run: flake8
- name: Run flake8 to verify PEP8-compliance of Easyconfigs
- run: flake8 --select F,W605 --filename '*.eb'
+ run: flake8 --select F,W605,W291 --filename '*.eb'
diff --git a/.github/workflows/tagbot.py b/.github/workflows/tagbot.py
new file mode 100644
index 00000000000..26472f8bcbd
--- /dev/null
+++ b/.github/workflows/tagbot.py
@@ -0,0 +1,182 @@
+# NOTE: In order to write comment and edit labels, this script requires workflows with write permissions.
+# It should not use any untrusted third party code, or any code checked into the repository itself
+# as that could indirectly grant PRs the ability to edit labels and comments on PRs.
+
+import os
+import git
+import requests
+import json
+from pathlib import Path
+
+
+def get_first_commit_date(repo, file_path):
+ commits = list(repo.iter_commits(paths=file_path))
+ if commits:
+ return commits[-1].committed_date
+ else:
+ raise ValueError(f'{file_path} has no commit info, this should not happen')
+
+
+def sort_by_added_date(repo, file_paths):
+ files_with_dates = [(get_first_commit_date(repo, file_path), file_path) for file_path in file_paths]
+ sorted_files = sorted(files_with_dates, reverse=True)
+ return [file for date, file in sorted_files]
+
+
+def similar_easyconfigs(repo, new_file):
+ possible_neighbours = [x for x in new_file.parent.glob('*.eb') if x != new_file]
+ return sort_by_added_date(repo, possible_neighbours)
+
+
+def pr_ecs(pr_diff):
+ new_ecs = []
+ changed_ecs = []
+ for item in pr_diff:
+ if item.a_path.endswith('.eb'):
+ if item.change_type == 'A':
+ new_ecs.append(Path(item.a_path))
+ else:
+ changed_ecs.append(Path(item.a_path))
+ return new_ecs, changed_ecs
+
+
+GITHUB_API_URL = 'https://api.github.com'
+event_path = os.getenv('GITHUB_EVENT_PATH')
+token = os.getenv('GH_TOKEN')
+repo = os.getenv('GITHUB_REPOSITORY')
+base_branch_name = os.getenv('GITHUB_BASE_REF')
+
+with open(event_path) as f:
+ data = json.load(f)
+
+pr_number = data['pull_request']['number']
+# Can't rely on merge_commit_sha for pull_request_target as it might be outdated
+# merge_commit_sha = data['pull_request']['merge_commit_sha']
+
+print("PR number:", pr_number)
+print("Base branch name:", base_branch_name)
+
+# Change into "pr" checkout directory to allow diffs and glob to work on the same content
+os.chdir('pr')
+gitrepo = git.Repo('.')
+
+target_commit = gitrepo.commit('origin/' + base_branch_name)
+print("Target commit ref:", target_commit)
+merge_commit = gitrepo.head.commit
+print("Merge commit:", merge_commit)
+pr_diff = target_commit.diff(merge_commit)
+
+new_ecs, changed_ecs = pr_ecs(pr_diff)
+modified_workflow = any(item.a_path.startswith('.github/workflows/') for item in pr_diff)
+
+
+print("Changed ECs:", ', '.join(str(p) for p in changed_ecs))
+print("Newly added ECs:", ', '.join(str(p) for p in new_ecs))
+print("Modified workflow:", modified_workflow)
+
+new_software = 0
+updated_software = 0
+to_diff = dict()
+for new_file in new_ecs:
+ neighbours = similar_easyconfigs(gitrepo, new_file)
+ print(f"Found {len(neighbours)} neighbours for {new_file}")
+ if neighbours:
+ updated_software += 1
+ to_diff[new_file] = neighbours
+ else:
+ new_software += 1
+
+print(f"Generating comment for {len(to_diff)} updates softwares")
+# Limit comment size for large PRs:
+if len(to_diff) > 20: # Too much, either bad PR or some broad change. Not diffing.
+ max_diffs_per_software = 0
+elif len(to_diff) > 10:
+ max_diffs_per_software = 1
+elif len(to_diff) > 5:
+ max_diffs_per_software = 2
+else:
+ max_diffs_per_software = 3
+
+comment = ''
+if max_diffs_per_software > 0:
+ for new_file, neighbours in to_diff.items():
+ compare_neighbours = neighbours[:max_diffs_per_software]
+ if compare_neighbours:
+ print(f"Diffs for {new_file}")
+ comment += f'#### Updated software `{new_file.name}`\n\n'
+
+ for neighbour in compare_neighbours:
+ print(f"against {neighbour}")
+ comment += '\n'
+ comment += f'Diff against {neighbour.name}
\n\n'
+ comment += f'[{neighbour}](https://github.com/{repo}/blob/{base_branch_name}/{neighbour})\n\n'
+ comment += '```diff\n'
+ comment += gitrepo.git.diff(f'HEAD:{neighbour}', f'HEAD:{new_file}')
+ comment += '\n```\n \n\n'
+
+print("Adjusting labels")
+current_labels = [label['name'] for label in data['pull_request']['labels']]
+
+label_checks = [(changed_ecs, 'change'),
+ (new_software, 'new'),
+ (updated_software, 'update'),
+ (modified_workflow, 'workflow')]
+
+labels_add = []
+labels_del = []
+for condition, label in label_checks:
+ if condition and label not in current_labels:
+ labels_add.append(label)
+ elif not condition and label in current_labels:
+ labels_del.append(label)
+
+url = f"{GITHUB_API_URL}/repos/{repo}/issues/{pr_number}/labels"
+
+headers = {
+ "Accept": "application/vnd.github+json",
+ "Authorization": f"Bearer {token}",
+ "X-GitHub-Api-Version": "2022-11-28",
+}
+
+if labels_add:
+ print(f"Setting labels: {labels_add} at {url}")
+ response = requests.post(url, headers=headers, json={"labels": labels_add})
+ if response.status_code == 200:
+ print(f"Labels {labels_add} added successfully.")
+ else:
+ print(f"Failed to add labels: {response.status_code}, {response.text}")
+
+for label in labels_del:
+ print(f"Removing label: {label} at {url}")
+ response = requests.delete(f'{url}/{label}', headers=headers)
+ if response.status_code == 200:
+ print(f"Label {label} removed successfully.")
+ else:
+ print(f"Failed to delete label: {response.status_code}, {response.text}")
+
+# Write comment with diff
+if updated_software:
+ # Search for comment by bot to potentially replace
+ url = f"{GITHUB_API_URL}/repos/{repo}/issues/{pr_number}/comments"
+ response = requests.get(url, headers=headers)
+ comment_id = None
+ for existing_comment in response.json():
+ if existing_comment["user"]["login"] == "github-actions[bot]": # Bot username in GitHub Actions
+ comment_id = existing_comment["id"]
+
+ if comment_id:
+ # Update existing comment
+ url = f"{GITHUB_API_URL}/repos/{repo}/issues/comments/{comment_id}"
+ response = requests.patch(url, headers=headers, json={"body": comment})
+ if response.status_code == 200:
+ print("Comment updated successfully.")
+ else:
+ print(f"Failed to update comment: {response.status_code}, {response.text}")
+ else:
+ # Post a new comment
+ url = f"{GITHUB_API_URL}/repos/{repo}/issues/{pr_number}/comments"
+ response = requests.post(url, headers=headers, json={"body": comment})
+ if response.status_code == 201:
+ print("Comment posted successfully.")
+ else:
+ print(f"Failed to post comment: {response.status_code}, {response.text}")
diff --git a/.github/workflows/tagbot.yml b/.github/workflows/tagbot.yml
new file mode 100644
index 00000000000..8c0fa06294b
--- /dev/null
+++ b/.github/workflows/tagbot.yml
@@ -0,0 +1,54 @@
+name: Tagbot
+on: [pull_request_target]
+
+concurrency:
+ group: "${{ github.workflow }}-${{ github.event.pull_request.number }}"
+ cancel-in-progress: true
+
+jobs:
+ tagbot:
+ # Note: can't rely on github.event.pull_request.merge_commit_sha because pull_request_target
+ # does not wait for github mergability check, and the value is outdated.
+ # Instead we merge manually in a temporary subdir "pr"
+ runs-on: ubuntu-24.04
+ permissions:
+ pull-requests: write
+ steps:
+ - name: Checkout base branch for workflow scripts
+ uses: actions/checkout@v4
+
+ - name: Checkout PR for computing diff into "pr" subdirectory
+ uses: actions/checkout@v4
+ with:
+ ref: "${{ github.event.pull_request.head.sha }}"
+ path: 'pr'
+ fetch-depth: 0
+
+ - name: Attempt test merge
+ id: merge
+ run: |
+ git config user.name "github-workflow"
+ git config user.email "github-workflow@github.com"
+ git merge --no-edit --no-ff origin/${{ github.event.pull_request.base.ref }}
+ continue-on-error: true
+ working-directory: pr
+
+ - name: Abort if merge failed
+ if: steps.merge.outcome == 'failure'
+ run: |
+ echo "Merge conflict detected, failing job."
+ exit 1
+
+ - name: set up Python
+ uses: actions/setup-python@v5
+ with:
+ python-version: 3.12
+
+ - name: Get packages
+ run: pip install gitpython requests
+
+ - name: Tag and comment
+ env:
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: python .github/workflows/tagbot.py
+
diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml
index 82cf7cacef9..e8a63d5cbd6 100644
--- a/.github/workflows/unit_tests.yml
+++ b/.github/workflows/unit_tests.yml
@@ -10,31 +10,27 @@ concurrency:
jobs:
test-suite:
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-22.04
strategy:
matrix:
- python: [3.6, '3.11']
- modules_tool: [Lmod-7.8.22, Lmod-8.6.8]
+ python: ['3.7', '3.11']
+ modules_tool: [Lmod-8.6.8]
module_syntax: [Lua, Tcl]
- # exclude some configurations: only test Tcl module syntax with Lmod 8.x and Python 3.6
- exclude:
- - modules_tool: Lmod-7.8.22
- module_syntax: Tcl
fail-fast: false
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
with:
fetch-depth: 0 # Required for git merge-base to work
- name: Cache source files in /tmp/sources
id: cache-sources
- uses: actions/cache@v2
+ uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # 4.2.2
with:
path: /tmp/sources
key: eb-sourcepath
- name: set up Python
- uses: actions/setup-python@v4
+ uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
with:
python-version: ${{matrix.python}}
architecture: x64
@@ -46,15 +42,10 @@ jobs:
# sudo apt-get update
# for modules tool
sudo apt-get install lua5.2 liblua5.2-dev lua-filesystem lua-posix tcl tcl-dev
- # fix for lua-posix packaging issue, see https://bugs.launchpad.net/ubuntu/+source/lua-posix/+bug/1752082
- # needed for Ubuntu 18.04, but not for Ubuntu 20.04, so skipping symlinking if posix.so already exists
- if [ ! -e /usr/lib/x86_64-linux-gnu/lua/5.2/posix.so ] ; then
- sudo ln -s /usr/lib/x86_64-linux-gnu/lua/5.2/posix_c.so /usr/lib/x86_64-linux-gnu/lua/5.2/posix.so
- fi
# for testing OpenMPI-system*eb we need to have Open MPI installed
sudo apt-get install libopenmpi-dev openmpi-bin
# required for test_dep_graph
- pip install pep8 python-graph-core python-graph-dot
+ pip install pycodestyle python-graph-core python-graph-dot
- name: install EasyBuild framework
run: |
@@ -62,7 +53,7 @@ jobs:
# first determine which branch of easybuild-framework repo to install
BRANCH=develop
if [ "x$GITHUB_BASE_REF" = 'xmain' ]; then BRANCH=main; fi
- if [ "x$GITHUB_BASE_REF" = 'x4.x' ]; then BRANCH=4.x; fi
+ if [ "x$GITHUB_BASE_REF" = 'x5.0.x' ]; then BRANCH=5.0.x; fi
echo "Using easybuild-framework branch $BRANCH (\$GITHUB_BASE_REF $GITHUB_BASE_REF)"
git clone -b $BRANCH --depth 10 --single-branch https://github.com/easybuilders/easybuild-framework.git
@@ -139,28 +130,28 @@ jobs:
grep "^robot-paths .*/easybuild/easyconfigs" eb_show_config.out
# check whether some specific easyconfig files are found
- echo "eb --search 'TensorFlow-1.14.*.eb'"
- eb --search 'TensorFlow-1.14.*.eb' | tee eb_search_TF.out
- grep '/TensorFlow-1.14.0-foss-2019a-Python-3.7.2.eb$' eb_search_TF.out
+ echo "eb --search 'TensorFlow-2.13.*.eb'"
+ eb --search 'TensorFlow-2.13.*.eb' | tee eb_search_TF.out
+ grep '/TensorFlow-2.13.0-foss-2023a.eb$' eb_search_TF.out
- echo "eb --search '^foss-2019b.eb'"
- eb --search '^foss-2019b.eb' | tee eb_search_foss.out
- grep '/foss-2019b.eb$' eb_search_foss.out
+ echo "eb --search '^foss-2023a.eb'"
+ eb --search '^foss-2023a.eb' | tee eb_search_foss.out
+ grep '/foss-2023a.eb$' eb_search_foss.out
# try installing M4 with system toolchain (requires ConfigureMake easyblock + easyconfig)
# use /tmp/sources because that has cached downloads (see cache step above)
eb --prefix /tmp/$USER/$GITHUB_SHA --sourcepath /tmp/sources M4-1.4.18.eb
test-sdist:
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-22.04
strategy:
matrix:
- python: [3.6, '3.11']
+ python: [3.7, '3.11']
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
- name: set up Python
- uses: actions/setup-python@v4
+ uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
with:
python-version: ${{matrix.python}}
diff --git a/.gitignore b/.gitignore
index c667a41e000..c2974194435 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,12 +1,15 @@
.pydevproject
.project
LICENSE_HEADER
+*.eb.bak_*
*.pyc
*.pyo
*.nja
+*.out
build/
dist/
*egg-info/
+.venv/
*.swp
*.ropeproject/
eb-*.log
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
index 45d27a2e696..783ad27a941 100644
--- a/RELEASE_NOTES
+++ b/RELEASE_NOTES
@@ -1,10 +1,464 @@
This file contains a description of the major changes to the easybuild-easyconfigs EasyBuild package.
For more detailed information, please see the git log.
-These release notes can also be consulted at https://docs.easybuild.io/en/latest/Release_notes.html.
+These release notes can also be consulted at https://docs.easybuild.io/release-notes .
-The latest version of easybuild-easyconfig provides 19,487 easyconfig files, for 3,470 different software packages,
-incl. 40 different (compiler) toolchains.
+The latest version of easybuild-easyconfig provides 10,372 easyconfig files, for 2,835 different software packages,
+incl. 41 different (compiler) toolchains.
+
+v5.0.0 (18 March 2025)
+----------------------
+
+- added example easyconfig files for 148 new software packages:
+ - AOCL-BLAS (#22291), astropy-testing (#22198), Atomsk (#22312), Auto-WEKA (#17172), bakta (#21861), Baysor (#22286),
+ bin2cell (#21869), BindCraft (#21791, #21958, #22039), black (#21684), Cellformer (#21621), CellProfiler (#21949),
+ Ceres-Solver (#19104), CIRCE (#21703), cisDIVERSITY (#21692), clearml (#21937), cmcrameri (#21567), cnvpytor (#22479),
+ COAWST-deps (#22458), COLMAP (#19104), columba (#21706), cookiecutter (#21684), cp2k-input-tools (#21550),
+ CTranslate2 (#22134), CUDA-Python (#21058), cuQuantum (#21355), cython-cmake (#22176), Dask-ML (#21729, #21731),
+ DECAF-synthetic-data (#21141), DeepDRR (#21069), dm-control (#21956), draco (#22159), elfx86exts (#22145),
+ EVidenceModeler (#21569), face-recognition (#21459), FastK (#22065), fastText (#22239), FloPy (#21680), GOTCHA (#21399),
+ Gradio (#20349), GraphAligner (#22246), GROMACS-LS (#21800), gym-pybullet-drones (#21488, #21500), harvest-tools (#22027),
+ hatch (#22074), HNOCA-tools (#22165), HOLE2 (#21514), HolisticTraceAnalysis (#21987), HPX (#21570), ISCE2 (#21520),
+ JACUSA2helper (#21730), juliaup (#21895), kaggle (#21854), KMCLib (#21555), kyber (#21649), libvips (#20854),
+ libyuv (#21929), LightGBM (#21699), LIME (#21630, #21682), LIQA (#22033), llama-cpp-python (#21959), llama.cpp (#22243),
+ LOBSTER (#22295), MashMap (#22246), MathWorksServiceHost (#22226), MDStress (#21800), MFiX (#22212), MitoFinder (#22017),
+ mlst (#21942), modin (#21667), modkit (#21725, #21727), MOLGW (#21029), MoloVol (#21480), mpl-ascii (#21679, #21707),
+ msisensor-pro (#22202), Mustache (#21783), NanoPack (#21649), netket (#21760), NextDenovo (#21264), ngmlr (#21517),
+ numpydoc (#21684), ollama (#22424, #22559), omp (#22307), OPEN-SURFEX (#21975), OpenMM-Torch (#21251), OpenNMT-py (#21976),
+ optree (#22403), pairtools (#22262), PALM (#20684), Panoply (#21455), Parsnp (#22027), pathos (#22132), PDAL (#22159),
+ PennyLane (#21353), Phonopy-Spectroscopy (#21024), phylo-treetime (#21677), PoPoolation-TE2 (#21757), pre-commit (#22198),
+ pyannote.audio (#22259), pybind11_abseil (#22153), python-lsp-server (#21684), python-slugify (#21684), python-zlib-ng (#22379),
+ pyvips (#20854), quarto (#21738), RAPIDS (#21058), rDock (#22012, #22056), read2tree (#21517), REViewer (#22518),
+ SciANN (#21710), SciKeras (#21734), scNanoGPS (#22033), screen (#22282), SCRIPro (#20388), scTIE (#21694), sensormotion (#22218),
+ sisl (#22132), skani (#21518), Slideflow (#20857), SlurmViewer (#21899, #22045), SNPTEST (#21708), Solids4foam (#21606),
+ Spectre (#21881), sPyRMSD (#21037), squashfs-tools (#22213), starcode (#21486), Stellarscope (#21602, #22585), Suppressor (#20106),
+ tblis (#21616), tensorstore (#19942), test-drive (#22292), TestU01 (#21284), text-unidecode (#21684), treeseg (#21624),
+ trusTEr (#21855), tsai (#21845), unittest-xml-reporting (#22205), VASPKIT (#20846), Verkko (#22246), vLLM (#21901), vRhyme (#22163),
+ webvtt-py (#22238), Wengan (#21986), Whisper (#21470, #22031), whisper-ctranslate2 (#22135), WhisperX (#22259), wurlitzer (#21684),
+ xformers (#21901), YaHS (#22199)
+- added additional easyconfigs for various supported software packages, including (but not limited to):
+ - ABINIT 10.2.5, ASE 3.24.0, astropy 7.0.0, Beast 2.7.7, BLAST+ 2.16.0, Bonito 0.8.1, BRAKER 3.0.8, CASTEP 24.1, CDO 2.4.4, CellRanger 9.0.0, CUDA 12.8.0, deepTools 3.5.5, dorado 0.9.1, ELPA 2024.05.001, FDS 6.9.1, funannotate 1.8.17, h5py 3.12.1,HDF5 1.14.5, Extrae 4.2.5, GATK 4.6.0.0, GDAL 3.10.0, gnuplot 6.0.1, GPAW 25.1.0, Graphviz 12.2.0, GRASS 8.4.0, GROMACS 2024.4, GSL 2.8, Gurobi 12.0.0, HyperQueue 0.20.0, HMMER 3.4, LAMMPS 28Oct2024, Longshot 1.0.0, MONAI 1.4.0, mpi4py 4.0.1, NAMD 3.0, NCCL 2.22.3, NEURON 8.2.6, NVHPC 25.1, ONNX-Runtime 1.19.2, ont-remora 3.3.0, OpenImageIO 2.5.15.0, OpenMPI 5.0.7, Optuna 4.1.0, Paraver 4.12.0 ParaView 5.13.2, PSI4 1.9.1, psutil 6.0.0, pymatgen 2024.5.1, PySCF 2.7.0, Python 3.13.1, QuantumESPRESSO 7.4, R 4.4.2, R-bundle-CRAN 2024.11, R-bundle-Bioconductor 3.20, Scalene 1.5.51, Siesta 5.2.2, SMV 6.9.5, SPAdes 4.1.0, spaln 3.0.6b, Spyder 6.0.1, sympy 1.13.3, synthcity 0.2.11, Unicycler 0.5.1, WebKitGTK+ 2.41.4, WIEN2k 24.1, WRF 4.6.1, WPS 4.6.0
+- minor enhancements, including:
+ - add `download_instructions` to easyconfigs for which download can not be done automatically (#19881, #19882, #19883, #19884, #19885, #19887, #19888, #19889, #19890, #19894, #19895, #19896, #19897, #19898, #19899, #19900, #19901, #19903, #19904, #19905, #19907, #19908, #19909, #19910, #19911, #19912, #19918, #19919, #19920, #19923, #19924, #19926, #19927, #19928, #19929, #19931, #19932, #19934, #19935, #19936)
+ - add `source_urls` to cuDNN easyconfig (#19902)
+ - add goldilocks + gsDesign extensions to R-bundle-CRAN v2024.06 (#21583)
+ - enable tblite support in easyconfig for DFTB+ 24.1 (#21947)
+ - add seqPattern, genomation, ChIPseeker, SimBu extensions to recent R-bundle-Bioconductor easyconfigs (#21474, #21948, #22151)
+ - add missing (optional) pyabpoa dependency as extension to medaka 1.11.3 (#21983)
+ - add collection of easyconfig templates organized per generation (and remove `TEMPLATE.eb` poor mans template easyconfig) (#21984)
+ - add frbs + gcmr extensions to recent R-bundle-CRAN easyconfigs (#21993)
+ - add TorchRL extension to PyTorch-bundle v2.1.2 (#22000)
+ - Set `$PKG_CONFIG` in pkgconf modules (#22005)
+ - add wayland-utils component to Wayland 1.23.0 (#22009)
+ - add patch for Autoconf to improve handling for 'llc' flags appearing e.g. with NVHPC on aarch64 systems (#22173)
+ - enable plugins that require HDF5 + Boost dependencies for Visit v3.4.1 (#22334)
+ - use reproducible archives on easyconfigs with sources from git repos without a `.git` dir (#22575)
+- various bug fixes, including:
+ - remove executable flag from easyconfigs (#19059)
+ - fix some typos found in software descriptions (#19142)
+ - fix source definition for dialog (#19906)
+ - use proper dependencies for Safetensors and tokenizers in Transformers easyconfigs (#20868, #20869)
+ - remove ignored `toolchainopts` from `SYSTEM` toolchain easyconfigs (#21035)
+ - add patch to fix compilation of HPDBSCAN 20210826 (#21467)
+ - use `-lncurses` rather than `-ltermcap` for `Term::ReadLine::GNU` Perl extension (#21469)
+ - use skani rather than FastANI as dependency for GTDB-Tk v2.4.0 (#21518)
+ - add patch for ROOT v6.24.06, v6.26.06, v6.26.10, v6.30.6 to disable sysroot for cling at runtime (#21526)
+ - link `libOpenCL.so.1` to the `lib` directory for NextGenMap (required when using RPATH linking) (#21528)
+ - add patch for bug/typo in RISC-V toolchain options to EasyBuild 4.9.4 easyconfig (#21547)
+ - strip out '`-minsize 1`' option from `umi_binning.sh` in longread_umi 0.3.2, since it's not supported by VSEARCH (#21557)
+ - add patch to SciPy-bundle 2024.05 that fixes test failure on aarch64 (#21559)
+ - promote pybind11 to runtime dependency for CPPE (to fix `pip check` failure) (#21564)
+ - fix installation of NextPolish v1.4.1 when RPATH linking is used (+ move to `GCC` toolchain) (#21588)
+ - remove explicit use of `ld.gold` in recent PLUMED easyconfigs (#21613)
+ - stop using `--buildtype=release` in easyconfigs using `MesonNinja` easyblock (#21619)
+ - demote hatchling to build-only dependency in various easyconfigs (#21657, #21809, #21844, #22039)
+ - add pyproject-metadata to scikit-build-core v0.9.3 (#21671)
+ - fix failing RPATH sanity check for recent dorado easyconfigs using `foss/2023a` toolchain (#21673)
+ - add patch to fix alignment bug in patchelf 0.18.0 (#21674)
+ - ignore user Python packages when running custom sanity check command `pip check` (#21675)
+ - add patch for SciPy-bundle 2023.07 + 2023.11 to fix vectorization bug in scipy 1.11.1 (#21693)
+ - fix the zero division bug of `networkx-3.1` (#21702)
+ - add `trimmomatic` wrapper script for recent Trimmomatic 0.39 easyconfigs (#21704)
+ - switch to using new spaces as delimiters for TCLLIBPATH (#21724)
+ - use new checksum for source tarball of SIONlib 1.7.7 (#21748)
+ - remove `-m64` compiler flag for non-x86-64 CPU architectures in SIONlib 1.7.7 easyconfigs (#21752)
+ - add missing Perl-bundle-CPAN dependency to recent parallel easyconfigs (#21776)
+ - update libvdwxc webpage as old URL has been taken over by evildoers (#21797)
+ - add path to Faiss shared libraries to $LD_LIBRARY_PATH (#21799)
+ - add patch to fix vectorization bug in scipy 1.11.1 also to SciPy-bundle 2023.07 w/ iimkl/2023a (#21805)
+ - fix bug in HTSplotter 2.11 through runtime patching via `sed` (#21812)
+ - fix conflict for platformdirs dependency in easyconfig Pylint 3.2.5 (#21873)
+ - fix parallel for cppyy-cling in easyconfig for cppyy v3.1.2 + don't specify to use C++14 by setting `$STDCXX` (#21900)
+ - use original sources for enchant-2 v2.6.5 (#21944)
+ - fix Boost 1.85 build on POWER (#21950)
+ - add missing cutadapt dependency for decona 1.4-20240731 (#21982)
+ - fix typo in `configopts` for ParaView v5.11.1 (#21894)
+ - add patch to fix use of RPATH wrappers in LASTZ-1.04.22 (#22016)
+ - fix test failure due to unresolved template (#22061)
+ - expand templates in checksum keys (#22091)
+ - fix incorrect keys in checksums for jaxlib component in jax 0.4.25 easyconfig (#22092)
+ - update homepage and source_urls for libxsmm (#22164)
+ - fix setuptools issue by sticking to a single version in ReFrame 4.3.3 easyconfig (#22183)
+ - detect use of deprecated behavior in test runs (#21885)
+ - move download of data files to source step for Casacore v3.5.0 (#22201)
+ - add MathWorksServiceHost dependency to MATLAB 2024b easyconfig (#22226)
+ - add patch for WIEN2k 24.1 to fix bug in symmetry determination (#22234)
+ - change `source_urls` for Boost from `boostorg.jfrog.io` to `archives.boost.io` (#22157, #22240)
+ - avoid using `$HOME/.cargo` when installing poetry by using `CargoPythonBundle` easyblock (#22257)
+ - unset `$BUILD_VERSION` set by `torchvision` easyblock in `preinstallopts` for `torchaudio` in easyconfigs for `PyTorch-bundle` 2.1.2 (#22258)
+ - {chem}[foss/2023a] LAMMPS v28Oct2024 w/ kokkos CUDA 12.1.1 (#22268)
+ - add missing dependency on pybind11 for contourpy in matplotlib v3.9.2 (#22294, #22301)
+ - fix warning in jax 0.3.x that fails the build by using `-Wno-maybe-uninitialized` (#22325)
+ - add patch for QuantumESPRESSO 7.4 to fix parallel symmetrization glitch (#22345)
+ - use all same checksums of libxc v6.2.2 in its easyconfigs (#22348, #22580)
+ - fix checksum for Miniforge3 24.1.2 (#22366)
+ - fix `python-zlib-ng` dependency for pytest-workflow 2.1.0 (#22379)
+ - add missing Doxygen build dependency for bcl2fastq2 (#22429) and libheif (#22054)
+ - fix NSS easyconfigs by not keeping symlinks when copying files to installation (#22471)
+ - add multiple checksoms to Pandoc easyconfigs supporting multiple archs (#22493)
+ - disable `rpath` toolchain option in older NCCL easyconfigs (#22520)
+ - use `PerlBundle` easyblock for XML-LibXML (#22521)
+ - fix download source for PDT/3.25.2 (#22523)
+ - fix MPICH with-device configuration option (#22555)
+ - don't use unknown configure options `--with-gmp` and `--with-givaro` in easyconfig for FFLAS-FFPACK 2.5.0 (#22558)
+ - add `$TMPDIR` to sandbox mounts for Bazel 7.4.1 tests (#22564)
+ - disable `keepsymlinks` in libStatGen (#22565)
+ - use `.tar.xz` archive for `jsonpath_lib` sources in polars easyconfigs (#22566, #22450)
+ - add build dependency on git to Scalene (#22567)
+ - don't use unknown configure options in LinBox easyconfig (#22569)
+ - add patch to fix build failure due to too long filenames in Qt6 (#22570)
+ - consistently use patch in easyconfigs for PRSice 2.3.5 to stop relying on sysctl.h (#22571)
+ - make CMake a runtime dependency of gemmi (#22572)
+ - switch download source for ffnvcodec (#22574)
+ - replace source URLs of Mesa to new location in archive.mesa3d.org (#22576)
+ - remove unknown configure options for GRASS 8.4.0 (#22577)
+ - update homepage and sources of METIS and ParMETIS with new home at kaypis.github.io (#22579)
+ - add new checksum for tantan v50 tarball (#22581)
+ - update homepage and sources of MUMPS with new home at mumps-solver.org (#22582)
+ - ensure that sanity check command for ExpressBetaDiversity v1.0.10 is run from `bin` subdirectory of installation directory (#22586)
+ - add new checksums for R packages of PEcAn v1.8.0.9000 (#22587)
+- other changes:
+ - archive easyconfigs for old software versions or using unsupported toolchain in `easybuild-easyconfigs-archive` repository (#18934, #18958, #18968, #18976, #18978, #18982, #18984, #18989, #18990, #18991, #18992, #18993, #19002, #19004, #19005, #19008, #19013, #19494, #19656, #19827, #19834, #19933, #19937, #20006, #20259, #20435, #22051, #22069, #22175)
+ - use more recent easyconfigs in checks for `--search` (#18995)
+ - clean up easyconfigs that explicitly set `use_pip`, `sanity_pip_check` and `download_dep_fail` (#19265)
+ - replace use of `parallel` easyconfig parameter with `maxparallel` (#19375)
+ - bypass `.mod` file in GeneMark-ET (#19500)
+ - move `setuptools_scm` from `hatchling` to Python easyconfig (#19651)
+ - replace usage of `easybuild.tools.py2vs3` in easyconfigs test suite (#19744)
+ - add check to make sure that `download_dep_fail`, `sanity_pip_check`, `use_pip` are not explicitly set to `True` in easyconfigs (#19830)
+ - replace `run_cmd` with `run_shell_cmd` in easyconfigs testsuite (#19818, #19886)
+ - remove trailing whitespace from easyconfigs (#20082)
+ - cleanup Python < 2.6 test skip (#20253)
+ - remove `CMAKE_INSTALL_LIBDIR` settings from `configopts` + add test to enfore use of `install_libdir` instead (#20487)
+ - fix LLVM easyconfigs as required by revamped custom easyblock for LLVM + add `lit` and `git` as build dependencies (#20902)
+ - stop using `modextrapaths` to update `$PYTHONPATH` with standard path to installed Python packages (`lib/python%(pyshortver)s/site-packages`) (#20960)
+ - use `CMakeMake` easyblock for BamTools (#21263)
+ - use pycodestyle for code style check + stop using `l` in list comprehensions (#21502)
+ - move jedi package from IPython 8.14.0 to own easyconfig (#21650)
+ - fix CI check for extension patches using `alt_location` (#21700)
+ - remove `install_pip=True` from Python easyconfigs (#22103)
+ - add a github workflow that tags PRs with new/update/change + add diffs in comments (#21758, #21779, #21793, #21795)
+ - test suite changes required for changes in EasyBuild v5.0 (#22116)
+ - move pybind11 dependency from SciPy-bundle v2024.05 to builddependencies (#22170)
+ - swicth GCC-system and GCCcore-system to SystemCompilerGCC easyblock (#22174)
+ - use latest version (0.2.5) of archspec for LAMMPS 2Aug2023 easyconfigs (#22235)
+ - Remove explicit C++ standard from Bowtie2 (#22278)
+ - migrate easyconfig for NEURON v8.2.6 to use custom easyblock for NEURON (#22324)
+ - avoid using `buildcmd` in PySide2 easyconfig (#22380)
+ - remove deprecated `allow_prepend_abs_path` from libglvnd and SpaceRanger (#22416)
+ - replace hardcoded `'CPATH'` in `modextravars` with `MODULE_LOAD_ENV_HEADERS` constant (#22417)
+ - update GitHub actions workflows to use Ubuntu 22.04 or 24.04 (#22457, #22459, #22472)
+ - clean up easyconfigs so they don't explicitly enable `keepsymlinks`, since it's now enabled by default (#22573)
+
+
+v4.9.4 (22 September 2024)
+--------------------------
+
+update/bugfix release
+
+- added example easyconfig files for 14 new software packages:
+ - Biotite (#21026), chopper (#21418), CLUMPP (#21329), cramino (#21382), dub (#21378), ESM3 (#21026), GOMC (#21008),
+ MOKIT (#21352), nanoQC (#21371), phasius (#21389), PyBullet (#21356), rnamotif (#21336), versioningit (#21424),
+ xskillscore (#21351)
+- added additional easyconfigs for various supported software packages, including:
+ - awscli 2.17.54, BiG-SCAPE-1.1.9, ccache 4.10.2, CLHEP 2.4.7.1, CREST 3.0.2, decona 1.4-2024073, dftd4 3.7.0,
+ GATE 9.4, Gdk-Pixbuf 2.42.11, Geant4 11.2.2, Geant4-data 11.2, Ghostscript 10.03.1, GitPython 3.1.43,
+ GObject-Introspection 1.80.1, HarfBuzz 9.0.0, ImageMagick 7.1.1-38, JasPer 4.2.4, joypy 0.2.6, Julia 1.10.4,
+ LDC 1.39.0, Leptonica 1.84.1, Markdown 3.7, MPICH 4.2.2, NanoComp 1.24.0, nanoget 1.19.3, nanomath 1.4.0,
+ NanoPlot 1.43.0, Pango 1.54.0, PCAngsd 1.2, Pillow 10.4.0, python-isal 1.7.0, pocl 6.0, PROJ 9.4.1, protobuf 28.0,
+ protobuf-python 5.28.0, R-tesseract 5.2.1, RepeatMasker 4.1.7-p1, RHEIA 1.1.11, RMBlast 2.14.1,
+ scikit-build-core 0.10.6, sleuth 0.30.1, SNAP-ESA 10.0.0, tesseract 5.3.4, Triton 2.1.0, TurboVNC 3.1.2,
+ VirtualGL 3.1.1, zlib-ng 2.2.1
+- minor enhancements, including:
+ - enable support for Apache ORC to Arrow v14.0.1 and v16.1.0 (#21056)
+ - use proper dependency for tensorboard in easyconfigs for TensorFlow v2.15.1 (#21337)
+- various bug fixes, including:
+ - account for crates for easyconfigs using Cargo-based easyblock when determining checksums for patches in easyconfigs test suite (#21419)
+ - avoid missing symbol in mclust extension of R-4.0.3 w/ foss/2020b (#21429)
+ - fix build of librosa 0.10.1 in some environments by removing "python -m build" for soxr extension (#21434)
+ - fix repeated sanity check runs in manta easyconfigs (#21435)
+ - fix test_easyconfig_locations when easyconfigs index is present (#21394)
+ - use proper dependency for libnsl in git-annex (#21441)
+ - avoid writing into ~/.stack directory during build for git-annex (#21452)
+- other changes:
+ - remove exts_default_options from TensorFlow 2.3.1 (#21290)
+
+
+v4.9.3 (14 September 2024)
+--------------------------
+
+update/bugfix release
+
+- added easyconfigs for foss/2024a (#21100) and intel/2024a (#21101) common toolchains
+- new toolchain: gmpflf/2024.06 (#20882)
+- added example easyconfig files for 107 new software packages:
+ - absl-py (#21039), accelerate (#21107), affogato (#20636), APOST3D (#21133), bayesian-optimization (#21301),
+ BayesOpt (#21261), BGEN-enkre (#15752), bitsandbytes (#21248), bliss (#21206), cfgrib (#21113), CLANS (#21099),
+ colorize (#20964), CORSIKA (#20693), COSTA (#20989), coxeter (#21254), Critic2 (#20833), crypt4gh (#20870),
+ dblatex (#21207), dictys (#21166), DL_POLY_Classic_GUI (#20819), EGA-QuickView (#20870, #20888), EMMAX (#21174),
+ empanada-dl (#20454), empanada-napari (#20454), ESIpy (#21006), fastfilters (#21003), fish (#21345, #21381),
+ flash-attention (#21083), Flax (#21039), fonttools (#21363), fsm-lite (#20503), GDMA (#21171), GeoDict (#20650),
+ GPflow (#21172), gtk-doc (#21207), Gubbins (#20413), Gymnasium (#20420), HERRO (#21252), IEntropy (#20808),
+ ilastik-napari (#21003), IMAGE (#20994), junos-eznc (#21166), jupyter-collaboration (#20741),
+ jupyter-vscode-proxy (#20876), langchain-mistralai (#20759), langchain-openai (#20711), LRBinner (#21310),
+ lrcalc (#21339), MAGIC (#20900), mallard-ducktype (#21127), MATES (#21229), MBX (#21155), mcqd (#21283),
+ MeshLab (#20806), meteogrid (#20921), micro-sam (#20636), miniprot (#21157), napari-denoiseg (#20934),
+ NECAT (#21359), nellie (#21267), NextPolish (#21265), nifty (#20636), ome-types (#21256), openai-python (#20711),
+ OpenForceField-Toolkit (#20852), orjson (#20880), PEcAn (#21227), PretextMap (#20790), PyBEL (#20953),
+ pyMBE (#21034), pystencils (#20889), python-blosc (#20636), python-elf (#20636), rankwidth (#20788), Rasqal (#21207),
+ Redland (#21227), Regenie (#15752), rMATS-long (#20916), Sagemath (#21365), scCustomize (#20907), SCENICplus (#21085),
+ scFEA (#20777), sdsl-lite (#20503), SharedMeatAxe (#21303), Single-cell-python-bundle (#20116), SIRIUS (#20989),
+ sirocco (#21304), SKA2 (#20411), SpFFT (#20989), spla (#11607), Stable-Baselines3 (#20884), submitit (#21103),
+ SVDSS2 (#20855), tdlib (#21305), torch-em (#20636), Umpire (#20989), Uni-Core (#21182), vigra (#20636),
+ Visit (#20981), weblogo (#20800), wradlib (#21110), xtb-IFF (#20783), yell (#20964), yelp-tools (#21127),
+ yelp-xsl (#21127), z5py (#20636), Zoltan (#21324)
+- added additional easyconfigs for various supported software packages, including:
+ - AGAT 1.4.0, ASE 3.23.0, Abseil 20240722.0, Albumentations 1.4.0, AlphaPulldown 2.0.0b4, AlphaPulldown 2.0.0b4,
+ AmberTools 26.3, Arrow 16.1.0, alsa-lib 1.2.11, archspec 0.2.4, attr 2.5.2, BayesTraits 4.1.2, BeautifulSoup 4.12.3,
+ Biopython 1.84, Boost.MPI 1.83.0, bcl-convert 4.2.7-2, beagle-lib 4.0.1, biom-format 2.1.16, byacc 2.0.20240109,
+ CDO 2.3.0, CFITSIO 4.4.1, CUDA-Samples 12.2, CUDA 12.5.0 + 12.6.0, CUTLASS 3.4.0, Catch2 2.13.10, CellOracle 0.18.0,
+ Clang 18.1.8, Coreutils 9.5, chewBBACA 3.3.9, code-server 4.90.2, connected-components-3d 3.14.1, cooler 0.10.2,
+ cryptography 42.0.8, cutadapt 4.9, cyvcf2 0.31.1, dorado 0.7.3, dtcmp 1.1.5, ESMF 8.6.1, EvidentialGene 2023.07.15,
+ Extrae 4.2.0, ecBuild 3.8.5, elfutils 0.191, FFmpeg 7.0.2, FLAC 1.4.3, FUSE 3.16.2, Flask 3.0.3, Flye 2.9.4,
+ FriBidi 1.0.15, ffnvcodec 12.2.72.0, flatbuffers-python 24.3.25, flatbuffers 24.3.25, fmt 10.2.1, fpylll 0.6.1,
+ GCC 14.2.0, GDAL 3.9.0, GEOS 3.12.1, GHC 9.10.1, GLM 1.0.1, GLib 2.80.4, GLibmm 2.72.1 + 2.75.0 + 2.77.0 + 2.78.1,
+ GPAW 24.6.0, GetOrganelle 1.7.7.1, Guile 2.0.14 + 3.0.10, Gurobi 11.0.2, gap 4.13.0, genomepy 0.16.1, gensim 4.3.2,
+ gffutils 0.13, gh 2.52.0, git-annex 10.20240731, gmpy2 2.2.0, googletest 1.15.2, graph-tool 2.59, HDBSCAN 0.8.38.post1,
+ HOMER 4.11.1, HTSeq 2.0.7, HiCMatrix 17.2, Highway 1.2.0, Hypre 2.31.0, hatchling 1.24.2, histolab 0.7.0,
+ hypothesis 6.103.1, IQ-TREE 2.3.5, ImageMagick 7.1.1-34, Imath 3.1.11, IsoQuant 3.5.0, igraph 0.10.12, imageio 2.34.1,
+ imbalanced-learn 0.12.3, inferCNV 1.21.0, intervaltree 0.1, JsonCpp 1.9.5, Julia 1.10.4, jax 0.4.25, json-fortran 8.5.2,
+ Kent_tools 468, LLVM 18.1.8, LittleCMS 2.16, libdrm 2.4.122, libdwarf 0.10.1, libedit 20240517, libgeotiff 1.7.3,
+ libgit2 1.8.1, libopus 1.5.2, libsigc++ 3.6.0, libspatialindex 2.0.0, libunistring 1.2, libunwind 1.8.1, libwebp 1.4.0,
+ libxslt 1.1.42, libzip 1.10.1, lwgrp 1.0.6, lxml 5.3.0, MCR R2024a, MPICH 4.2.1, MUMPS 5.7.2, MariaDB 11.6.0,
+ Maven 3.9.7, Mercurial 6.8.1, Mesa 24.1.3, Miniconda3 23.10.0-1, MultiQC 1.22.3, makedepend 1.0.9, matplotlib 3.9.2,
+ maturin 1.6.0, medaka 1.12.1, meshio 5.3.5, meson-python 0.16.0, mm-common 1.0.6, NanoCaller 3.6.0, Normaliz 3.10.3,
+ n2v 0.3.3, nano 8.1, ncbi-vdb 3.1.1, nettle 3.10, nsync 1.29.2, numexpr 2.9.0, ORCA 6.0.0, OpenEXR 3.2.4, OpenFOAM 12,
+ OpenFOAM v2406, OpenJPEG 2.5.2, Optax 0.2.2, Optuna 3.6.1, PaStiX 6.3.2, Perl-bundle-CPAN 5.38.2, Pillow-SIMD 10.4.0,
+ Pint 0.24, Platypus-Opt 1.2.0, PostgreSQL 16.4, PyAEDT 0.9.9, PyCharm 2024.1.6, PyRosetta 4.release-384,
+ PyWavelets 1.7.0, PyYAML 6.0.2, Pygments 2.18.0, Pylint 3.2.5, Pyomo 6.7.3, Python-bundle-PyPI 2024.06, packmol 20.14.4,
+ pagmo 2.19.0, parallel 20240722, pixman 0.43.4, pod5-file-format 0.3.10, poetry 1.8.3, popt 1.19, pretty-yaml 24.7.0,
+ primecount 7.14, psycopg 3.2.1, pyGenomeTracks 3.9, pybind11 2.12.0, pycocotools 2.0.7, pydantic 2.7.4, pygmo 2.19.5,
+ pyperf 2.7.0, pyseer 1.3.12, pysteps 1.10.0, QuantumESPRESSO 7.3.1, Qwt 6.3.0, R-bundle-CRAN 2024.06, R 4.4.1,
+ RDKit 2024.03.3, RapidJSON 1.1.0-20240409, Ray-project 2.9.1, ReFrame 4.6.2, Rust 1.79.0, redis-py 5.0.9,
+ regionmask 0.12.1, rjags 4-15, rpmrebuild 2.18, SDL2 2.30.6, SHAP 0.43.0, SIP 6.8.3, SRA-Toolkit 3.1.1,
+ STAR 2.7.11b_alpha_2024-02-09, STRUMPACK 7.1.0, SVDSS2 2.0.0-alpha.3, Safetensors 0.4.3, Salmon 1.10.3,
+ SciPy-bundle 2024.05, SeqKit 2.8.2, SingleM 0.16.0, Sphinx-RTD-Theme 2.0.0, Stack 3.1.1, SuiteSparse 7.7.0,
+ SuperLU 6.0.1, SuperLU_DIST 8.2.1, scArches 0.6.1, scib-metrics 0.5.1, scvi-tools 1.1.2, sdsl-lite 2.0.3,
+ setuptools-rust 1.9.0, sirocco 2.1.0, slepc4py 3.20.2, smafa 0.8.0, snpEff 5.2c, spaCy 3.7.4, spektral 1.2.0,
+ spglib-python 2.5.0, spglib 2.5.0, TELEMAC-MASCARET 8p5r0, Tk 8.6.14, Tkinter 3.12.3, Trycycler 0.5.5, tiktoken 0.7.0,
+ timm 1.0.8, UCX-CUDA 1.16.0, unixODBC 2.3.12, utf8proc 2.9.0, VSEARCH 2.28.1, virtualenv 20.26.2, WRF 4.5.1,
+ Wayland 1.23.0, X11 20240607, XGBoost 2.1.1, XML-LibXML 2.0210, x264 20240513, x265 3.6, xarray 2024.5.0, xtb-IFF 1.1,
+ xtb 6.7.1, xtensor 0.24.7, yelp-xsl 42.1
+- minor enhancements, including:
+ - add internal CUDA header patch for PSM2 v12.0.1 (#20804)
+ - add patch for JupyterHub support to recent tensorboard easyconfigs (#20823)
+ - make sure that recent ImageMagick versions pick up the right pkgconf + improve sanity check for ImageMagick (#20900)
+ - also install utilities for recent versions of FUSE 3.x (#20918)
+ - add RISC-V support to x264 v20231019 (#20968)
+ - add RISC-v support to recent LAME easyconfigs by removing workaround for finding libncurses (#20970)
+ - enable PIC in recent x265 easyconfigs to solve compilation errors on RISC-V (#20971)
+ - add extensions to R-bundle-CRAN: missmDA (#21167, #21183). insight (#21260), performance + datwizard + bayestestR (#21272, #21285)
+ - add Qt support to VTK 9.3.0 (#21221)
+ - add `helper_scripts` to `$PATH` in easyconfig for ProteinMPNN v1.0.1-20230627 (#21289)
+ - also build & install the plugins with OpenFOAM v2406 (#21332)
+- various bug fixes, including:
+ - fix easyconfigs for recent versions of QuantumESPRESSO (#20070)
+ - add wrapper for Julia with linking safeguards and delegate environment setup to JuliaPackage (#20103)
+ - fix typo in description of SuiteSparse v7.7.0 (#20567)
+ - add 'pic' flag to IML (#20789)
+ - add patch to recent SciPy-bundle easyconfigs to fix build error with numpy with some Fortran compilers (#20817)
+ - rename unpacked sources for components of EasyBuild v4.9.2, to ensure that '`--install-latest-eb-release`' works with older EasyBuild versions (#20818)
+ - fix build of OpenBLAS 0.3.24 on A64FX (#20820)
+ - remove maturin build dependency from langchain-antropic (#20825)
+ - add GMP and MPFR as dependencies to OpenFOAM v2306 and v2312 (#20841)
+ - add patch to SciPy-bundle 2024.05 that fixes numpy test failures on RISC-V (#20847)
+ - skip unreliable memory leak test in PyTorch 2.1.2 (#20874)
+ - use PyYAML 6.0.1 instead of 6.0 for recent ReFrame versions to fix problem with Cython 3.x (#20879)
+ - use PyPI source tarball and gfbf/2023a toolchain for pyBigWig (#20881)
+ - add fix for failing test on zen4 to Highway 1.0.4 (#20942)
+ - add patch to fix implicit function declaration in OpenMPI 4.1.4 (#20949)
+ - only use libxsmm as dependency for CP2K 2023.1 w/ `foss/2023a` on x86_64 (#20951)
+ - copy missing `rsem_perl_utils.pm` in DETONATE, since it's required by `rsem-eval-calculate-score` command (#20956)
+ - set `$SATSUMA2_PATH` so Satsuma2 can locate executables (#20957)
+ - disable auto-vectorizer (`-ftree-vectorize`) for OpenFOAM v10 + v11 when using toolchain that with GCC >= 11 (#20958)
+ - disable test step for WIEN2k 23.2 because files required by it can no longer be downloaded (#20969)
+ - add patch to fix Qt6 issues with ParaView v5.12.0, e.g. representation selection (#21002)
+ - update homepage in phonopy easyconfigs (#21014)
+ - make libunwind dependency architecture specific in Extrae 4.2.0 easyconfig (#21017)
+ - add `OPENSSL_ENABLE_SHA1_SIGNATURES` for building `ansys-pythonnet` (#21028)
+ - fix download URLs for old Intel software (2018-2023) by using `IRC_NAS` instead of `irc_nas` (#21108)
+ - update source and homepage URLs in Szip easyconfigs (#21129)
+ - rename source URL in HDF v4.2.16-2 easyconfig (#21130)
+ - consistently fix homeage + source URL for `HDF` + `h4toh5` (#21134)
+ - ensure that recent BioPerl easyconfigs use `Bundle` easyblock (#21136)
+ - fix checksum checks for easyconfigs using a `Bundle`-like easyblock in easyconfigs test suite (#21143)
+ - add pkgconf build dependency to scikit-misc v0.3.1 (#21144)
+ - explicitly disable use of MySQL in recent GDAL easyconfigs (#21156)
+ - fix easyconfig tensorflow-probability v0.20.0 to pass `pip check` (#21172)
+ - stop RStudio-Server 2023.09 from installing R packages (+ move to `foss/2023a` toolchain) (#21175)
+ - remove `Time::HiRes` from `Perl-bundle-CPAN` since there's newer version in `Perl` (#21198)
+ - fix build of STAR 2.7.11a + 2.7.11b on non-x86 architectures by avoiding use of `-maxv2` + add missing `xxd` build dependency (#21200)
+ - add missing cairo dependency for python-igraph v0.10.6 (#21211)
+ - add patch for xtb 6.7.0 to fix build failure due to changes in tblite (#21255)
+ - add patch for HDF5 v1.14.3 to suppress fp exceptions (#21280)
+ - update easyconfig for dorado 0.7.3 to properly use provided OpenSSL dependency, and not install external libraries into its own lib directory (#21297)
+ - use proper Python dependency for OTF2 (#21325)
+ - use source tarballs from GitHub for recent libdap easyconfigs (#21334)
+ - remove Highway build dependency in Brunsli easyconfigs, since it's not actually required at all (#21366)
+ - add alternative checksum for bold 1.3.0 extension in R-bundle-CRAN (#21370)
+- other changes:
+ - archive outdated example easyconfigs for Fujitsu toolchain (#20781)
+ - upgrade rpmrebuild build dependency to version 2.18 in bcl-convert 4.2.7 easyconfig (#20861)
+ - use proper dependency for Safetensors in easyconfig for Transformers v4.39.3 (#20864)
+ - remove CMake Arrow flag as there is no Arrow dependency in recent GDAL easyconfigs (#20905)
+ - whitelist `ConfigureMakePythonPackage` for `sanity_check_paths` CI check (#20963)
+ - rename `gubbins-2.4.0.eb` to `Gubbins-2.4.0.eb` (#20995)
+ - make pytest v7.4.2 independent of Python-bundle-PyPI (#21004)
+ - reorganize Flax/JAX stack in 2023a: move `jax` + `Optax` to `gfbf/2023a` toolchain + use standalone `Flax` + `absl-py` as dependencies (#21038)
+ - use stand-alone absl-py as dependency for jax w/ `gfbf/2023a` (#21039)
+ - remove Cython dependency from Python-bundle-PyPI 2024.06 + add standalone easyconfig for Cython 3.0.10 (#21233)
+ - add Cython build dependency for SciPy-bundle v2024.05 (#21235)
+ - use top-level parameters for `use_pip` & co instead of `exts_default_options` for `PythonBundle` easyconfigs (#21292)
+
+
+v4.9.2 (12 June 2024)
+---------------------
+
+update/bugfix release
+
+- added easyconfigs for foss/2024.05 toolchain (candidate for foss/2024a) (#20646)
+- added example easyconfig files for 82 new software packages:
+ - AEDT (#20357), amdahl (#20346), AMGX (#20255), assembly-stats (#20281), Bio-FeatureIO (#20461),
+ bitshuffle (#20661), Cassiopeia (#20289), CCCL (#20255), charm-gems (#20327), CheckM2 (#20399),
+ chromVARmotifs (#20402), cmph (#20278), COMEBin (#20717), Compass (#20500), ctffind5 (#20669), currentNe (#20791),
+ CVX (#20231), deepfold (#20247), dotNET-Core (#20256), EasyMocap (#20446), ensmallen (#20485), EVcouplings (#20744),
+ Faiss (#19669), FDMNES (#20321), gnupg-bundle (#20406), grpcio (#20191), hatch-jupyter-builder (#20606),
+ hevea (#20597), HiGHS (#20186), hmmcopy_utils (#20472), HOMER (#20590), ICON (#20573), jiter (#20746),
+ LangChain (#20746), langchain-anthropic (#20746), libabigail (#20539), libbraiding (#20655), libhomfly (#20482),
+ libsupermesh (#20470), LIBSVM-MATLAB (#20752), Lightning (#19964), lil-aretomo (#20696), makefun (#20619),
+ MetalWalls (#20403), MICOM (#20186), ml-collections (#20247), ml_dtypes (#20707), mlpack (#20485), MOFA2 (#20538),
+ mumott (#20719), nvitop (#20512), ocamlbuild (#20552), optiSLang (#20320), orthAgogue (#20278), pdf2docx (#20416),
+ planarity (#20753), plantri (#20467), plmc (#20744), PortAudio (#20307), premailer (#20348), ProteinMPNN (#20705),
+ PRRTE (#20698), PSM2 (#20496), PyAEDT (#20357), pybind11-stubgen (#20518), PyEXR (#19983), pyGAM (#20385),
+ PyHMMER (#20544), pyseer (#20502), PyVista (#20649), qmflows (#20384), SciTools-Iris (#20767), SCReadCounts (#20455),
+ SDL2_gfx (#20466), subunit (#20412), TF-COMB (#20666), tiktoken (#20336), TorchIO (#20648), t-SNE-CUDA (#19669),
+ VAMPIRE-ASM (#20368), wfdb (#20521), WGDgc (#20367)
+- added additional easyconfigs for various supported software packages, including:
+ - 4ti2 1.6.10, AFNI 24.0.02, Autoconf 2.72, Autotools 20231222, adjustText 1.1.1, aiohttp 3.9.5, alevin-fry 0.9.0,
+ alsa-lib 1.2.9, atropos 1.1.32, autopep8 2.2.0, BCFtools 1.19, BLIS 1.0, BWA 0.7.18, Boost 1.85.0, bcrypt 4.1.3,
+ binutils 2.42, bokeh 3.4.1, CGAL 5.6.1, CREST 3.0.1, CellRanger-ARC 2.0.2, CellRanger 8.0.1, CellRank 2.0.2,
+ Clang 17.0.6, CoCoALib 0.99850, Cython 3.0.10, cURL 8.7.1, cffi 1.16.0, code-server 4.89.1,
+ configurable-http-proxy 4.6.1, coverage 7.4.4, cpio 2.15, cppyy 3.1.2, cysignals 1.11.4, Doxygen 1.11.0,
+ dask-labextension 7.0.0, dask 2024.5.1, deal.II 9.5.2, dorado 0.5.3, dotNET-Core 8.0.203, E-ANTIC 2.0.2,
+ ECL 24.5.10, ESPResSo 4.2.2, eclib 20240408, expat 2.6.2, FLTK 1.3.9, FMM3D 1.0.4, FlexiBLAS 3.4.4, f90wrap 0.2.13,
+ fgbio 2.2.1, fontconfig 2.15.0, freetype-py 2.4.0, GAMESS-US 20220930-R2 + 20230930-R2, GCC 13.3.0 + 14.1.0,
+ GDB 14.2, GDRCopy 2.4.1, GOATOOLS 1.4.5, GTDB-Tk 2.4.0, Giza 1.4.1, gc 8.2.6, gcloud 472.0.0, gemmi 0.6.5,
+ gettext 0.22.5, giac 1.9.0-99, git 2.45.1, gmsh 4.12.2, gsutil 5.29, HDDM 0.9.9, HTSlib 1.19.1, HyPhy 2.5.60,
+ h5py 3.11.0, hwloc 2.10.0, ICU 75.1, IOR 4.0.0, imagecodecs 2024.1.1, imgaug 0.4.1, ipympl 0.9.4,
+ Jupyter-bundle 20240522, JupyterHub 4.1.5, JupyterLab 4.2.0, JupyterNotebook 7.2.0, jupyter-matlab-proxy 0.12.2,
+ jupyter-resource-usage 1.0.2, jupyter-rsession-proxy 2.2.0, jupyter-server-proxy 4.1.2, jupyter-server 2.14.0,
+ Kalign 3.4.0, KrakenUniq 1.0.4, kallisto 0.50.1, LAPACK 3.12.0, libarchive 3.7.4, libde265 1.0.15, libdeflate 1.20,
+ libdwarf 0.9.2, libfabric 1.21.0, libffi 3.4.5, libgcrypt 1.10.3, libgpg-error 1.48, libheif 1.17.6, libidn2 2.3.7,
+ libnsl 2.0.1, libpciaccess 0.18.1, libpng 1.6.43, libuv 1.48.0, libxml2 2.12.7, line_profiler 4.1.2, MATSim 15.0,
+ MDTraj 1.9.9, Mako 1.3.5, Meson 1.4.0, MetaMorpheus 1.0.5, Molpro 2024.1.0, MuJoCo 3.1.4, matlab-proxy 0.18.1,
+ mold 2.31.0, mpmath 1.3.0, NASM 2.16.03, NanoPlot 1.42.0, Nextflow 24.04.2, Ninja 1.12.1, nanoget 1.19.1,
+ napari 0.4.19.post1, nauty 2.8.8, ncurses 6.5, nghttp2 1.58.0, nghttp3 1.3.0, nglview 3.1.2, ngtcp2 1.2.0,
+ nodejs 20.13.1, numactl 2.0.18, nvtop 3.1.0, OCaml 5.1.1, OSU-Micro-Benchmarks 7.4, OpenBLAS 0.3.27, OpenMPI 5.0.3,
+ PARI-GP 2.15.5, PCRE2 10.43, PMIx 5.0.2, Perl 5.38.2, PhyML 3.3.20220408, PnetCDF 1.13.0, PyAMG 5.1.0,
+ PyQtGraph 0.13.7, PyTorch-Geometric 2.5.0, PyTorch-bundle 2.1.2, PycURL 7.45.3, Pysam 0.22.0, Python 3.12.3,
+ p11-kit 0.25.3, p4est 2.8.6, parallel 20240322, pauvre 0.2.3, petsc4py 3.20.3, pkgconf 2.2.0, plc 3.10, polars 0.20.2,
+ poppler 24.04.0, psutil 5.9.8, py3Dmol 2.1.0, pybedtools 0.9.1, pygame 2.5.2, pyiron 0.5.1, pyro-ppl 1.9.0,
+ python-mujoco 3.1.4, ROOT 6.30.06, RPostgreSQL 0.7-6, RStudio-Server 2023.12.1+402, Rtree 1.2.0, Rust 1.78.0,
+ SAMtools 1.19.2, SCOTCH 7.0.4, SDL2_image 2.8.2, SDL2_mixer 2.8.0, SDL2_ttf 2.22.0, SQLite 3.45.3, SWIG 4.2.1,
+ SentencePiece 0.2.0, Seurat 5.1.0, SeuratDisk 20231104, SimNIBS 4.0.1, Singular 4.4.0, Spack 0.21.2, Squidpy 1.4.1,
+ SymEngine-python 0.11.0, SymEngine 0.11.2, sbt 1.6.2, scikit-build-core 0.9.3, scikit-learn 1.4.2, TOBIAS 0.16.1,
+ Tcl 8.6.14, TensorFlow 2.15.1, Transformers 4.39.3, texlive 20230313, tmux 3.4, tokenizers 0.15.2, 0.2.5.20231120,
+ tornado 6.4, UCC 1.3.0, UCX 1.16.0, util-linux 2.40, VSCode 1.88.1, Valgrind 3.23.0, VisPy 0.14.1, wget 1.24.5,
+ XZ 5.4.5, xorg-macros 1.20.1, xprop 1.2.7, xtb 6.7.0, xxd 9.1.0307, yaml-cpp 0.8.0, zarr 2.17.1, zfp 1.0.1,
+ zlib-ng 2.1.6, zlib 1.3.1, zstd 1.5.6
+- minor enhancements, including:
+ - add missing (optional) dependency pyproject-metadata to scikit-build-core (#20391)
+ - add hatch-requirements-txt extension to hatchling easyconfigs (#20389)
+ - install pkg-config files for ncurses 6.4 when using GCCcore toolchain (#20405)
+ - use regular 'configure' instead of wrapper script for recent UCX easyconfigs (#20428)
+ - add RISC-V support to UCX 1.15.0 (#20429), UCC 1.2.0 (#20432), BLIS 0.9.0 (#20468), PAPI 7.1.0 (20659)
+ - add extensions to R-bundle-CRAN v2023.12: cmna (#20445), rhandsontable (#20614), XBRL (#20506)
+ - add checksum for RISC-V version to easyconfig for Java 21.0.2 (#20495)
+ - remove 'TORCHVISION_INCLUDE' from PyTorch-bundle easyconfigs, now handled by custom easyblock for torchvision (#20504)
+ - add dependencies required for GUI in Cellpose 2.2.2 easyconfigs (#20620)
+ - add 'build_info_msg' about kernel modules to GDRCopy (#20641)
+ - build both static and shared libs for Brotli 1.1.0 (#20757)
+- various bug fixes, including:
+ - add missing dependencies for funannotate (#17690)
+ - fix path to SuiteSparse include/lib in easyconfig for CVXopt v1.3.1 (#20232)
+ - fix Highway 1.0.3 on some systems by disabling 'AVX3_DL' (#20298)
+ - replace incorrect scikit-bio 0.5.9 with scikit-bio 0.6.0 as dependency for scCODA (#20300)
+ - add alternate checksum to OpenMolcas v23.06 (#20301)
+ - change arrow-R dependency of Bioconductor v3.18 to v14.0.1 (which depends on required matching Arrow v14.0.1) (#20324)
+ - fix hardcoded '/bin/mv' path in Rhdf5lib extension included in R-bundle-Bioconductor v3.16 + v3.18 (#20378)
+ - remove dependency on HDF5 in recent Bioconductor easyconfigs (#20379)
+ - make sure that libjpeg-turbo libraries are installed in 'lib' subdirectory (#20386)
+ - add patch for Libint 2.7.2 to fix compiler error with glibc >= 2.34 (#20396)
+ - use 'bash' rather than 'sh' to run PLINK-2.00a3.7 tests (#20404)
+ - add patch to fix 'UNPACK-OPAL-VALUE: UNSUPPORTED TYPE 33 FOR KEY' error in OpenMPI 4.1.5 (#20422)
+ - add patch to increase compatibility with AVX512 platforms for bwa-mem2 v2.2.1 (#20434)
+ - add patch for GROMACS 2024.1 to fix filesystem race in tests (#20439)
+ - demote poetry to build dependency for nanocompore (#20453)
+ - add patch to fix CVE-2024-27322 in R v3.6.x (#20464), v4.0.x (#20463), and v4.1.x + v4.2.x + v4.3.x (#20462)
+ - disable test that fetches from the web for torchtext extension in PyTorch-bundle v2.1.2 (#20484)
+ - fix sanity check paths for JupyterLab 4.0.5 (#20514)
+ - fix detection of CC/CXX compilers for 'wmake' in OpenFOAM v2306 + v2312 (#20517)
+ - use the included gmxapi for GROMACS 2024.1 (#20522)
+ - add new checksum for signal_1.8-0 to R-bundle-CRAN-2023.12 (#20527)
+ - fix test in Cwd extension of Perl-bundle-CPAN 5.36.1 (#20536)
+ - fix patch name in easyconfig for Perl-bundle-CPAN 5.36.1 + add also use it for Perl-bundle-CPAN 5.38.0 (#20540)
+ - fix cwd_enoent test in Perl (#20541)
+ - move dependency on BeasutifulSoup in IPython v8.14.0 to jupyter-server (#20547)
+ - remove dependency on BeasutifulSoup from IPython v8.17.2 (#20548)
+ - add alternative checksum for source tarball of MONAI 1.3.0 (#20618)
+ - add cpio as build dependency to recent BLAST+ versions (#20674)
+ - add --disable-htmlpages to recent FFmpeg easyconfigs (#20686)
+ - remove duplicate crates from easyconfig for timm-0.9.7 (#20687)
+ - add missing HDF5 dependency in recent Armadillo easyconfigs (>= 11.4.3) (#20710)
+ - add patches for failing LAPACK tests and RISC-V test segfaults to OpenBLAS 0.3.27 (#20745)
+ - move all easyconfigs for libavif to GCCcore toolchain + fix dependencies (#20747)
+ - make sure mummerplot can use gnuplot if available for recent MUMmer (#20749)
+ - prevent configure script of recent BLAST+ versions from prepending system paths to $PATH (#20751)
+ - fix fastparquet v2023.4.0 using CargoPythonBundle easyblock (#20775)
+ - remove --with-64 from configopts for recent BLAST+ versions (#20784)
+ - add patch to fix build of pdsh 2.34 with Slurm 23.x (#20795)
+- other changes:
+ - move 'build' from extensions to dependencies in easyconfig for napari 0.4.18 (#20433)
+ - update version of fsspec extension in easyconfig for Squidpy 1.4.1 to be compatible with s3fs provided via PyTorch-bundle (#20477)
+ - add commented out PSM2 dependency, relevant for x86_64 systems with OmniPath, to recent libfabric easyconfigs (#20501, #20585, #20794)
+ - replace SQLAlchemy extension with regular dependency in easyconfig for Optuna v3.5.0 (#20510)
+ - replace SQLAlchemy extension in JupyterHub v4.0.2 easyconfig with regular dependency (#20511)
+ - bump Cython to v3.0.8 in Cartopy v0.22.0 easyconfig for foss/2023a toolchain, to avoid dependency version conflict with sckit-learn v1.4.2, which requires Cython >= v3.0.8 (#20525)
+ - change dependency on hatchling of BeautifulSoup v4.12.2 to a build dependency (#20546)
+ - bump async-timeout to 4.0.3 in aiohttp 3.8.5 (#20553)
+ - stick to gfbf/2023a as toolchain for ipympl v0.9.3 (#20586)
+ - rename tornado-timeouts.patch to tornado-6.1_increase-default-timeouts.patch + add missing authorship (#20587)
+ - remove easyconfigs for CellBender v0.3.1, since this version has been redacted due to a serious bug (#20722)
v4.9.1 (5 April 2024)
@@ -1263,7 +1717,7 @@ update/bugfix release
- fix typo in templated source URL in RcppGSL 0.3.8 easyconfig: $(name)s should be %(name)s (#14962)
- other changes:
- update Java/17 wrapper to Java 17.0.2 (#14868)
- - use actions/setup-python@v2 in CI workflows + trim test configurations for easyconfigs test suite: only test with Python 2.7 + 3.6 and Lmod 7.x + 8.x (#14857, #14881)
+ - use actions/setup-python@v5 in CI workflows + trim test configurations for easyconfigs test suite: only test with Python 2.7 + 3.6 and Lmod 7.x + 8.x (#14857, #14881)
v4.5.2 (January 24th 2022)
diff --git a/contrib/easyconfig-templates/2022a/Bundle-common-components.eb.tmpl b/contrib/easyconfig-templates/2022a/Bundle-common-components.eb.tmpl
new file mode 100644
index 00000000000..a212c7b34ec
--- /dev/null
+++ b/contrib/easyconfig-templates/2022a/Bundle-common-components.eb.tmpl
@@ -0,0 +1,49 @@
+# Template for a bundle of components from a common organisation and using the same easyblock on GCCcore 11.3.0
+easyblock = 'Bundle'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '11.3.0'}
+
+builddependencies = [
+ ('binutils', '2.38'),
+ ('CMake', '3.23.1'),
+]
+
+dependencies = [
+ ('DependencyName', '0.0.0'),
+]
+
+default_easyblock = 'CMakeMake'
+default_component_specs = {
+ 'source_urls': ['https://github.com/org/%(namelower)s/archive'],
+ 'sources': [{'download_filename': '%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}],
+ 'start_dir': '%(name)s-%(version)s',
+}
+
+components = [
+ ('component1', '0.0.0', {
+ }),
+ ('component2', '0.0.0', {
+ }),
+ ('component3', '0.0.0', {
+ }),
+]
+
+sanity_check_paths = {
+ 'files': ['bin/comp2', 'bin/comp3', f'lib/libcomp1.{SHLIB_EXT}'],
+ 'dirs': ['include/comp1', 'include/comp2', 'include/comp3'],
+}
+
+sanity_check_commands = [
+ "comp2 -h",
+ "comp3 -h",
+]
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2022a/Bundle-mixed-components.eb.tmpl b/contrib/easyconfig-templates/2022a/Bundle-mixed-components.eb.tmpl
new file mode 100644
index 00000000000..35fddaf5b7a
--- /dev/null
+++ b/contrib/easyconfig-templates/2022a/Bundle-mixed-components.eb.tmpl
@@ -0,0 +1,58 @@
+# Template for a mixed bundle of components using different easyblocks on GCCcore 11.3.0
+easyblock = 'Bundle'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '11.3.0'}
+
+builddependencies = [
+ ('Autotools', '20220317'),
+ ('binutils', '2.38'),
+ ('make', '4.3'),
+]
+
+dependencies = [
+ ('DependencyName', '0.0.0'),
+]
+
+components = [
+ ('component1', '0.0.0', {
+ 'easyblock': 'MakeCp',
+ 'source_urls': ['https://download.sourceforge.net/%(namelower)s'],
+ 'sources': [SOURCELOWER_TAR_GZ],
+ 'start_dir': '%(namelower)s-%(version)s',
+ 'files_to_copy': [(['comp1', 'comp1_turbo'], 'bin')],
+ }),
+ ('component2', '0.0.0', {
+ 'easyblock': 'ConfigureMake',
+ 'source_urls': ['http://www.domain.org/download/'],
+ 'sources': [SOURCELOWER_TAR_GZ],
+ 'start_dir': '%(namelower)s-%(version)s',
+ 'preconfigopts': "autoreconf -fi &&",
+ }),
+ ('component2_data', '0.0.0', {
+ 'easyblock': 'Tarball',
+ 'source_urls': ['https://github.com/org/%(namelower)s/archive'],
+ 'sources': [{'download_filename': '%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}],
+ 'start_dir': '%(namelower)s-%(version)s',
+ 'install_type': 'subdir',
+ }),
+]
+
+sanity_check_paths = {
+ 'files': ['bin/{x}' for x in ['comp1', 'comp1_turbo', 'comp2']],
+ 'dirs': ['component2_data'],
+}
+
+sanity_check_commands = [
+ "comp1 -h",
+ "comp2 -h",
+]
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2022a/CMakeMake-minimal.eb.tmpl b/contrib/easyconfig-templates/2022a/CMakeMake-minimal.eb.tmpl
new file mode 100644
index 00000000000..6957237e605
--- /dev/null
+++ b/contrib/easyconfig-templates/2022a/CMakeMake-minimal.eb.tmpl
@@ -0,0 +1,36 @@
+# Template for simple CMakeMake package in GCCcore 11.3.0
+easyblock = 'CMakeMake'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '11.3.0'}
+
+source_urls = ['http://www.domain.org/download/']
+sources = [SOURCELOWER_TAR_GZ]
+
+builddependencies = [
+ ('binutils', '2.38'),
+ ('CMake', '3.23.1'),
+]
+
+dependencies = [
+ ('DependencyName', '0.0.0'),
+]
+
+sanity_check_paths = {
+ 'files': ['bin/%(namelower)s', f'lib/lib%(namelower)s.{SHLIB_EXT}'],
+ 'dirs': ['include'],
+}
+
+sanity_check_commands = [
+ "%(namelower)s -v",
+ "%(namelower)s -h 2>&1 | grep 'pattern.*in.*output'",
+]
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2022a/CMakeMake-python-extension-github.eb.tmpl b/contrib/easyconfig-templates/2022a/CMakeMake-python-extension-github.eb.tmpl
new file mode 100644
index 00000000000..076bb48eda3
--- /dev/null
+++ b/contrib/easyconfig-templates/2022a/CMakeMake-python-extension-github.eb.tmpl
@@ -0,0 +1,53 @@
+# Template for CMakeMake package with PythonPackage extensions in foss 2022a
+easyblock = 'CMakeMake'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'foss', 'version': '2022a'}
+
+github_account = 'gh_account'
+source_urls = [GITHUB_SOURCE]
+sources = [{'download_filename': '%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}]
+
+builddependencies = [
+ ('CMake', '3.23.1'),
+]
+
+dependencies = [
+ ('Python', '3.10.4'),
+ ('SciPy-bundle', '2022.05'),
+]
+
+exts_defaultclass = 'PythonPackage'
+exts_default_options = {
+ 'source_urls': [PYPI_SOURCE],
+ 'download_dep_fail': True,
+ 'sanity_pip_check': True,
+}
+exts_list = [
+ ('python_dependency', '0.0.0', {
+ }),
+ ('softwarename_python', version, {
+ # common case: python bindings for the installed SoftwareName
+ }),
+]
+
+sanity_check_paths = {
+ 'files': ['bin/%(namelower)s', f'lib/lib%(namelower)s.{SHLIB_EXT}'],
+ 'dirs': ['include', 'lib/python%(pyshortver)s/site-packages'],
+}
+
+sanity_check_commands = [
+ "%(namelower)s -h",
+ "python -c 'import %(namelower)s'",
+]
+
+modextrapaths = {'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages'}
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2022a/ConfigureMake-autotools-github-commit.eb.tmpl b/contrib/easyconfig-templates/2022a/ConfigureMake-autotools-github-commit.eb.tmpl
new file mode 100644
index 00000000000..0f2383ed76d
--- /dev/null
+++ b/contrib/easyconfig-templates/2022a/ConfigureMake-autotools-github-commit.eb.tmpl
@@ -0,0 +1,41 @@
+# Template for ConfigureMake package from github using Autotools in GCCcore 11.3.0
+easyblock = 'ConfigureMake'
+
+name = 'SoftwareName'
+version = 'YYYYMMDD'
+_commit = '0000000000000000000000000000000000000000'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '11.3.0'}
+
+github_account = 'gh_account'
+source_urls = [GITHUB_SOURCE]
+sources = [{'download_filename': f'{_commit}.tar.gz', 'filename': SOURCE_TAR_GZ}]
+
+builddependencies = [
+ ('Autotools', '20220317'),
+ ('binutils', '2.38'),
+ ('make', '4.3'),
+]
+
+dependencies = [
+ ('DependencyName', '0.0.0'),
+]
+
+preconfigopts = "autoreconf -fi && "
+
+sanity_check_paths = {
+ 'files': ['bin/%(namelower)s', f'lib/lib%(namelower)s.{SHLIB_EXT}'],
+ 'dirs': ['include'],
+}
+
+sanity_check_commands = [
+ "%(namelower)s -v",
+ "%(namelower)s -h 2>&1 | grep 'pattern.*in.*output'",
+]
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2022a/ConfigureMake-minimal.eb.tmpl b/contrib/easyconfig-templates/2022a/ConfigureMake-minimal.eb.tmpl
new file mode 100644
index 00000000000..637ddbdee08
--- /dev/null
+++ b/contrib/easyconfig-templates/2022a/ConfigureMake-minimal.eb.tmpl
@@ -0,0 +1,36 @@
+# Template for simple ConfigureMake package in GCCcore 11.3.0
+easyblock = 'ConfigureMake'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '11.3.0'}
+
+source_urls = ['https://www.domain.org/download/']
+sources = [SOURCELOWER_TAR_GZ]
+
+builddependencies = [
+ ('binutils', '2.38'),
+ ('make', '4.3'),
+]
+
+dependencies = [
+ ('DependencyName', '0.0.0'),
+]
+
+sanity_check_paths = {
+ 'files': ['bin/%(namelower)s', f'lib/lib%(namelower)s.{SHLIB_EXT}'],
+ 'dirs': ['include'],
+}
+
+sanity_check_commands = [
+ "%(namelower)s -v",
+ "%(namelower)s -h 2>&1 | grep 'pattern.*in.*output'",
+]
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2022a/MakeCp-minimal.eb.tmpl b/contrib/easyconfig-templates/2022a/MakeCp-minimal.eb.tmpl
new file mode 100644
index 00000000000..a1426c1914d
--- /dev/null
+++ b/contrib/easyconfig-templates/2022a/MakeCp-minimal.eb.tmpl
@@ -0,0 +1,39 @@
+# Template for software with Makefile lacking installation target in GCCcore 11.3.0
+easyblock = 'MakeCp'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '11.3.0'}
+
+source_urls = ['http://www.domain.org/download/']
+sources = [SOURCELOWER_TAR_GZ]
+
+builddependencies = [
+ ('binutils', '2.38'),
+ ('make', '4.3'),
+]
+
+dependencies = [
+ ('DependencyName', '0.0.0'),
+]
+
+_executables = ['%(namelower)s', 'other_binary']
+files_to_copy = [(_executables, 'bin'), 'README.md', 'other_folder']
+
+sanity_check_paths = {
+ 'files': [f'bin/{x}' for x in _executables],
+ 'dirs': ['other_folder'],
+}
+
+sanity_check_commands = [
+ "%(namelower)s -v",
+ "%(namelower)s -h 2>&1 | grep 'pattern.*in.*output'",
+]
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2022a/PackedBinary-java.eb.tmpl b/contrib/easyconfig-templates/2022a/PackedBinary-java.eb.tmpl
new file mode 100644
index 00000000000..b3a0fc01b3c
--- /dev/null
+++ b/contrib/easyconfig-templates/2022a/PackedBinary-java.eb.tmpl
@@ -0,0 +1,38 @@
+# Template for software written in Java installed from an archive that needs unpacking
+easyblock = 'PackedBinary'
+
+name = 'SoftwareName'
+version = '0.0.0'
+versionsuffix = '-Java-%(javaver)s'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = SYSTEM
+
+source_urls = ['http://www.domain.org/download/']
+sources = [SOURCELOWER_TAR_GZ]
+
+dependencies = [
+ ('Java', '11'),
+]
+
+postinstallcmds = [
+ "ln -s %(installdir)s/%(name)s-%(version)s.jar %(installdir)s/%(name)s.jar",
+]
+
+sanity_check_paths = {
+ 'files': ['%(namelower)s-%(version)s.jar'],
+ 'dirs': ['libs'],
+}
+
+sanity_check_commands = [
+ "java org.something.something",
+ "java -jar $EBROOTSOFTWARENAME/%(namelower)s.jar",
+]
+
+modextrapaths = {'CLASSPATH': 'libs/*'}
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2022a/PythonBundle-minimal.eb.tmpl b/contrib/easyconfig-templates/2022a/PythonBundle-minimal.eb.tmpl
new file mode 100644
index 00000000000..ab1cae869d3
--- /dev/null
+++ b/contrib/easyconfig-templates/2022a/PythonBundle-minimal.eb.tmpl
@@ -0,0 +1,36 @@
+# Template for a minimal python bundle on GCCcore 11.3.0
+easyblock = 'PythonBundle'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '11.3.0'}
+
+builddependencies = [
+ ('binutils', '2.38'),
+]
+
+dependencies = [
+ ('Python', '3.10.4'),
+]
+
+exts_list = [
+ ('ext1-name-from-pypi', 'ext1_version', {
+ }),
+ ('ext2-name-from-pypi', 'ext2_version', {
+ 'modulename': 'import_name',
+ ('wheel-name-from-pipy', 'ext3_version', {
+ 'source_tmpl': '%(name)s-%(version)s-py3-none-any.whl',
+ ('name-lower', 'version', {
+ 'use_pip_extras': 'extra',
+ }),
+]
+
+sanity_pip_check = True
+
+moduleclass = 'class_name'
diff --git a/contrib/easyconfig-templates/2022a/PythonBundle-scipy.eb.tmpl b/contrib/easyconfig-templates/2022a/PythonBundle-scipy.eb.tmpl
new file mode 100644
index 00000000000..0d435446c86
--- /dev/null
+++ b/contrib/easyconfig-templates/2022a/PythonBundle-scipy.eb.tmpl
@@ -0,0 +1,33 @@
+# Template for a python bundle using SciPy-bundle on 2022a
+easyblock = 'PythonBundle'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'foss', 'version': '2022a'}
+
+dependencies = [
+ ('Python', '3.10.4'),
+ ('SciPy-bundle', '2022.05'),
+]
+
+exts_list = [
+ ('ext1-name-from-pypi', 'ext1_version', {
+ }),
+ ('ext2-name-from-pypi', 'ext2_version', {
+ 'modulename': 'import_name',
+ ('wheel-name-from-pipy', 'ext3_version', {
+ 'source_tmpl': '%(name)s-%(version)s-py3-none-any.whl',
+ ('name-lower', 'version', {
+ 'use_pip_extras': 'extra',
+ }),
+]
+
+sanity_pip_check = True
+
+moduleclass = 'class_name'
diff --git a/contrib/easyconfig-templates/2022a/Tarball-perl.eb.tmpl b/contrib/easyconfig-templates/2022a/Tarball-perl.eb.tmpl
new file mode 100644
index 00000000000..688aa0aec46
--- /dev/null
+++ b/contrib/easyconfig-templates/2022a/Tarball-perl.eb.tmpl
@@ -0,0 +1,38 @@
+# Template for software written in Perl in GCCcore 11.3.0 installed by simple copy of the sources
+easyblock = 'Tarball'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '11.3.0'}
+
+source_urls = ['http://www.domain.org/download/']
+sources = [SOURCELOWER_TAR_GZ]
+
+dependencies = [
+ ('Perl', '5.34.1'),
+]
+
+fix_perl_shebang_for = ['*.pl']
+
+sanity_check_paths = {
+ 'files': ['%(namelower)s.pl'],
+ 'dirs': ['lib/perl5/site_perl'],
+}
+
+sanity_check_commands = [
+ "%(namelower)s.pl -v",
+ "%(namelower)s.pl -h 2>&1 | grep 'pattern.*in.*output'",
+]
+
+modextrapaths = {
+ 'PATH': '',
+ 'PERL5LIB': 'lib/perl5/site_perl',
+}
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2023a/Bundle-common-components.eb.tmpl b/contrib/easyconfig-templates/2023a/Bundle-common-components.eb.tmpl
new file mode 100644
index 00000000000..5a20ac19b83
--- /dev/null
+++ b/contrib/easyconfig-templates/2023a/Bundle-common-components.eb.tmpl
@@ -0,0 +1,49 @@
+# Template for a bundle of components from a common organisation and using the same easyblock on GCCcore 12.3.0
+easyblock = 'Bundle'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '12.3.0'}
+
+builddependencies = [
+ ('binutils', '2.40'),
+ ('CMake', '3.26.3'),
+]
+
+dependencies = [
+ ('DependencyName', '0.0.0'),
+]
+
+default_easyblock = 'CMakeMake'
+default_component_specs = {
+ 'source_urls': ['https://github.com/org/%(namelower)s/archive'],
+ 'sources': [{'download_filename': '%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}],
+ 'start_dir': '%(name)s-%(version)s',
+}
+
+components = [
+ ('component1', '0.0.0', {
+ }),
+ ('component2', '0.0.0', {
+ }),
+ ('component3', '0.0.0', {
+ }),
+]
+
+sanity_check_paths = {
+ 'files': ['bin/comp2', 'bin/comp3', f'lib/libcomp1.{SHLIB_EXT}'],
+ 'dirs': ['include/comp1', 'include/comp2', 'include/comp3'],
+}
+
+sanity_check_commands = [
+ "comp2 -h",
+ "comp3 -h",
+]
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2023a/Bundle-mixed-components.eb.tmpl b/contrib/easyconfig-templates/2023a/Bundle-mixed-components.eb.tmpl
new file mode 100644
index 00000000000..8eb50b6102e
--- /dev/null
+++ b/contrib/easyconfig-templates/2023a/Bundle-mixed-components.eb.tmpl
@@ -0,0 +1,58 @@
+# Template for a mixed bundle of components using different easyblocks on GCCcore 12.3.0
+easyblock = 'Bundle'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '12.3.0'}
+
+builddependencies = [
+ ('Autotools', '20220317'),
+ ('binutils', '2.40'),
+ ('make', '4.4.1'),
+]
+
+dependencies = [
+ ('DependencyName', '0.0.0'),
+]
+
+components = [
+ ('component1', '0.0.0', {
+ 'easyblock': 'MakeCp',
+ 'source_urls': ['https://download.sourceforge.net/%(namelower)s'],
+ 'sources': [SOURCELOWER_TAR_GZ],
+ 'start_dir': '%(namelower)s-%(version)s',
+ 'files_to_copy': [(['comp1', 'comp1_turbo'], 'bin')],
+ }),
+ ('component2', '0.0.0', {
+ 'easyblock': 'ConfigureMake',
+ 'source_urls': ['http://www.domain.org/download/'],
+ 'sources': [SOURCELOWER_TAR_GZ],
+ 'start_dir': '%(namelower)s-%(version)s',
+ 'preconfigopts': "autoreconf -fi &&",
+ }),
+ ('component2_data', '0.0.0', {
+ 'easyblock': 'Tarball',
+ 'source_urls': ['https://github.com/org/%(namelower)s/archive'],
+ 'sources': [{'download_filename': '%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}],
+ 'start_dir': '%(namelower)s-%(version)s',
+ 'install_type': 'subdir',
+ }),
+]
+
+sanity_check_paths = {
+ 'files': ['bin/{x}' for x in ['comp1', 'comp1_turbo', 'comp2']],
+ 'dirs': ['component2_data'],
+}
+
+sanity_check_commands = [
+ "comp1 -h",
+ "comp2 -h",
+]
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2023a/CMakeMake-minimal.eb.tmpl b/contrib/easyconfig-templates/2023a/CMakeMake-minimal.eb.tmpl
new file mode 100644
index 00000000000..7a100853cb8
--- /dev/null
+++ b/contrib/easyconfig-templates/2023a/CMakeMake-minimal.eb.tmpl
@@ -0,0 +1,36 @@
+# Template for simple CMakeMake package in GCCcore 12.3.0
+easyblock = 'CMakeMake'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '12.3.0'}
+
+source_urls = ['http://www.domain.org/download/']
+sources = [SOURCELOWER_TAR_GZ]
+
+builddependencies = [
+ ('binutils', '2.40'),
+ ('CMake', '3.26.3'),
+]
+
+dependencies = [
+ ('DependencyName', '0.0.0'),
+]
+
+sanity_check_paths = {
+ 'files': ['bin/%(namelower)s', f'lib/lib%(namelower)s.{SHLIB_EXT}'],
+ 'dirs': ['include'],
+}
+
+sanity_check_commands = [
+ "%(namelower)s -v",
+ "%(namelower)s -h 2>&1 | grep 'pattern.*in.*output'",
+]
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2023a/CMakeMake-python-extension-github.eb.tmpl b/contrib/easyconfig-templates/2023a/CMakeMake-python-extension-github.eb.tmpl
new file mode 100644
index 00000000000..b223f29b3a3
--- /dev/null
+++ b/contrib/easyconfig-templates/2023a/CMakeMake-python-extension-github.eb.tmpl
@@ -0,0 +1,53 @@
+# Template for CMakeMake package with PythonPackage extensions in gfbf 2023a
+easyblock = 'CMakeMake'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'gfbf', 'version': '2023a'}
+
+github_account = 'gh_account'
+source_urls = [GITHUB_SOURCE]
+sources = [{'download_filename': '%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}]
+
+builddependencies = [
+ ('CMake', '3.26.3'),
+]
+
+dependencies = [
+ ('Python', '3.11.3'),
+ ('SciPy-bundle', '2023.07'),
+]
+
+exts_defaultclass = 'PythonPackage'
+exts_default_options = {
+ 'source_urls': [PYPI_SOURCE],
+ 'download_dep_fail': True,
+ 'sanity_pip_check': True,
+}
+exts_list = [
+ ('python_dependency', '0.0.0', {
+ }),
+ ('softwarename_python', version, {
+ # common case: python bindings for the installed SoftwareName
+ }),
+]
+
+sanity_check_paths = {
+ 'files': ['bin/%(namelower)s', f'lib/lib%(namelower)s.{SHLIB_EXT}'],
+ 'dirs': ['include', 'lib/python%(pyshortver)s/site-packages'],
+}
+
+sanity_check_commands = [
+ "%(namelower)s -h",
+ "python -c 'import %(namelower)s'",
+]
+
+modextrapaths = {'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages'}
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2023a/ConfigureMake-autotools-github-commit.eb.tmpl b/contrib/easyconfig-templates/2023a/ConfigureMake-autotools-github-commit.eb.tmpl
new file mode 100644
index 00000000000..a76f8d4ae97
--- /dev/null
+++ b/contrib/easyconfig-templates/2023a/ConfigureMake-autotools-github-commit.eb.tmpl
@@ -0,0 +1,41 @@
+# Template for ConfigureMake package from github using Autotools in GCCcore 12.3.0
+easyblock = 'ConfigureMake'
+
+name = 'SoftwareName'
+version = 'YYYYMMDD'
+_commit = '0000000000000000000000000000000000000000'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '12.3.0'}
+
+github_account = 'gh_account'
+source_urls = [GITHUB_SOURCE]
+sources = [{'download_filename': f'{_commit}.tar.gz', 'filename': SOURCE_TAR_GZ}]
+
+builddependencies = [
+ ('Autotools', '20220317'),
+ ('binutils', '2.40'),
+ ('make', '4.4.1'),
+]
+
+dependencies = [
+ ('DependencyName', '0.0.0'),
+]
+
+preconfigopts = "autoreconf -fi && "
+
+sanity_check_paths = {
+ 'files': ['bin/%(namelower)s', f'lib/lib%(namelower)s.{SHLIB_EXT}'],
+ 'dirs': ['include'],
+}
+
+sanity_check_commands = [
+ "%(namelower)s -v",
+ "%(namelower)s -h 2>&1 | grep 'pattern.*in.*output'",
+]
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2023a/ConfigureMake-minimal.eb.tmpl b/contrib/easyconfig-templates/2023a/ConfigureMake-minimal.eb.tmpl
new file mode 100644
index 00000000000..21af8e0359a
--- /dev/null
+++ b/contrib/easyconfig-templates/2023a/ConfigureMake-minimal.eb.tmpl
@@ -0,0 +1,36 @@
+# Template for simple ConfigureMake package in GCCcore 12.3.0
+easyblock = 'ConfigureMake'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '12.3.0'}
+
+source_urls = ['https://www.domain.org/download/']
+sources = [SOURCELOWER_TAR_GZ]
+
+builddependencies = [
+ ('binutils', '2.40'),
+ ('make', '4.4.1'),
+]
+
+dependencies = [
+ ('DependencyName', '0.0.0'),
+]
+
+sanity_check_paths = {
+ 'files': ['bin/%(namelower)s', f'lib/lib%(namelower)s.{SHLIB_EXT}'],
+ 'dirs': ['include'],
+}
+
+sanity_check_commands = [
+ "%(namelower)s -v",
+ "%(namelower)s -h 2>&1 | grep 'pattern.*in.*output'",
+]
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2023a/MakeCp-minimal.eb.tmpl b/contrib/easyconfig-templates/2023a/MakeCp-minimal.eb.tmpl
new file mode 100644
index 00000000000..6637ae4ea24
--- /dev/null
+++ b/contrib/easyconfig-templates/2023a/MakeCp-minimal.eb.tmpl
@@ -0,0 +1,39 @@
+# Template for software with Makefile lacking installation target in GCCcore 12.3.0
+easyblock = 'MakeCp'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '12.3.0'}
+
+source_urls = ['http://www.domain.org/download/']
+sources = [SOURCELOWER_TAR_GZ]
+
+builddependencies = [
+ ('binutils', '2.40'),
+ ('make', '4.4.1'),
+]
+
+dependencies = [
+ ('DependencyName', '0.0.0'),
+]
+
+_executables = ['%(namelower)s', 'other_binary']
+files_to_copy = [(_executables, 'bin'), 'README.md', 'other_folder']
+
+sanity_check_paths = {
+ 'files': [f'bin/{x}' for x in _executables],
+ 'dirs': ['other_folder'],
+}
+
+sanity_check_commands = [
+ "%(namelower)s -v",
+ "%(namelower)s -h 2>&1 | grep 'pattern.*in.*output'",
+]
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2023a/PackedBinary-java.eb.tmpl b/contrib/easyconfig-templates/2023a/PackedBinary-java.eb.tmpl
new file mode 100644
index 00000000000..b3a0fc01b3c
--- /dev/null
+++ b/contrib/easyconfig-templates/2023a/PackedBinary-java.eb.tmpl
@@ -0,0 +1,38 @@
+# Template for software written in Java installed from an archive that needs unpacking
+easyblock = 'PackedBinary'
+
+name = 'SoftwareName'
+version = '0.0.0'
+versionsuffix = '-Java-%(javaver)s'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = SYSTEM
+
+source_urls = ['http://www.domain.org/download/']
+sources = [SOURCELOWER_TAR_GZ]
+
+dependencies = [
+ ('Java', '11'),
+]
+
+postinstallcmds = [
+ "ln -s %(installdir)s/%(name)s-%(version)s.jar %(installdir)s/%(name)s.jar",
+]
+
+sanity_check_paths = {
+ 'files': ['%(namelower)s-%(version)s.jar'],
+ 'dirs': ['libs'],
+}
+
+sanity_check_commands = [
+ "java org.something.something",
+ "java -jar $EBROOTSOFTWARENAME/%(namelower)s.jar",
+]
+
+modextrapaths = {'CLASSPATH': 'libs/*'}
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2023a/PythonBundle-minimal.eb.tmpl b/contrib/easyconfig-templates/2023a/PythonBundle-minimal.eb.tmpl
new file mode 100644
index 00000000000..a176905238a
--- /dev/null
+++ b/contrib/easyconfig-templates/2023a/PythonBundle-minimal.eb.tmpl
@@ -0,0 +1,36 @@
+# Template for a minimal python bundle on GCCcore 12.3.0
+easyblock = 'PythonBundle'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '12.3.0'}
+
+builddependencies = [
+ ('binutils', '2.40'),
+]
+
+dependencies = [
+ ('Python', '3.11.3'),
+]
+
+exts_list = [
+ ('ext1-name-from-pypi', 'ext1_version', {
+ }),
+ ('ext2-name-from-pypi', 'ext2_version', {
+ 'modulename': 'import_name',
+ ('wheel-name-from-pipy', 'ext3_version', {
+ 'source_tmpl': '%(name)s-%(version)s-py3-none-any.whl',
+ ('name-lower', 'version', {
+ 'use_pip_extras': 'extra',
+ }),
+]
+
+sanity_pip_check = True
+
+moduleclass = 'class_name'
diff --git a/contrib/easyconfig-templates/2023a/PythonBundle-pytest.eb.tmpl b/contrib/easyconfig-templates/2023a/PythonBundle-pytest.eb.tmpl
new file mode 100644
index 00000000000..665794104d8
--- /dev/null
+++ b/contrib/easyconfig-templates/2023a/PythonBundle-pytest.eb.tmpl
@@ -0,0 +1,34 @@
+# Template for a python bundle including a test step with pytest on GCCcore 12.3.0
+easyblock = 'PythonBundle'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '12.3.0'}
+
+builddependencies = [
+ ('binutils', '2.40'),
+ ('pytest', '7.4.2'),
+]
+
+dependencies = [
+ ('Python', '3.11.3'),
+]
+
+exts_list = [
+ ('ext1-name-from-pypi', 'ext1_version', {
+ }),
+ ('name-lower', 'version', {
+ 'runtest': 'pytest',
+ 'testinstall': True,
+ }),
+]
+
+sanity_pip_check = True
+
+moduleclass = 'class_name'
diff --git a/contrib/easyconfig-templates/2023a/PythonBundle-scipy.eb.tmpl b/contrib/easyconfig-templates/2023a/PythonBundle-scipy.eb.tmpl
new file mode 100644
index 00000000000..ec6d0e09297
--- /dev/null
+++ b/contrib/easyconfig-templates/2023a/PythonBundle-scipy.eb.tmpl
@@ -0,0 +1,33 @@
+# Template for a python bundle using SciPy-bundle on 2023a
+easyblock = 'PythonBundle'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'gfbf', 'version': '2023a'}
+
+dependencies = [
+ ('Python', '3.11.3'),
+ ('SciPy-bundle', '2023.07'),
+]
+
+exts_list = [
+ ('ext1-name-from-pypi', 'ext1_version', {
+ }),
+ ('ext2-name-from-pypi', 'ext2_version', {
+ 'modulename': 'import_name',
+ ('wheel-name-from-pipy', 'ext3_version', {
+ 'source_tmpl': '%(name)s-%(version)s-py3-none-any.whl',
+ ('name-lower', 'version', {
+ 'use_pip_extras': 'extra',
+ }),
+]
+
+sanity_pip_check = True
+
+moduleclass = 'class_name'
diff --git a/contrib/easyconfig-templates/2023a/Tarball-perl.eb.tmpl b/contrib/easyconfig-templates/2023a/Tarball-perl.eb.tmpl
new file mode 100644
index 00000000000..c249becb681
--- /dev/null
+++ b/contrib/easyconfig-templates/2023a/Tarball-perl.eb.tmpl
@@ -0,0 +1,39 @@
+# Template for software written in Perl in GCCcore 12.3.0 installed by simple copy of the sources
+easyblock = 'Tarball'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '12.3.0'}
+
+source_urls = ['http://www.domain.org/download/']
+sources = [SOURCELOWER_TAR_GZ]
+
+dependencies = [
+ ('Perl', '5.36.1'),
+ ('Perl-bundle-CPAN', '5.36.1'),
+]
+
+fix_perl_shebang_for = ['*.pl']
+
+sanity_check_paths = {
+ 'files': ['%(namelower)s.pl'],
+ 'dirs': ['lib/perl5/site_perl'],
+}
+
+sanity_check_commands = [
+ "%(namelower)s.pl -v",
+ "%(namelower)s.pl -h 2>&1 | grep 'pattern.*in.*output'",
+]
+
+modextrapaths = {
+ 'PATH': '',
+ 'PERL5LIB': 'lib/perl5/site_perl',
+}
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2024a/Bundle-common-components.eb.tmpl b/contrib/easyconfig-templates/2024a/Bundle-common-components.eb.tmpl
new file mode 100644
index 00000000000..f8d9f1c16e6
--- /dev/null
+++ b/contrib/easyconfig-templates/2024a/Bundle-common-components.eb.tmpl
@@ -0,0 +1,49 @@
+# Template for a bundle of components from a common organisation and using the same easyblock on GCCcore 13.3.0
+easyblock = 'Bundle'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
+
+builddependencies = [
+ ('binutils', '2.42'),
+ ('CMake', '3.29.3'),
+]
+
+dependencies = [
+ ('DependencyName', '0.0.0'),
+]
+
+default_easyblock = 'CMakeMake'
+default_component_specs = {
+ 'source_urls': ['https://github.com/org/%(namelower)s/archive'],
+ 'sources': [{'download_filename': '%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}],
+ 'start_dir': '%(name)s-%(version)s',
+}
+
+components = [
+ ('component1', '0.0.0', {
+ }),
+ ('component2', '0.0.0', {
+ }),
+ ('component3', '0.0.0', {
+ }),
+]
+
+sanity_check_paths = {
+ 'files': ['bin/comp2', 'bin/comp3', f'lib/libcomp1.{SHLIB_EXT}'],
+ 'dirs': ['include/comp1', 'include/comp2', 'include/comp3'],
+}
+
+sanity_check_commands = [
+ "comp2 -h",
+ "comp3 -h",
+]
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2024a/Bundle-mixed-components.eb.tmpl b/contrib/easyconfig-templates/2024a/Bundle-mixed-components.eb.tmpl
new file mode 100644
index 00000000000..3995a406816
--- /dev/null
+++ b/contrib/easyconfig-templates/2024a/Bundle-mixed-components.eb.tmpl
@@ -0,0 +1,58 @@
+# Template for a mixed bundle of components using different easyblocks on GCCcore 13.3.0
+easyblock = 'Bundle'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
+
+builddependencies = [
+ ('Autotools', '20231222'),
+ ('binutils', '2.42'),
+ ('make', '4.4.1'),
+]
+
+dependencies = [
+ ('DependencyName', '0.0.0'),
+]
+
+components = [
+ ('component1', '0.0.0', {
+ 'easyblock': 'MakeCp',
+ 'source_urls': ['https://download.sourceforge.net/%(namelower)s'],
+ 'sources': [SOURCELOWER_TAR_GZ],
+ 'start_dir': '%(namelower)s-%(version)s',
+ 'files_to_copy': [(['comp1', 'comp1_turbo'], 'bin')],
+ }),
+ ('component2', '0.0.0', {
+ 'easyblock': 'ConfigureMake',
+ 'source_urls': ['http://www.domain.org/download/'],
+ 'sources': [SOURCELOWER_TAR_GZ],
+ 'start_dir': '%(namelower)s-%(version)s',
+ 'preconfigopts': "autoreconf -fi &&",
+ }),
+ ('component2_data', '0.0.0', {
+ 'easyblock': 'Tarball',
+ 'source_urls': ['https://github.com/org/%(namelower)s/archive'],
+ 'sources': [{'download_filename': '%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}],
+ 'start_dir': '%(namelower)s-%(version)s',
+ 'install_type': 'subdir',
+ }),
+]
+
+sanity_check_paths = {
+ 'files': ['bin/{x}' for x in ['comp1', 'comp1_turbo', 'comp2']],
+ 'dirs': ['component2_data'],
+}
+
+sanity_check_commands = [
+ "comp1 -h",
+ "comp2 -h",
+]
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2024a/CMakeMake-minimal.eb.tmpl b/contrib/easyconfig-templates/2024a/CMakeMake-minimal.eb.tmpl
new file mode 100644
index 00000000000..56420bfe016
--- /dev/null
+++ b/contrib/easyconfig-templates/2024a/CMakeMake-minimal.eb.tmpl
@@ -0,0 +1,36 @@
+# Template for simple CMakeMake package in GCCcore 13.3.0
+easyblock = 'CMakeMake'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
+
+source_urls = ['http://www.domain.org/download/']
+sources = [SOURCELOWER_TAR_GZ]
+
+builddependencies = [
+ ('binutils', '2.42'),
+ ('CMake', '3.29.3'),
+]
+
+dependencies = [
+ ('DependencyName', '0.0.0'),
+]
+
+sanity_check_paths = {
+ 'files': ['bin/%(namelower)s', f'lib/lib%(namelower)s.{SHLIB_EXT}'],
+ 'dirs': ['include'],
+}
+
+sanity_check_commands = [
+ "%(namelower)s -v",
+ "%(namelower)s -h 2>&1 | grep 'pattern.*in.*output'",
+]
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2024a/CMakeMake-python-extension-github.eb.tmpl b/contrib/easyconfig-templates/2024a/CMakeMake-python-extension-github.eb.tmpl
new file mode 100644
index 00000000000..6293b223a03
--- /dev/null
+++ b/contrib/easyconfig-templates/2024a/CMakeMake-python-extension-github.eb.tmpl
@@ -0,0 +1,53 @@
+# Template for CMakeMake package with PythonPackage extensions in gfbf 2023a
+easyblock = 'CMakeMake'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'gfbf', 'version': '2023a'}
+
+github_account = 'gh_account'
+source_urls = [GITHUB_SOURCE]
+sources = [{'download_filename': '%(version)s.tar.gz', 'filename': SOURCE_TAR_GZ}]
+
+builddependencies = [
+ ('CMake', '3.29.3'),
+]
+
+dependencies = [
+ ('CMake', '3.12.3'),
+ ('SciPy-bundle', '2023.07'),
+]
+
+exts_defaultclass = 'PythonPackage'
+exts_default_options = {
+ 'source_urls': [PYPI_SOURCE],
+ 'download_dep_fail': True,
+ 'sanity_pip_check': True,
+}
+exts_list = [
+ ('python_dependency', '0.0.0', {
+ }),
+ ('softwarename_python', version, {
+ # common case: python bindings for the installed SoftwareName
+ }),
+]
+
+sanity_check_paths = {
+ 'files': ['bin/%(namelower)s', f'lib/lib%(namelower)s.{SHLIB_EXT}'],
+ 'dirs': ['include', 'lib/python%(pyshortver)s/site-packages'],
+}
+
+sanity_check_commands = [
+ "%(namelower)s -h",
+ "python -c 'import %(namelower)s'",
+]
+
+modextrapaths = {'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages'}
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2024a/ConfigureMake-autotools-github-commit.eb.tmpl b/contrib/easyconfig-templates/2024a/ConfigureMake-autotools-github-commit.eb.tmpl
new file mode 100644
index 00000000000..0799ecdd5b4
--- /dev/null
+++ b/contrib/easyconfig-templates/2024a/ConfigureMake-autotools-github-commit.eb.tmpl
@@ -0,0 +1,41 @@
+# Template for ConfigureMake package from github using Autotools in GCCcore 13.3.0
+easyblock = 'ConfigureMake'
+
+name = 'SoftwareName'
+version = 'YYYYMMDD'
+_commit = '0000000000000000000000000000000000000000'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
+
+github_account = 'gh_account'
+source_urls = [GITHUB_SOURCE]
+sources = [{'download_filename': f'{_commit}.tar.gz', 'filename': SOURCE_TAR_GZ}]
+
+builddependencies = [
+ ('Autotools', '20231222'),
+ ('binutils', '2.42'),
+ ('make', '4.4.1'),
+]
+
+dependencies = [
+ ('DependencyName', '0.0.0'),
+]
+
+preconfigopts = "autoreconf -fi && "
+
+sanity_check_paths = {
+ 'files': ['bin/%(namelower)s', f'lib/lib%(namelower)s.{SHLIB_EXT}'],
+ 'dirs': ['include'],
+}
+
+sanity_check_commands = [
+ "%(namelower)s -v",
+ "%(namelower)s -h 2>&1 | grep 'pattern.*in.*output'",
+]
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2024a/ConfigureMake-minimal.eb.tmpl b/contrib/easyconfig-templates/2024a/ConfigureMake-minimal.eb.tmpl
new file mode 100644
index 00000000000..c6dacaf98c0
--- /dev/null
+++ b/contrib/easyconfig-templates/2024a/ConfigureMake-minimal.eb.tmpl
@@ -0,0 +1,36 @@
+# Template for simple ConfigureMake package in GCCcore 13.3.0
+easyblock = 'ConfigureMake'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
+
+source_urls = ['https://www.domain.org/download/']
+sources = [SOURCELOWER_TAR_GZ]
+
+builddependencies = [
+ ('binutils', '2.42'),
+ ('make', '4.4.1'),
+]
+
+dependencies = [
+ ('DependencyName', '0.0.0'),
+]
+
+sanity_check_paths = {
+ 'files': ['bin/%(namelower)s', f'lib/lib%(namelower)s.{SHLIB_EXT}'],
+ 'dirs': ['include'],
+}
+
+sanity_check_commands = [
+ "%(namelower)s -v",
+ "%(namelower)s -h 2>&1 | grep 'pattern.*in.*output'",
+]
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2024a/MakeCp-minimal.eb.tmpl b/contrib/easyconfig-templates/2024a/MakeCp-minimal.eb.tmpl
new file mode 100644
index 00000000000..03398705a02
--- /dev/null
+++ b/contrib/easyconfig-templates/2024a/MakeCp-minimal.eb.tmpl
@@ -0,0 +1,39 @@
+# Template for software with Makefile lacking installation target in GCCcore 13.3.0
+easyblock = 'MakeCp'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
+
+source_urls = ['http://www.domain.org/download/']
+sources = [SOURCELOWER_TAR_GZ]
+
+builddependencies = [
+ ('binutils', '2.42'),
+ ('make', '4.4.1'),
+]
+
+dependencies = [
+ ('DependencyName', '0.0.0'),
+]
+
+_executables = ['%(namelower)s', 'other_binary']
+files_to_copy = [(_executables, 'bin'), 'README.md', 'other_folder']
+
+sanity_check_paths = {
+ 'files': [f'bin/{x}' for x in _executables],
+ 'dirs': ['other_folder'],
+}
+
+sanity_check_commands = [
+ "%(namelower)s -v",
+ "%(namelower)s -h 2>&1 | grep 'pattern.*in.*output'",
+]
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2024a/PackedBinary-java.eb.tmpl b/contrib/easyconfig-templates/2024a/PackedBinary-java.eb.tmpl
new file mode 100644
index 00000000000..9e2b29726ab
--- /dev/null
+++ b/contrib/easyconfig-templates/2024a/PackedBinary-java.eb.tmpl
@@ -0,0 +1,38 @@
+# Template for software written in Java installed from an archive that needs unpacking
+easyblock = 'PackedBinary'
+
+name = 'SoftwareName'
+version = '0.0.0'
+versionsuffix = '-Java-%(javaver)s'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = SYSTEM
+
+source_urls = ['http://www.domain.org/download/']
+sources = [SOURCELOWER_TAR_GZ]
+
+dependencies = [
+ ('Java', '17'),
+]
+
+postinstallcmds = [
+ "ln -s %(installdir)s/%(name)s-%(version)s.jar %(installdir)s/%(name)s.jar",
+]
+
+sanity_check_paths = {
+ 'files': ['%(namelower)s-%(version)s.jar'],
+ 'dirs': ['libs'],
+}
+
+sanity_check_commands = [
+ "java org.something.something",
+ "java -jar $EBROOTSOFTWARENAME/%(namelower)s.jar",
+]
+
+modextrapaths = {'CLASSPATH': 'libs/*'}
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/2024a/PythonBundle-minimal.eb.tmpl b/contrib/easyconfig-templates/2024a/PythonBundle-minimal.eb.tmpl
new file mode 100644
index 00000000000..88c6d2eb219
--- /dev/null
+++ b/contrib/easyconfig-templates/2024a/PythonBundle-minimal.eb.tmpl
@@ -0,0 +1,36 @@
+# Template for a minimal python bundle on GCCcore 13.3.0
+easyblock = 'PythonBundle'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
+
+builddependencies = [
+ ('binutils', '2.42'),
+]
+
+dependencies = [
+ ('CMake', '3.12.3'),
+]
+
+exts_list = [
+ ('ext1-name-from-pypi', 'ext1_version', {
+ }),
+ ('ext2-name-from-pypi', 'ext2_version', {
+ 'modulename': 'import_name',
+ ('wheel-name-from-pipy', 'ext3_version', {
+ 'source_tmpl': '%(name)s-%(version)s-py3-none-any.whl',
+ ('name-lower', 'version', {
+ 'use_pip_extras': 'extra',
+ }),
+]
+
+sanity_pip_check = True
+
+moduleclass = 'class_name'
diff --git a/contrib/easyconfig-templates/2024a/PythonBundle-pytest.eb.tmpl b/contrib/easyconfig-templates/2024a/PythonBundle-pytest.eb.tmpl
new file mode 100644
index 00000000000..4ce7dbb7e50
--- /dev/null
+++ b/contrib/easyconfig-templates/2024a/PythonBundle-pytest.eb.tmpl
@@ -0,0 +1,34 @@
+# Template for a python bundle including a test step with pytest on GCCcore 13.3.0
+easyblock = 'PythonBundle'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
+
+builddependencies = [
+ ('binutils', '2.42'),
+ ('pytest', '8.3.3'),
+]
+
+dependencies = [
+ ('CMake', '3.12.3'),
+]
+
+exts_list = [
+ ('ext1-name-from-pypi', 'ext1_version', {
+ }),
+ ('name-lower', 'version', {
+ 'runtest': 'pytest',
+ 'testinstall': True,
+ }),
+]
+
+sanity_pip_check = True
+
+moduleclass = 'class_name'
diff --git a/contrib/easyconfig-templates/2024a/PythonBundle-scipy.eb.tmpl b/contrib/easyconfig-templates/2024a/PythonBundle-scipy.eb.tmpl
new file mode 100644
index 00000000000..627a7008933
--- /dev/null
+++ b/contrib/easyconfig-templates/2024a/PythonBundle-scipy.eb.tmpl
@@ -0,0 +1,33 @@
+# Template for a python bundle using SciPy-bundle on 2023a
+easyblock = 'PythonBundle'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'gfbf', 'version': '2023a'}
+
+dependencies = [
+ ('CMake', '3.12.3'),
+ ('SciPy-bundle', '2024.05'),
+]
+
+exts_list = [
+ ('ext1-name-from-pypi', 'ext1_version', {
+ }),
+ ('ext2-name-from-pypi', 'ext2_version', {
+ 'modulename': 'import_name',
+ ('wheel-name-from-pipy', 'ext3_version', {
+ 'source_tmpl': '%(name)s-%(version)s-py3-none-any.whl',
+ ('name-lower', 'version', {
+ 'use_pip_extras': 'extra',
+ }),
+]
+
+sanity_pip_check = True
+
+moduleclass = 'class_name'
diff --git a/contrib/easyconfig-templates/2024a/Tarball-perl.eb.tmpl b/contrib/easyconfig-templates/2024a/Tarball-perl.eb.tmpl
new file mode 100644
index 00000000000..3d7e6a21485
--- /dev/null
+++ b/contrib/easyconfig-templates/2024a/Tarball-perl.eb.tmpl
@@ -0,0 +1,39 @@
+# Template for software written in Perl in GCCcore 13.3.0 installed by simple copy of the sources
+easyblock = 'Tarball'
+
+name = 'SoftwareName'
+version = '0.0.0'
+
+homepage = 'https://www.domain.org'
+description = """
+Description in 80 chars long column
+"""
+
+toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
+
+source_urls = ['http://www.domain.org/download/']
+sources = [SOURCELOWER_TAR_GZ]
+
+dependencies = [
+ ('Perl', '5.38.2'),
+ ('Perl-bundle-CPAN', '5.38.2'),
+]
+
+fix_perl_shebang_for = ['*.pl']
+
+sanity_check_paths = {
+ 'files': ['%(namelower)s.pl'],
+ 'dirs': ['lib/perl5/site_perl'],
+}
+
+sanity_check_commands = [
+ "%(namelower)s.pl -v",
+ "%(namelower)s.pl -h 2>&1 | grep 'pattern.*in.*output'",
+]
+
+modextrapaths = {
+ 'PATH': '',
+ 'PERL5LIB': 'lib/perl5/site_perl',
+}
+
+moduleclass = 'module_class'
diff --git a/contrib/easyconfig-templates/README.rst b/contrib/easyconfig-templates/README.rst
new file mode 100644
index 00000000000..4142b69dd57
--- /dev/null
+++ b/contrib/easyconfig-templates/README.rst
@@ -0,0 +1,27 @@
+Easyconfig templates for EasyBuild
+==================================
+
+.. image:: https://easybuilders.github.io/easybuild/images/easybuild_logo_small.png
+ :align: center
+
+EasyBuild website: https://easybuilders.github.io/easybuild/
+EasyBuild docs: https://easybuild.readthedocs.io
+
+This directory contains a collection of easyconfig templates for commonly used
+package archetypes. These templates are designed to be used as starting points
+for the development of any new easyconfigs. Some are minimal and others are
+more complete and complex. All of them will help you save time by providing the
+structure of the easyconfig and several basic requirements already filled in.
+
+The templates are organized in folders per toolchain generation. All of them
+are already adapted to the requirements of their generation, including any
+versions of dependencies and build dependencies for instance.
+
+Templates can use Python *f-strings* for formatting (*i.e.*
+``f"Text and {some_var}"``) and also the string templates provided by EasyBuild
+itself (*i.e.* ``Text and %(some_var)s``). These are **not placeholders** and
+can be left in place. Keep in mind that *f-strings* are resolved before the
+string templates from EB.
+
+See https://docs.easybuild.io/writing-easyconfig-files/ for
+documentation on writing easyconfig files for EasyBuild.
diff --git a/easybuild/easyconfigs/0/3d-dna/3d-dna-180922-GCCcore-8.2.0-Python-2.7.15.eb b/easybuild/easyconfigs/0/3d-dna/3d-dna-180922-GCCcore-8.2.0-Python-2.7.15.eb
deleted file mode 100644
index 5dec8adc921..00000000000
--- a/easybuild/easyconfigs/0/3d-dna/3d-dna-180922-GCCcore-8.2.0-Python-2.7.15.eb
+++ /dev/null
@@ -1,35 +0,0 @@
-easyblock = 'Tarball'
-
-name = '3d-dna'
-version = '180922'
-versionsuffix = '-Python-%(pyver)s'
-local_githash = '529ccf46599825b3047e58a69091d599e9858a19'
-
-homepage = 'https://github.com/theaidenlab/3d-dna'
-description = """3D de novo assembly (3D DNA) pipeline"""
-
-toolchain = {'name': 'GCCcore', 'version': '8.2.0'}
-
-source_urls = ['https://github.com/theaidenlab/%(name)s/archive']
-sources = [{'download_filename': '%s.zip' % local_githash, 'filename': SOURCE_ZIP}]
-checksums = ['348c3e019ea29e47382eb2d85228a56bc11b316c130afabae016ad8e7d7640ca']
-
-dependencies = [
- ('Python', '2.7.15'),
- ('LASTZ', '1.02.00'),
- ('Java', '1.8', '', SYSTEM),
- ('parallel', '20190622'),
-]
-
-postinstallcmds = ['chmod 755 %(installdir)s/*.sh']
-
-sanity_check_paths = {
- 'files': ['run-asm-pipeline.sh', 'run-asm-pipeline-post-review.sh'],
- 'dirs': [],
-}
-
-sanity_check_commands = ["run-asm-pipeline.sh --help"]
-
-modextrapaths = {'PATH': ''}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/0/3to2/3to2-1.1.1-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/0/3to2/3to2-1.1.1-foss-2016b-Python-2.7.12.eb
deleted file mode 100644
index b6b0a50377f..00000000000
--- a/easybuild/easyconfigs/0/3to2/3to2-1.1.1-foss-2016b-Python-2.7.12.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-easyblock = 'PythonPackage'
-
-name = '3to2'
-version = '1.1.1'
-versionsuffix = '-Python-%(pyver)s'
-
-homepage = 'https://pypi.python.org/pypi/3to2'
-description = """lib3to2 is a set of fixers that are intended to backport code written for Python version 3.x
- into Python version 2.x."""
-
-toolchain = {'name': 'foss', 'version': '2016b'}
-
-sources = [SOURCE_ZIP]
-
-dependencies = [('Python', '2.7.12')]
-
-options = {'modulename': 'lib3to2'}
-
-sanity_check_paths = {
- 'files': ['bin/3to2'],
- 'dirs': ['lib/python%(pyshortver)s/site-packages'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/0/3to2/3to2-1.1.1-intel-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/0/3to2/3to2-1.1.1-intel-2016b-Python-2.7.12.eb
deleted file mode 100644
index 8011ee907e8..00000000000
--- a/easybuild/easyconfigs/0/3to2/3to2-1.1.1-intel-2016b-Python-2.7.12.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-easyblock = 'PythonPackage'
-
-name = '3to2'
-version = '1.1.1'
-versionsuffix = '-Python-%(pyver)s'
-
-homepage = 'https://pypi.python.org/pypi/3to2'
-description = """lib3to2 is a set of fixers that are intended to backport code written for Python version 3.x
- into Python version 2.x."""
-
-toolchain = {'name': 'intel', 'version': '2016b'}
-
-sources = [SOURCE_ZIP]
-
-dependencies = [('Python', '2.7.12')]
-
-options = {'modulename': 'lib3to2'}
-
-sanity_check_paths = {
- 'files': ['bin/3to2'],
- 'dirs': ['lib/python%(pyshortver)s/site-packages'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/0/3to2/3to2-1.1.1-intel-2017a-Python-2.7.13.eb b/easybuild/easyconfigs/0/3to2/3to2-1.1.1-intel-2017a-Python-2.7.13.eb
deleted file mode 100644
index 8f1f43dc116..00000000000
--- a/easybuild/easyconfigs/0/3to2/3to2-1.1.1-intel-2017a-Python-2.7.13.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'PythonPackage'
-
-name = '3to2'
-version = '1.1.1'
-versionsuffix = '-Python-%(pyver)s'
-
-homepage = 'https://pypi.python.org/pypi/3to2'
-description = """lib3to2 is a set of fixers that are intended to backport code written for Python version 3.x
- into Python version 2.x."""
-
-toolchain = {'name': 'intel', 'version': '2017a'}
-
-sources = [SOURCE_ZIP]
-checksums = ['fef50b2b881ef743f269946e1090b77567b71bb9a9ce64b7f8e699b562ff685c']
-
-dependencies = [('Python', '2.7.13')]
-
-options = {'modulename': 'lib3to2'}
-
-sanity_check_paths = {
- 'files': ['bin/3to2'],
- 'dirs': ['lib/python%(pyshortver)s/site-packages'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/0/4ti2/4ti2-1.6.9-GCC-8.2.0-2.31.1.eb b/easybuild/easyconfigs/0/4ti2/4ti2-1.6.9-GCC-8.2.0-2.31.1.eb
deleted file mode 100644
index c7cd680d060..00000000000
--- a/easybuild/easyconfigs/0/4ti2/4ti2-1.6.9-GCC-8.2.0-2.31.1.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = '4ti2'
-version = '1.6.9'
-
-homepage = 'https://4ti2.github.io/'
-description = """A software package for algebraic, geometric and combinatorial problems on linear spaces"""
-
-toolchain = {'name': 'GCC', 'version': '8.2.0-2.31.1'}
-
-github_account = '4ti2'
-source_urls = [GITHUB_SOURCE]
-sources = ['Release_%s.tar.gz' % '_'.join(version.split('.'))]
-checksums = ['7b1015718102d8cd4dc2de64f69094fdba0bc69a1878ada5960979b171ff89e4']
-
-dependencies = [
- ('GMP', '6.1.2'),
- ('GLPK', '4.65'),
-]
-
-builddependencies = [('Autotools', '20180311')]
-
-preconfigopts = './autogen.sh && '
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['4ti2gmp', '4ti2int32', '4ti2int64']],
- 'dirs': ['include/4ti2', 'lib', 'share/4ti2']
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/0/4ti2/4ti2-1.6.9-intel-2018b.eb b/easybuild/easyconfigs/0/4ti2/4ti2-1.6.9-intel-2018b.eb
deleted file mode 100644
index a8ef17361f8..00000000000
--- a/easybuild/easyconfigs/0/4ti2/4ti2-1.6.9-intel-2018b.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = '4ti2'
-version = '1.6.9'
-
-homepage = 'https://4ti2.github.io/'
-description = """A software package for algebraic, geometric and combinatorial problems on linear spaces"""
-
-toolchain = {'name': 'intel', 'version': '2018b'}
-
-source_urls = ['https://github.com/4ti2/4ti2/archive/']
-sources = ['Release_%s.tar.gz' % '_'.join(version.split('.'))]
-checksums = ['7b1015718102d8cd4dc2de64f69094fdba0bc69a1878ada5960979b171ff89e4']
-
-dependencies = [
- ('GMP', '6.1.2'),
- ('GLPK', '4.65'),
-]
-
-builddependencies = [('Autotools', '20180311')]
-
-preconfigopts = './autogen.sh && '
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['4ti2gmp', '4ti2int32', '4ti2int64']],
- 'dirs': ['include/4ti2', 'lib', 'share/4ti2']
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/TEMPLATE.eb b/easybuild/easyconfigs/TEMPLATE.eb
deleted file mode 100644
index ba733e5091d..00000000000
--- a/easybuild/easyconfigs/TEMPLATE.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-# Note:
-# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild
-# It was auto-generated based on a template easyconfig, so it should be used with care.
-easyblock = 'ConfigureMake'
-
-name = 'NAME'
-version = 'VERSION'
-
-homepage = 'http://www.example.com'
-description = """TEMPLATE DESCRIPTION"""
-
-# toolchain name should be 'TEMPLATE' if this is a template, so EasyBuild knows and is willing to use it as a template
-toolchain = {'name': 'TEMPLATE', 'version': 'TK_VERSION'}
-toolchainopts = {} # toolchain options, e.g. opt, pic, usempi, optarch, ...
-
-# For sources line to work correctly with --try-software-version, you MUST employ %s OR use a construct like SOURCE_TAR_GZ
-sources = ['%(name)s-%(version)s.tar.gz']
-source_urls = ['http://www.example.com']
-
-patches = []
-
-dependencies = []
-
-# The sanity test MUST be tuned before going production and submitting your contribution to upstream git repositories
-sanity_check_paths = {
- 'files': [],
- 'dirs': [],
-}
-
-# You SHOULD change the following line; Kindly consult other easyconfigs for possible options
-moduleclass = 'base'
diff --git a/easybuild/easyconfigs/__archive__/README b/easybuild/easyconfigs/__archive__/README
deleted file mode 100644
index 37371576b7f..00000000000
--- a/easybuild/easyconfigs/__archive__/README
+++ /dev/null
@@ -1,10 +0,0 @@
-This directory contains archived easyconfig files.
-
-Reasons for archiving easyconfigs include:
-* old/obsolete software versions
-* use of deprecated toolchains
-
-These easyconfig may or may not work with current version of EasyBuild. They are no longer actively maintained,
-and they are no longer included in the regression testing that is done for every new EasyBuild release.
-
-Use them with care, and consider to use more recent easyconfigs for the respective software packages instead.
diff --git a/easybuild/easyconfigs/__archive__/a/ABINIT/ABINIT-7.10.4-intel-2015a-incl-deps.eb b/easybuild/easyconfigs/__archive__/a/ABINIT/ABINIT-7.10.4-intel-2015a-incl-deps.eb
deleted file mode 100644
index 201187ddf59..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ABINIT/ABINIT-7.10.4-intel-2015a-incl-deps.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'ABINIT'
-version = '7.10.4'
-versionsuffix = '-incl-deps'
-
-homepage = 'http://www.abinit.org/'
-description = """ABINIT is a package whose main program allows one to find the total energy, charge density and
- electronic structure of systems made of electrons and nuclei (molecules and periodic solids) within Density Functional
- Theory (DFT), using pseudopotentials and a planewave or wavelet basis."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://ftp.abinit.org/']
-sources = [SOURCELOWER_TAR_GZ]
-checksums = ['bfc76a5f93c3f148c049f57541864e76']
-
-configopts = "--with-mpi-prefix=$EBROOTIMPI/intel64 --with-trio-flavor='etsf_io+netcdf' "
-configopts += "--with-dft-flavor='atompaw+bigdft+libxc+wannier90' "
-configopts += '--with-linalg-flavor=mkl --with-linalg-libs="-L$LAPACK_LIB_DIR $LIBLAPACK" '
-configopts += '--enable-mpi=yes --with-mpi-level=2 --enable-mpi-io=yes '
-configopts += '--with-fft-flavor=fftw3-mkl --with-fft-libs="-L$FFT_LIB_DIR $LIBFFT" '
-configopts += '--enable-gw-dpc="yes" --enable-64bit-flags="yes" '
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['abinit', 'aim', 'cut3d', 'conducti', 'mrgddb', 'mrgscr', 'optic']],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/a/ABINIT/ABINIT-7.10.4-intel-2015a.eb b/easybuild/easyconfigs/__archive__/a/ABINIT/ABINIT-7.10.4-intel-2015a.eb
deleted file mode 100644
index 7561f6f45cc..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ABINIT/ABINIT-7.10.4-intel-2015a.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'ABINIT'
-version = '7.10.4'
-
-homepage = 'http://www.abinit.org/'
-description = """ABINIT is a package whose main program allows one to find the total energy, charge density and
- electronic structure of systems made of electrons and nuclei (molecules and periodic solids) within Density Functional
- Theory (DFT), using pseudopotentials and a planewave or wavelet basis."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://ftp.abinit.org/']
-sources = [SOURCELOWER_TAR_GZ]
-checksums = ['bfc76a5f93c3f148c049f57541864e76']
-
-configopts = "--with-mpi-prefix=$EBROOTIMPI/intel64 --with-trio-flavor='etsf_io+netcdf' --with-dft=flavor='libxc' "
-configopts += '--with-netcdf-incs="-I$EBROOTNETCDF/include -I$EBROOTNETCDFMINFORTRAN/include" '
-configopts += '--with-netcdf-libs="-L$EBROOTNETCDF/lib -lnetcdf -L$EBROOTNETCDFMINFORTRAN/lib -lnetcdff" '
-configopts += '--with-libxc-incs="-I$EBROOTLIBXC/include" --with-libxc-libs="-L$EBROOTLIBXC/lib -lxc" '
-
-dependencies = [
- ('libxc', '2.2.2'),
- ('netCDF', '4.3.2'),
- ('netCDF-Fortran', '4.4.0'),
-]
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['abinit', 'aim', 'cut3d', 'conducti', 'mrgddb', 'mrgscr', 'optic']],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/a/ABINIT/ABINIT-7.11.6-intel-2015a.eb b/easybuild/easyconfigs/__archive__/a/ABINIT/ABINIT-7.11.6-intel-2015a.eb
deleted file mode 100644
index 97bc886c26c..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ABINIT/ABINIT-7.11.6-intel-2015a.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'ABINIT'
-version = '7.11.6'
-
-homepage = 'http://www.abinit.org/'
-description = """ABINIT is a package whose main program allows one to find the total energy, charge density and
- electronic structure of systems made of electrons and nuclei (molecules and periodic solids) within Density Functional
- Theory (DFT), using pseudopotentials and a planewave or wavelet basis."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://ftp.abinit.org/']
-sources = [SOURCELOWER_TAR_GZ]
-checksums = ['c8b166ec8e65ad1d795d42b889fd772b']
-
-configopts = "--with-mpi-prefix=$EBROOTIMPI/intel64 --with-trio-flavor='etsf_io+netcdf' --with-dft=flavor='libxc' "
-configopts += '--with-netcdf-incs="-I$EBROOTNETCDF/include -I$EBROOTNETCDFMINFORTRAN/include" '
-configopts += '--with-netcdf-libs="-L$EBROOTNETCDF/lib -lnetcdf -L$EBROOTNETCDFMINFORTRAN/lib -lnetcdff" '
-configopts += '--with-libxc-incs="-I$EBROOTLIBXC/include" --with-libxc-libs="-L$EBROOTLIBXC/lib -lxc" '
-
-dependencies = [
- ('libxc', '2.2.2'),
- ('netCDF', '4.3.2'),
- ('netCDF-Fortran', '4.4.0'),
-]
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['abinit', 'aim', 'cut3d', 'conducti', 'mrgddb', 'mrgscr', 'optic']],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/a/ABINIT/ABINIT-7.4.3-goolf-1.4.10-ETSF_IO-1.0.4.eb b/easybuild/easyconfigs/__archive__/a/ABINIT/ABINIT-7.4.3-goolf-1.4.10-ETSF_IO-1.0.4.eb
deleted file mode 100644
index 30945704b7a..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ABINIT/ABINIT-7.4.3-goolf-1.4.10-ETSF_IO-1.0.4.eb
+++ /dev/null
@@ -1,40 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2013-2014 The Cyprus Institute
-# Authors:: Thekla Loizou
-# License:: MIT/GPL
-#
-##
-easyblock = "ConfigureMake"
-
-name = 'ABINIT'
-version = '7.4.3'
-versionsuffix = '-ETSF_IO-1.0.4'
-
-homepage = 'http://www.abinit.org/'
-description = """Abinit is a plane wave pseudopotential code for doing
- condensed phase electronic structure calculations using DFT."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://ftp.abinit.org/']
-sources = [SOURCELOWER_TAR_GZ]
-
-configopts = '--enable-mpi --enable-mpi-io --with-mpi-prefix=$EBROOTOPENMPI --enable-fallbacks '
-configopts += '--with-netcdf-incs="-I$EBROOTNETCDF/include" '
-configopts += '--with-netcdf-libs="-L$EBROOTNETCDF/lib -lnetcdf -lnetcdff" '
-configopts += '--with-fft-libs="-L$EBROOTFFTW/lib -lfftw3 -lfftw3f" --with-fft-flavor=fftw3 '
-configopts += '--with-trio-flavor="netcdf+etsf_io" --enable-gw-dpc'
-
-dependencies = [
- ('netCDF', '4.1.3'),
- ('ETSF_IO', '1.0.4'),
-]
-
-sanity_check_paths = {
- 'files': ["bin/abinit"],
- 'dirs': []
-}
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/a/ABINIT/ABINIT-7.6.2-foss-2015a.eb b/easybuild/easyconfigs/__archive__/a/ABINIT/ABINIT-7.6.2-foss-2015a.eb
deleted file mode 100644
index bfa5f0befa0..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ABINIT/ABINIT-7.6.2-foss-2015a.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-easyblock = "ConfigureMake"
-
-name = 'ABINIT'
-version = '7.6.2'
-
-homepage = 'http://www.abinit.org/'
-description = """Abinit is a plane wave pseudopotential code for doing condensed phase electronic
- structure calculations using DFT."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = ['http://ftp.abinit.org/']
-sources = [SOURCELOWER_TAR_GZ]
-
-patches = [
- 'ABINIT-%(version)s_named-constant.patch',
- 'ABINIT-%(version)s_odamix.patch',
-]
-
-dependencies = [
- ('netCDF', '4.3.2'),
- ('netCDF-Fortran', '4.4.0'),
-]
-
-configopts = '--enable-mpi --with-mpi-prefix="$EBROOTOPENMPI" --enable-fallbacks '
-configopts += '--with-netcdf-incs="-I$EBROOTNETCDF/include -I$EBROOTNETCDFMINFORTRAN/include" '
-configopts += '--with-netcdf-libs="-L$EBROOTNETCDF/lib64 -lnetcdf -L$EBROOTNETCDFMINFORTRAN/lib -lnetcdff" '
-configopts += '--with-fft-libs="-L$EBROOTFFTW/lib -lfftw3 -lfftw3f" --with-fft-flavor=fftw3 '
-configopts += '--with-trio-flavor=netcdf+etsf_io --with-dft-flavor=libxc --enable-gw-dpc'
-
-sanity_check_paths = {
- 'files': ["bin/abinit"],
- 'dirs': [],
-}
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.3.4-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.3.4-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index e205e2d8ac2..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.3.4-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'ABySS'
-version = '1.3.4'
-versionsuffix = '-Python-2.7.3'
-
-homepage = 'http://www.bcgsc.ca/platform/bioinfo/software/abyss'
-description = """Assembly By Short Sequences - a de novo, parallel, paired-end sequence assembler"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'usempi': True}
-
-# eg. http://www.bcgsc.ca/downloads/abyss/abyss-1.3.4.tar.gz
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://www.bcgsc.ca/downloads/abyss/']
-
-dependencies = [('Boost', '1.49.0', versionsuffix)]
-
-sanity_check_paths = {
- 'files': ["bin/ABYSS", "bin/ABYSS-P"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.3.4-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.3.4-ictce-5.3.0-Python-2.7.3.eb
deleted file mode 100644
index 5a1d132b7c4..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.3.4-ictce-5.3.0-Python-2.7.3.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'ABySS'
-version = '1.3.4'
-versionsuffix = '-Python-2.7.3'
-
-homepage = 'http://www.bcgsc.ca/platform/bioinfo/software/abyss'
-description = """Assembly By Short Sequences - a de novo, parallel, paired-end sequence assembler"""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'usempi': True}
-
-# eg. http://www.bcgsc.ca/downloads/abyss/abyss-1.3.4.tar.gz
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://www.bcgsc.ca/downloads/abyss/']
-
-dependencies = [('Boost', '1.49.0', versionsuffix)]
-
-sanity_check_paths = {
- 'files': ["bin/ABYSS", "bin/ABYSS-P"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.3.6-goolf-1.4.10-Python-2.7.5.eb b/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.3.6-goolf-1.4.10-Python-2.7.5.eb
deleted file mode 100644
index 4ebae49b2a9..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.3.6-goolf-1.4.10-Python-2.7.5.eb
+++ /dev/null
@@ -1,39 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'ABySS'
-version = '1.3.6'
-versionsuffix = '-Python-2.7.5'
-
-homepage = 'http://www.bcgsc.ca/platform/bioinfo/software/abyss'
-description = """Assembly By Short Sequences - a de novo, parallel, paired-end sequence assembler"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'usempi': True}
-
-# eg. http://www.bcgsc.ca/downloads/abyss/abyss-1.3.4.tar.gz
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://www.bcgsc.ca/downloads/abyss/']
-
-dependencies = [
- ('sparsehash', '2.0.2'),
- ('Boost', '1.49.0', versionsuffix),
-]
-
-sanity_check_paths = {
- 'files': ["bin/ABYSS", "bin/ABYSS-P"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.3.7-intel-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.3.7-intel-2015a-Python-2.7.9.eb
deleted file mode 100644
index a55aa9d2cf6..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.3.7-intel-2015a-Python-2.7.9.eb
+++ /dev/null
@@ -1,41 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'ABySS'
-version = '1.3.7'
-versionsuffix = '-Python-2.7.9'
-
-homepage = 'http://www.bcgsc.ca/platform/bioinfo/software/abyss'
-description = """Assembly By Short Sequences - a de novo, parallel, paired-end sequence assembler"""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'usempi': True}
-
-# eg. http://www.bcgsc.ca/downloads/abyss/abyss-1.3.4.tar.gz
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://www.bcgsc.ca/downloads/abyss/']
-
-dependencies = [
- ('sparsehash', '2.0.2'),
- ('Boost', '1.58.0', versionsuffix),
-]
-
-preconfigopts = 'env CPPFLAGS=-I$EBROOTSPARSEHASH/include'
-
-sanity_check_paths = {
- 'files': ["bin/ABYSS", "bin/ABYSS-P"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.5.2-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.5.2-goolf-1.4.10.eb
deleted file mode 100644
index 5995eab5272..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ABySS/ABySS-1.5.2-goolf-1.4.10.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Maxime Schmitt , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'ABySS'
-version = '1.5.2'
-
-homepage = 'http://www.bcgsc.ca/platform/bioinfo/software/abyss'
-description = """Assembly By Short Sequences - a de novo, parallel, paired-end sequence assembler"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'usempi': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['https://github.com/bcgsc/abyss/releases/download/%(version)s/']
-
-dependencies = [('Boost', '1.53.0')]
-
-sanity_check_paths = {
- 'files': ["bin/ABYSS", "bin/ABYSS-P"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/a/ACML/ACML-4.4.0-gfortran-64bit-int64.eb b/easybuild/easyconfigs/__archive__/a/ACML/ACML-4.4.0-gfortran-64bit-int64.eb
deleted file mode 100644
index 3b8eb6b7842..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ACML/ACML-4.4.0-gfortran-64bit-int64.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'ACML'
-version = '4.4.0'
-versionsuffix = '-gfortran-64bit-int64'
-
-homepage = 'http://developer.amd.com/libraries/acml'
-description = """ACML provides a free set of thoroughly optimized and threaded math routines for HPC,
- scientific, engineering and related compute-intensive applications. ACML is ideal for weather modeling,
- computational fluid dynamics, financial analysis, oil and gas applications and more. """
-
-toolchain = SYSTEM
-
-sources = ['%s-%s%s.tgz' % (name.lower(), '-'.join(version.split('.')), versionsuffix)]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/ACML/ACML-4.4.0-gfortran-64bit.eb b/easybuild/easyconfigs/__archive__/a/ACML/ACML-4.4.0-gfortran-64bit.eb
deleted file mode 100644
index 5b98ee4ae2c..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ACML/ACML-4.4.0-gfortran-64bit.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'ACML'
-version = '4.4.0'
-versionsuffix = '-gfortran-64bit'
-
-homepage = 'http://developer.amd.com/libraries/acml'
-description = """ACML provides a free set of thoroughly optimized and threaded math routines for HPC,
- scientific, engineering and related compute-intensive applications. ACML is ideal for weather modeling,
- computational fluid dynamics, financial analysis, oil and gas applications and more. """
-
-toolchain = SYSTEM
-
-sources = ['%s-%s%s.tgz' % (name.lower(), '-'.join(version.split('.')), versionsuffix)]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/ACML/ACML-4.4.0-ifort-64bit-int64.eb b/easybuild/easyconfigs/__archive__/a/ACML/ACML-4.4.0-ifort-64bit-int64.eb
deleted file mode 100644
index c1db79e1d6c..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ACML/ACML-4.4.0-ifort-64bit-int64.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'ACML'
-version = '4.4.0'
-versionsuffix = '-ifort-64bit-int64'
-
-homepage = 'http://developer.amd.com/libraries/acml'
-description = """ACML provides a free set of thoroughly optimized and threaded math routines for HPC,
- scientific, engineering and related compute-intensive applications. ACML is ideal for weather modeling,
- computational fluid dynamics, financial analysis, oil and gas applications and more. """
-
-toolchain = SYSTEM
-
-sources = ['%s-%s%s.tgz' % (name.lower(), '-'.join(version.split('.')), versionsuffix)]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/ACML/ACML-4.4.0-ifort-64bit.eb b/easybuild/easyconfigs/__archive__/a/ACML/ACML-4.4.0-ifort-64bit.eb
deleted file mode 100644
index 5aa6a61a9ed..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ACML/ACML-4.4.0-ifort-64bit.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'ACML'
-version = '4.4.0'
-versionsuffix = '-ifort-64bit'
-
-homepage = 'http://developer.amd.com/libraries/acml'
-description = """ACML provides a free set of thoroughly optimized and threaded math routines for HPC,
- scientific, engineering and related compute-intensive applications. ACML is ideal for weather modeling,
- computational fluid dynamics, financial analysis, oil and gas applications and more. """
-
-toolchain = SYSTEM
-
-sources = ['%s-%s%s.tgz' % (name.lower(), '-'.join(version.split('.')), versionsuffix)]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/ACML/ACML-5.2.0-gfortran-64bit-int64.eb b/easybuild/easyconfigs/__archive__/a/ACML/ACML-5.2.0-gfortran-64bit-int64.eb
deleted file mode 100644
index 04820d26355..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ACML/ACML-5.2.0-gfortran-64bit-int64.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'ACML'
-version = '5.2.0'
-versionsuffix = '-gfortran-64bit-int64'
-
-homepage = 'http://developer.amd.com/libraries/acml'
-description = """ACML provides a free set of thoroughly optimized and threaded math routines for HPC,
- scientific, engineering and related compute-intensive applications. ACML is ideal for weather modeling,
- computational fluid dynamics, financial analysis, oil and gas applications and more. """
-
-toolchain = SYSTEM
-
-sources = ['%s-%s%s.tgz' % (name.lower(), '-'.join(version.split('.')), versionsuffix)]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/ACML/ACML-5.2.0-gfortran-64bit.eb b/easybuild/easyconfigs/__archive__/a/ACML/ACML-5.2.0-gfortran-64bit.eb
deleted file mode 100644
index 6433b1ccc99..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ACML/ACML-5.2.0-gfortran-64bit.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'ACML'
-version = '5.2.0'
-versionsuffix = '-gfortran-64bit'
-
-homepage = 'http://developer.amd.com/libraries/acml'
-description = """ACML provides a free set of thoroughly optimized and threaded math routines for HPC,
- scientific, engineering and related compute-intensive applications. ACML is ideal for weather modeling,
- computational fluid dynamics, financial analysis, oil and gas applications and more. """
-
-toolchain = SYSTEM
-
-sources = ['%s-%s%s.tgz' % (name.lower(), '-'.join(version.split('.')), versionsuffix)]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/ACML/ACML-5.2.0-ifort-64bit-int64.eb b/easybuild/easyconfigs/__archive__/a/ACML/ACML-5.2.0-ifort-64bit-int64.eb
deleted file mode 100644
index 447c9c6816b..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ACML/ACML-5.2.0-ifort-64bit-int64.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'ACML'
-version = '5.2.0'
-versionsuffix = '-ifort-64bit-int64'
-
-homepage = 'http://developer.amd.com/libraries/acml'
-description = """ACML provides a free set of thoroughly optimized and threaded math routines for HPC,
- scientific, engineering and related compute-intensive applications. ACML is ideal for weather modeling,
- computational fluid dynamics, financial analysis, oil and gas applications and more. """
-
-toolchain = SYSTEM
-
-sources = ['%s-%s%s.tgz' % (name.lower(), '-'.join(version.split('.')), versionsuffix)]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/ACML/ACML-5.2.0-ifort-64bit.eb b/easybuild/easyconfigs/__archive__/a/ACML/ACML-5.2.0-ifort-64bit.eb
deleted file mode 100644
index 81dfe7b71c0..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ACML/ACML-5.2.0-ifort-64bit.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'ACML'
-version = '5.2.0'
-versionsuffix = '-ifort-64bit'
-
-homepage = 'http://developer.amd.com/libraries/acml'
-description = """ACML provides a free set of thoroughly optimized and threaded math routines for HPC,
- scientific, engineering and related compute-intensive applications. ACML is ideal for weather modeling,
- computational fluid dynamics, financial analysis, oil and gas applications and more. """
-
-toolchain = SYSTEM
-
-sources = ['%s-%s%s.tgz' % (name.lower(), '-'.join(version.split('.')), versionsuffix)]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/ACML/ACML-5.3.0-ifort-64bit.eb b/easybuild/easyconfigs/__archive__/a/ACML/ACML-5.3.0-ifort-64bit.eb
deleted file mode 100644
index cb1717345db..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ACML/ACML-5.3.0-ifort-64bit.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'ACML'
-version = '5.3.0'
-versionsuffix = '-ifort-64bit'
-
-homepage = 'http://developer.amd.com/libraries/acml'
-description = """ACML provides a free set of thoroughly optimized and threaded math routines for HPC,
- scientific, engineering and related compute-intensive applications. ACML is ideal for weather modeling,
- computational fluid dynamics, financial analysis, oil and gas applications and more. """
-
-toolchain = SYSTEM
-
-sources = ['%s-%s%s.tgz' % (name.lower(), '-'.join(version.split('.')), versionsuffix)]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/ACML/ACML-5.3.1-ifort-64bit.eb b/easybuild/easyconfigs/__archive__/a/ACML/ACML-5.3.1-ifort-64bit.eb
deleted file mode 100644
index b721be9557e..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ACML/ACML-5.3.1-ifort-64bit.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'ACML'
-version = '5.3.1'
-versionsuffix = '-ifort-64bit'
-
-homepage = 'http://developer.amd.com/libraries/acml'
-description = """ACML provides a free set of thoroughly optimized and threaded math routines for HPC,
-scientific, engineering and related compute-intensive applications. ACML is ideal for weather modeling,
-computational fluid dynamics, financial analysis, oil and gas applications and more. """
-
-toolchain = SYSTEM
-
-sources = ['%s-%s%s.tgz' % (name.lower(), '-'.join(version.split('.')), versionsuffix)]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/AFNI/AFNI-20150717-intel-2015a.eb b/easybuild/easyconfigs/__archive__/a/AFNI/AFNI-20150717-intel-2015a.eb
deleted file mode 100644
index 5f212260dd5..00000000000
--- a/easybuild/easyconfigs/__archive__/a/AFNI/AFNI-20150717-intel-2015a.eb
+++ /dev/null
@@ -1,66 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'AFNI'
-version = '20150717'
-
-homepage = 'http://afni.nimh.nih.gov/'
-description = """AFNI is a set of C programs for processing, analyzing, and displaying functional MRI (FMRI) data -
- a technique for mapping human brain activity."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'openmp': True, 'pic': True}
-
-# download afni_src.tgz manually from http://afni.nimh.nih.gov/pub/dist/tgz/, and rename to include datestamp
-# detailed release notes are available at http://afni.nimh.nih.gov/pub/dist/doc/misc/history/afni_hist_level1_all.html
-# but last update doesn't match datestamp of most recent afni_src.tgz?
-sources = ['afni_src-%(version)s.tgz']
-checksums = ['985ce725a68c7b498e3402fd52b41811']
-
-patches = ['AFNI-%(version)s_omp-pragma-statement-fix.patch']
-
-libx11suff = '-libX11-1.6.3'
-
-pyver = '2.7.9'
-majpyver = '.'.join(pyver.split('.')[:2])
-dependencies = [
- ('tcsh', '6.19.00'),
- ('libXp', '1.0.3'),
- ('libXt', '1.1.4', libx11suff),
- ('libXpm', '3.5.11'),
- ('libXmu', '1.1.2', libx11suff),
- ('motif', '2.3.4', libx11suff),
- ('R', '3.1.2'),
- ('PyQt', '4.11.4', '-Python-%s' % pyver),
- ('expat', '2.1.0'),
- ('libpng', '1.6.16'),
- ('libjpeg-turbo', '1.4.0'),
- ('GSL', '1.16'),
- ('GLib', '2.40.0'), # must match version used in Qt (via PyQt)
- ('zlib', '1.2.8'),
-]
-
-skipsteps = ['configure', 'install']
-
-prebuildopts = "cp Makefile.linux_openmp_64 Makefile && "
-buildopts = 'totality LGIFTI="$EBROOTEXPAT/lib/libexpat.a" LDPYTHON="-lpython%s" ' % majpyver
-buildopts += r'CC="${CC} ${CFLAGS} -fPIC -DREAD_WRITE_64 -DLINUX2 \$(CEXTRA)" '
-buildopts += r'CCVOL="${CC} ${CFLAGS} -fPIC -DREAD_WRITE_64 -DLINUX2 \$(CEXTRA)" '
-buildopts += r'CCFAST="${CC} ${CFLAGS} -fPIC -DREAD_WRITE_64 -DLINUX2 \$(CEXTRA)" '
-buildopts += r'CCOLD="${CC} ${CFLAGS} -fPIC -DREAD_WRITE_64 -DLINUX2 \$(CEXTRA)" '
-buildopts += r'CCMIN="${CC} ${CFLAGS} -fPIC -DREAD_WRITE_64 -DLINUX2 \$(CEXTRA)" '
-buildopts += r'CCSVD="${CC} ${CFLAGS} -fPIC -DREAD_WRITE_64 -DLINUX2 \$(CEXTRA)" '
-buildopts += r'LD="${CC} \$(CPROF)" LZLIB="${EBROOTZLIB}/lib/libz.a" XLIBS="-lXm -lXt" '
-buildopts += 'IFLAGS="-I. -I$EBROOTPYTHON/include/python%s ' % majpyver
-buildopts += '-I$EBROOTGLIB/lib/glib-2.0/include -I$EBROOTGLIB/include/glib-2.0"'
-buildopts += ' INSTALLDIR=%(installdir)s'
-
-parallel = 1
-
-modextrapaths = {'PATH': ['']}
-
-sanity_check_paths = {
- 'files': ['afni'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/a/AFNI/AFNI-linux_openmp_64-goolf-1.5.14-20141023.eb b/easybuild/easyconfigs/__archive__/a/AFNI/AFNI-linux_openmp_64-goolf-1.5.14-20141023.eb
deleted file mode 100644
index d880a919fb5..00000000000
--- a/easybuild/easyconfigs/__archive__/a/AFNI/AFNI-linux_openmp_64-goolf-1.5.14-20141023.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Bart Verleye
-# Center for eResearch, Auckland
-easyblock = 'PackedBinary'
-
-name = 'AFNI'
-version = 'linux_openmp_64'
-versionsuffix = '-20141023'
-
-homepage = 'http://afni.nimh.nih.gov'
-description = """Free software for analysis and display of FMRI data """
-
-toolchain = {'name': 'goolf', 'version': '1.5.14'}
-
-source_urls = ['http://afni.nimh.nih.gov/pub/dist/tgz/']
-sources = ['%(version)s.tgz']
-checksums = ['8800092268d8bfc05611515b0795dae2']
-
-dependencies = [
- ('R', '3.1.2'),
- ('PyQt', '4.11.3', '-Python-2.7.9'),
- ('tcsh', '6.18.01'),
- ('libXp', '1.0.3'),
-]
-
-modextrapaths = {'PATH': ['']}
-
-sanity_check_paths = {
- 'files': ['afni'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/a/AFNI/AFNI-linux_openmp_64-intel-2015a-20141023.eb b/easybuild/easyconfigs/__archive__/a/AFNI/AFNI-linux_openmp_64-intel-2015a-20141023.eb
deleted file mode 100644
index 686bb454342..00000000000
--- a/easybuild/easyconfigs/__archive__/a/AFNI/AFNI-linux_openmp_64-intel-2015a-20141023.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Bart Verleye
-# Center for eResearch, Auckland
-easyblock = 'PackedBinary'
-
-name = 'AFNI'
-version = 'linux_openmp_64'
-versionsuffix = '-20141023'
-
-homepage = 'http://afni.nimh.nih.gov'
-description = """Free software for analysis and display of FMRI data """
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://afni.nimh.nih.gov/pub/dist/tgz/']
-sources = ['%(version)s.tgz']
-checksums = ['8800092268d8bfc05611515b0795dae2']
-
-dependencies = [
- ('R', '3.1.2'),
- ('PyQt', '4.11.3', '-Python-2.7.9'),
- ('tcsh', '6.18.01'),
- ('libXp', '1.0.3'),
-]
-
-modextrapaths = {'PATH': ['']}
-
-sanity_check_paths = {
- 'files': ['afni'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/a/ALADIN/ALADIN-36t1_op2bf1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/a/ALADIN/ALADIN-36t1_op2bf1-goolf-1.4.10.eb
deleted file mode 100644
index 86c1e60c835..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ALADIN/ALADIN-36t1_op2bf1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-name = 'ALADIN'
-version = '36t1_op2bf1'
-
-homepage = 'http://www.cnrm.meteo.fr/aladin/'
-description = """ALADIN was entirely built on the notion of compatibility with its mother system, IFS/ARPEG.
-The latter, a joint development between the European Centre for Medium-Range Weather Forecasts (ECMWF) and
-Meteo-France, was only meant to consider global Numerical Weather Prediction applications; hence the idea,
-for ALADIN, to complement the IFS/ARPEGE project with a limited area model (LAM) version, while keeping the
-differences between the two softwares as small as possible."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'usempi': True}
-
-sources = [
- 'cy%(version)s.tgz',
- 'gmkpack.6.5.0.tgz',
- 'auxlibs_installer.2.0.tgz',
-]
-
-patches = ['gmkpack_multi-lib.patch']
-
-dependencies = [
- ('JasPer', '1.900.1'),
- ('grib_api', '1.9.18'),
- ('netCDF', '4.1.3'), # can't use 4.2, because Fortran stuff is in seperate netCDF-Fortran install
-]
-builddependencies = [('Bison', '2.5')]
-
-moduleclass = 'geo'
diff --git a/easybuild/easyconfigs/__archive__/a/ALADIN/ALADIN-36t1_op2bf1-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/a/ALADIN/ALADIN-36t1_op2bf1-ictce-5.3.0.eb
deleted file mode 100644
index 755287b1806..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ALADIN/ALADIN-36t1_op2bf1-ictce-5.3.0.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-name = 'ALADIN'
-version = '36t1_op2bf1'
-
-homepage = 'http://www.cnrm.meteo.fr/aladin/'
-description = """ALADIN was entirely built on the notion of compatibility with its mother system, IFS/ARPEG.
- The latter, a joint development between the European Centre for Medium-Range Weather Forecasts (ECMWF) and
- Meteo-France, was only meant to consider global Numerical Weather Prediction applications; hence the idea,
- for ALADIN, to complement the IFS/ARPEGE project with a limited area model (LAM) version, while keeping the
- differences between the two softwares as small as possible."""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'usempi': False}
-
-sources = [
- 'cy%(version)s.tgz',
- 'gmkpack.6.5.0.tgz',
- 'auxlibs_installer.2.0.tgz',
-]
-
-patches = [
- 'ALADIN_ictce-clim_import-export.patch',
- 'gmkpack_multi-lib.patch',
-]
-
-dependencies = [
- ('JasPer', '1.900.1'),
- ('grib_api', '1.9.18'),
- ('netCDF', '4.1.3'), # can't use 4.2, because Fortran stuff is in seperate netCDF-Fortran install
-]
-builddependencies = [('Bison', '2.5')]
-
-moduleclass = 'geo'
diff --git a/easybuild/easyconfigs/__archive__/a/ALADIN/ALADIN-36t1_op2bf1-intel-2015b.eb b/easybuild/easyconfigs/__archive__/a/ALADIN/ALADIN-36t1_op2bf1-intel-2015b.eb
deleted file mode 100644
index 6d1840cb35e..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ALADIN/ALADIN-36t1_op2bf1-intel-2015b.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-name = 'ALADIN'
-version = '36t1_op2bf1'
-
-homepage = 'http://www.cnrm.meteo.fr/aladin/'
-description = """ALADIN was entirely built on the notion of compatibility with its mother system, IFS/ARPEG.
- The latter, a joint development between the European Centre for Medium-Range Weather Forecasts (ECMWF) and
- Meteo-France, was only meant to consider global Numerical Weather Prediction applications; hence the idea,
- for ALADIN, to complement the IFS/ARPEGE project with a limited area model (LAM) version, while keeping the
- differences between the two softwares as small as possible."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'usempi': True}
-
-sources = [
- 'cy%(version)s.tgz',
- 'gmkpack.6.5.0.tgz',
- 'auxlibs_installer.2.0.tgz',
-]
-
-patches = [
- 'ALADIN_ictce-clim_import-export.patch',
- 'gmkpack_multi-lib.patch',
-]
-
-dependencies = [
- ('JasPer', '1.900.1'),
- ('grib_api', '1.14.4'),
- ('netCDF', '4.3.3.1'),
- ('netCDF-Fortran', '4.4.2'),
-]
-builddependencies = [('Bison', '3.0.4')]
-
-# too parallel makes the build very slow
-maxparallel = 3
-
-moduleclass = 'geo'
diff --git a/easybuild/easyconfigs/__archive__/a/ALLPATHS-LG/ALLPATHS-LG-46968-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/a/ALLPATHS-LG/ALLPATHS-LG-46968-goolf-1.4.10.eb
deleted file mode 100644
index 33c6b93585a..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ALLPATHS-LG/ALLPATHS-LG-46968-goolf-1.4.10.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2013 The Cyprus Institute
-# Authors:: Andreas Panteli , Thekla Loizou ,
-# George Tsouloupas
-# License:: MIT/GPL
-#
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'ALLPATHS-LG'
-version = '46968'
-
-homepage = 'http://www.broadinstitute.org/software/allpaths-lg/blog/'
-description = """ALLPATHS-LG, the new short read genome assembler."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-# source is moved over time, hence multiple URLs below
-source_urls = [
- 'ftp://ftp.broadinstitute.org/pub/crd/ALLPATHS/Release-LG/latest_source_code',
- 'ftp://ftp.broadinstitute.org/pub/crd/ALLPATHS/Release-LG/latest_source_code/2013-06',
- 'ftp://ftp.broadinstitute.org/pub/crd/ALLPATHS/Release-LG/latest_source_code/2013/2013-06',
-]
-sources = ['allpathslg-%(version)s.tar.gz']
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['bin'],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/a/AMOS/AMOS-3.1.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/a/AMOS/AMOS-3.1.0-goolf-1.4.10.eb
deleted file mode 100644
index 440bc7a909e..00000000000
--- a/easybuild/easyconfigs/__archive__/a/AMOS/AMOS-3.1.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,41 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'AMOS'
-version = '3.1.0'
-
-homepage = 'http://sourceforge.net/apps/mediawiki/amos/index.php?title=AMOS'
-description = """The AMOS consortium is committed to the development of open-source whole genome assembly software"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [('http://sourceforge.net/projects/amos/files/%s/%s' % (name.lower(), version), 'download')]
-
-patches = ['AMOS-3.1.0_GCC-4.7.patch']
-
-dependencies = [
- ('expat', '2.1.0'),
- ('MUMmer', '3.23'),
-]
-
-sanity_check_paths = {
- 'files': ['bin/AMOScmp', 'bin/AMOScmp-shortReads', 'bin/AMOScmp-shortReads-alignmentTrimmed'],
- 'dirs': []
-}
-
-parallel = 1 # make crashes otherwise
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/a/AMOS/AMOS-3.1.0-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/a/AMOS/AMOS-3.1.0-ictce-5.3.0.eb
deleted file mode 100644
index d767191d1be..00000000000
--- a/easybuild/easyconfigs/__archive__/a/AMOS/AMOS-3.1.0-ictce-5.3.0.eb
+++ /dev/null
@@ -1,40 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'AMOS'
-version = '3.1.0'
-
-homepage = 'http://sourceforge.net/apps/mediawiki/amos/index.php?title=AMOS'
-description = """The AMOS consortium is committed to the development of open-source whole genome assembly software"""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [('http://sourceforge.net/projects/amos/files/%s/%s' % (name.lower(), version), 'download')]
-
-dependencies = [
- ('expat', '2.1.0'),
- ('MUMmer', '3.23'),
-]
-
-sanity_check_paths = {
- 'files': ['bin/AMOScmp', 'bin/AMOScmp-shortReads', 'bin/AMOScmp-shortReads-alignmentTrimmed'],
- 'dirs': []
-}
-
-parallel = 1 # make crashes otherwise
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/a/ANTLR/ANTLR-2.7.7-ictce-5.4.0.eb b/easybuild/easyconfigs/__archive__/a/ANTLR/ANTLR-2.7.7-ictce-5.4.0.eb
deleted file mode 100644
index f40658d1411..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ANTLR/ANTLR-2.7.7-ictce-5.4.0.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'ANTLR'
-version = '2.7.7'
-
-homepage = "http://www.antlr2.org"
-description = """ANother Tool for Language Recognition"""
-
-toolchain = {'name': 'ictce', 'version': '5.4.0'}
-
-source_urls = ['http://www.antlr2.org/download']
-sources = [SOURCELOWER_TAR_GZ]
-
-patches = ['ANTLR-%(version)s_cpp-headers.patch']
-
-dependencies = [('Java', '1.7.0_60', '', True)]
-
-configopts = "--disable-examples --disable-csharp"
-
-sanity_check_paths = {
- 'files': ['bin/antlr'],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/a/ANTLR/ANTLR-2.7.7-intel-2014b.eb b/easybuild/easyconfigs/__archive__/a/ANTLR/ANTLR-2.7.7-intel-2014b.eb
deleted file mode 100644
index 8ba4070760d..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ANTLR/ANTLR-2.7.7-intel-2014b.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'ANTLR'
-version = '2.7.7'
-
-homepage = "http://www.antlr2.org"
-description = """ANother Tool for Language Recognition"""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = ['http://www.antlr2.org/download']
-sources = [SOURCELOWER_TAR_GZ]
-
-patches = ['ANTLR-%(version)s_cpp-headers.patch']
-
-dependencies = [('Java', '1.7.0_60', '', True)]
-
-configopts = "--disable-examples --disable-csharp"
-
-sanity_check_paths = {
- 'files': ['bin/antlr'],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/a/ANTLR/ANTLR-2.7.7-intel-2015a-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/a/ANTLR/ANTLR-2.7.7-intel-2015a-Python-2.7.10.eb
deleted file mode 100644
index 31ae0ccb152..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ANTLR/ANTLR-2.7.7-intel-2015a-Python-2.7.10.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'ANTLR'
-version = "2.7.7"
-
-homepage = 'http://www.antlr2.org/'
-description = """ANTLR, ANother Tool for Language Recognition, (formerly PCCTS)
- is a language tool that provides a framework for constructing recognizers,
- compilers, and translators from grammatical descriptions containing
- Java, C#, C++, or Python actions."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://www.antlr2.org/download/']
-sources = [SOURCELOWER_TAR_GZ]
-
-patches = ['%(name)s-%(version)s_includes.patch']
-
-pythonversion = '2.7.10'
-versionsuffix = "-Python-%s" % pythonversion
-
-dependencies = [
- ('Java', '1.8.0_60', '', True),
- ('Python', pythonversion),
-]
-
-configopts = '--disable-examples --disable-csharp '
-
-sanity_check_paths = {
- 'files': ['bin/antlr', 'bin/antlr-config'],
- 'dirs': ['include'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/a/ANTLR/ANTLR-2.7.7-intel-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/a/ANTLR/ANTLR-2.7.7-intel-2015b-Python-2.7.10.eb
deleted file mode 100644
index 00631356607..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ANTLR/ANTLR-2.7.7-intel-2015b-Python-2.7.10.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'ANTLR'
-version = "2.7.7"
-
-homepage = 'http://www.antlr2.org/'
-description = """ANTLR, ANother Tool for Language Recognition, (formerly PCCTS)
- is a language tool that provides a framework for constructing recognizers,
- compilers, and translators from grammatical descriptions containing
- Java, C#, C++, or Python actions."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['http://www.antlr2.org/download/']
-sources = [SOURCELOWER_TAR_GZ]
-
-patches = ['%(name)s-%(version)s_includes.patch']
-
-pythonversion = '2.7.10'
-versionsuffix = "-Python-%s" % pythonversion
-
-dependencies = [
- ('Java', '1.8.0_66', '', True),
- ('Python', pythonversion),
-]
-
-configopts = '--disable-examples --disable-csharp '
-
-sanity_check_paths = {
- 'files': ['bin/antlr', 'bin/antlr-config'],
- 'dirs': ['include'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/a/ANTs/ANTs-2.1.0rc3-goolf-1.5.14.eb b/easybuild/easyconfigs/__archive__/a/ANTs/ANTs-2.1.0rc3-goolf-1.5.14.eb
deleted file mode 100644
index 1e8a2bf6f60..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ANTs/ANTs-2.1.0rc3-goolf-1.5.14.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-easyblock = 'CMakeMake'
-
-name = 'ANTs'
-version = '2.1.0rc3'
-
-homepage = 'http://stnava.github.io/ANTs/'
-description = """ANTs extracts information from complex datasets that include imaging. ANTs is useful for managing,
- interpreting and visualizing multidimensional data."""
-
-toolchain = {'name': 'goolf', 'version': '1.5.14'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://github.com/stnava/ANTs/archive/']
-sources = ['v%(version)s.tar.gz']
-
-builddependencies = [('CMake', '3.0.2')]
-
-skipsteps = ['install']
-buildopts = ' && mkdir -p %(installdir)s && cp -r * %(installdir)s/'
-
-parallel = 1
-
-separate_build_dir = True
-
-sanity_check_paths = {
- 'files': ['bin/ANTS'],
- 'dirs': ['lib'],
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/a/APR-util/APR-util-1.5.3-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/a/APR-util/APR-util-1.5.3-goolf-1.4.10.eb
deleted file mode 100644
index 1a3a23018b8..00000000000
--- a/easybuild/easyconfigs/__archive__/a/APR-util/APR-util-1.5.3-goolf-1.4.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'APR-util'
-version = '1.5.3'
-
-homepage = 'http://apr.apache.org/'
-description = "Apache Portable Runtime (APR) util libraries."
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://archive.apache.org/dist/apr/']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('APR', '1.5.0')]
-
-configopts = "--with-apr=$EBROOTAPR/bin/apr-1-config"
-
-sanity_check_paths = {
- 'files': ["bin/apu-1-config", "lib/libaprutil-1.so", "lib/libaprutil-1.a"],
- 'dirs': ["include/apr-1"],
-}
-
-parallel = 1
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/a/APR-util/APR-util-1.5.4-foss-2015a.eb b/easybuild/easyconfigs/__archive__/a/APR-util/APR-util-1.5.4-foss-2015a.eb
deleted file mode 100644
index 299a987b846..00000000000
--- a/easybuild/easyconfigs/__archive__/a/APR-util/APR-util-1.5.4-foss-2015a.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'APR-util'
-version = '1.5.4'
-
-homepage = 'http://apr.apache.org/'
-description = "Apache Portable Runtime (APR) util libraries."
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = ['http://archive.apache.org/dist/apr/']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [
- ('APR', '1.5.2'),
- ('SQLite', '3.8.8.1'),
- ('expat', '2.1.0'),
-]
-
-configopts = "--with-apr=$EBROOTAPR/bin/apr-1-config --with-sqlite3=$EBROOTSQLITE --with-expat=$EBROOTEXPAT "
-
-sanity_check_paths = {
- 'files': ["bin/apu-1-config", "lib/libaprutil-1.%s" % SHLIB_EXT, "lib/libaprutil-1.a"],
- 'dirs': ["include/apr-1"],
-}
-
-parallel = 1
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/a/APR/APR-1.5.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/a/APR/APR-1.5.0-goolf-1.4.10.eb
deleted file mode 100644
index bbe4a3f6c2e..00000000000
--- a/easybuild/easyconfigs/__archive__/a/APR/APR-1.5.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'APR'
-version = '1.5.0'
-
-homepage = 'http://apr.apache.org/'
-description = "Apache Portable Runtime (APR) libraries."
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://archive.apache.org/dist/apr/']
-sources = [SOURCELOWER_TAR_GZ]
-
-sanity_check_paths = {
- 'files': ["bin/apr-1-config", "lib/libapr-1.so", "lib/libapr-1.a"],
- 'dirs': ["include/apr-1"],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/a/APR/APR-1.5.2-foss-2015a.eb b/easybuild/easyconfigs/__archive__/a/APR/APR-1.5.2-foss-2015a.eb
deleted file mode 100644
index 50c9f617219..00000000000
--- a/easybuild/easyconfigs/__archive__/a/APR/APR-1.5.2-foss-2015a.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'APR'
-version = '1.5.2'
-
-homepage = 'http://apr.apache.org/'
-description = "Apache Portable Runtime (APR) libraries."
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = ['http://archive.apache.org/dist/apr/']
-sources = [SOURCELOWER_TAR_GZ]
-
-sanity_check_paths = {
- 'files': ["bin/apr-1-config", "lib/libapr-1.%s" % SHLIB_EXT, "lib/libapr-1.a"],
- 'dirs': ["include/apr-1"],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/a/ARB/ARB-5.5-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/a/ARB/ARB-5.5-goolf-1.4.10.eb
deleted file mode 100644
index 41b26e296f8..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ARB/ARB-5.5-goolf-1.4.10.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-name = 'ARB'
-version = '5.5'
-
-homepage = 'http://www.arb-home.de/'
-description = """The ARB software is a graphically oriented package comprising various tools for sequence database
-handling and data analysis. A central database of processed (aligned) sequences and any type of additional data linked
-to the respective sequence entries is structured according to phylogeny or other user defined criteria."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-# download from http://download.arb-home.de/release/arb_5.5, and rename to include version
-sources = ['%(namelower)s-%(version)s-src.tgz']
-
-patches = [
- '%(name)s-%(version)s_xmkmf.patch',
- '%(name)s-%(version)s_xflags.patch',
-]
-
-dependencies = [
- ('libpng', '1.6.6'),
- ('LibTIFF', '4.0.3'),
- ('Java', '1.7.0_15', '', True),
- ('lynx', '2.8.7'),
- ('makedepend', '1.0.4'),
- ('imake', '1.0.5'),
- ('libXt', '1.1.4'),
- ('motif', '2.3.4'), # libXm
- ('libXpm', '3.5.11'),
- ('libXaw', '1.0.12'),
- ('Perl', '5.16.3'),
- ('libxslt', '1.1.28'),
- ('freeglut', '2.8.1'),
- ('Sablotron', '1.0.3'),
- ('libxml2', '2.9.1'),
-]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/a/ARB/ARB-5.5_xflags.patch b/easybuild/easyconfigs/__archive__/a/ARB/ARB-5.5_xflags.patch
deleted file mode 100644
index 9217dd68b83..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ARB/ARB-5.5_xflags.patch
+++ /dev/null
@@ -1,221 +0,0 @@
---- Makefile.orig 2013-09-26 16:43:53.016909280 +0200
-+++ Makefile 2013-09-26 16:48:39.953144714 +0200
-@@ -31,7 +31,7 @@
- # configurable in config.makefile
- #
- # -----------------------------------------------------
--# Read configuration
-+# Read configuration
- include config.makefile
-
- ifeq ($(LD_LIBRARY_PATH),'')
-@@ -121,10 +121,10 @@
-
- # Enable several warnings
- extended_warnings := -Wwrite-strings -Wunused -Wno-aggregate-return -Wshadow
-- extended_cpp_warnings := -Wnon-virtual-dtor -Wreorder -Wpointer-arith
-+ extended_cpp_warnings := -Wnon-virtual-dtor -Wreorder -Wpointer-arith
- ifneq ('$(USING_GCC_3XX)','')
- extended_cpp_warnings += -Wdisabled-optimization -Wmissing-format-attribute
-- extended_cpp_warnings += -Wmissing-noreturn # -Wfloat-equal
-+ extended_cpp_warnings += -Wmissing-noreturn # -Wfloat-equal
- endif
- ifneq ('$(USING_GCC_4XX)','')
- # extended_cpp_warnings += -Wwhatever
-@@ -135,7 +135,7 @@
- endif
- endif
-
--#---------------------- developer
-+#---------------------- developer
-
- ifneq ($(DEVELOPER),ANY) # ANY=default setting (skip all developer specific code)
- ifdef dflags
-@@ -153,7 +153,7 @@
- endif
-
- ifeq ($(ARB_64),1)
-- dflags += -DARB_64 #-fPIC
-+ dflags += -DARB_64 #-fPIC
- lflags +=
- shared_cflags += -fPIC
-
-@@ -175,7 +175,7 @@
- # build 32-bit ARB version on 64-bit host
- CROSS_LIB:=# empty = autodetect below
- cflags += -m32
-- lflags += -m32 -m elf_i386
-+ lflags += -m32 -m elf_i386
- else
- # build 32-bit ARB version on 32-bit host
- CROSS_LIB:=/lib
-@@ -214,20 +214,20 @@
- XHOME:=/usr/X11R6
- endif
-
--XINCLUDES:=-I$(XHOME)/include
-+XINCLUDES:=$(CPPFLAGS)
- ifdef DARWIN
- XINCLUDES += -I$(OSX_FW)/GLUT.framework/Headers -I$(OSX_FW)/OpenGL.framework/Headers -I$(OSX_SDK)/usr/include/krb5
-
-- XLIBS := -L$(XHOME)/lib -lXm -lpng -lz -lXt -lX11 -lXext -lXp -lXmu -lXi
-+ XLIBS := -$(LDFLAGS) L$(XHOME)/lib -lXm -lpng -lz -lXt -lX11 -lXext -lXp -lXmu -lXi
- XLIBS += -Wl,-dylib_file,$(OSX_FW_OPENGL)/libGL.dylib:$(OSX_FW_OPENGL)/libGL.dylib
- XLIBS += -Wl,-dylib_file,$(OSX_FW_OPENGL)/libGLU.dylib:$(OSX_FW_OPENGL)/libGLU.dylib
- else
-- XLIBS:=-L$(XHOME)/$(CROSS_LIB) -lXm -lXpm -lXt -lXext -lX11
-+ XLIBS:=$(LDFLAGS) -L$(XHOME)/$(CROSS_LIB) -lXm -lXpm -lXt -lXext -lX11
- endif
-
- #---------------------- open GL
-
--ifeq ($(OPENGL),1)
-+ifeq ($(OPENGL),1)
- cflags += -DARB_OPENGL # activate OPENGL code
- GL := gl # this is the name of the OPENGL base target
- GL_LIB := -lGL -L$(ARBHOME)/GL/glAW -lglAW
-@@ -280,7 +280,7 @@
- endif
- endif
-
--# -------------------------------------------------------------------------
-+# -------------------------------------------------------------------------
- # Don't put any machine/version/etc conditionals below!
- # (instead define variables above)
- # -------------------------------------------------------------------------
-@@ -335,9 +335,9 @@
-
- lflags:=
-
--# -------------------------
--# Main arb targets:
--# -------------------------
-+# -------------------------
-+# Main arb targets:
-+# -------------------------
-
- first_target:
- $(MAKE) checks
-@@ -521,7 +521,7 @@
-
- # ---------------------
-
--check_setup: check_ENVIRONMENT check_DEBUG check_ARB_64 check_DEVELOPER check_GCC_VERSION
-+check_setup: check_ENVIRONMENT check_DEBUG check_ARB_64 check_DEVELOPER check_GCC_VERSION
- @echo Your setup seems to be ok.
-
- checks: check_setup check_tabs
-@@ -558,7 +558,7 @@
- cflags:=$(cflags) -DFAKE_VTAB_PTR=char
- endif
-
--# -------------------------------
-+# -------------------------------
- # old PTSERVER or PTPAN?
-
- ifeq ($(PTPAN),1)
-@@ -583,7 +583,7 @@
- ARCHS_PT_SERVER_LINK = $(ARCHS_PT_SERVER)
- endif
-
--# -------------------------------
-+# -------------------------------
- # List of all Directories
-
- ARCHS = \
-@@ -894,7 +894,7 @@
- $(ARCHS_PROBE_COMMON) \
- $(ARCHS_PT_SERVER) \
-
--$(PROBE): $(ARCHS_PROBE_DEPEND:.a=.dummy) shared_libs
-+$(PROBE): $(ARCHS_PROBE_DEPEND:.a=.dummy) shared_libs
- @SOURCE_TOOLS/binuptodate.pl $@ $(ARCHS_PROBE_LINK) $(ARBDB_LIB) $(ARCHS_CLIENT_PROBE) || ( \
- echo Link $@ ; \
- echo "$(LINK_EXECUTABLE) $@ $(LIBPATH) $(ARCHS_PROBE_LINK) $(ARBDB_LIB) $(ARCHS_CLIENT_PROBE) $(SYSLIBS)" ; \
-@@ -1008,7 +1008,7 @@
- NAMES_COM/server.dummy : comtools
- NAMES_COM/client.dummy : comtools
-
--com_probe: PROBE_COM/PROBE_COM.dummy
-+com_probe: PROBE_COM/PROBE_COM.dummy
- com_names: NAMES_COM/NAMES_COM.dummy
- com_all: com_probe com_names
-
-@@ -1151,7 +1151,7 @@
- #********************************************************************************
-
- depends:
-- $(MAKE) comtools
-+ $(MAKE) comtools
- @echo "$(SEP) Partially build com interface"
- $(MAKE) PROBE_COM/PROBE_COM.depends
- $(MAKE) NAMES_COM/NAMES_COM.depends
-@@ -1162,10 +1162,10 @@
- depend: depends
-
- proto_tools:
-- @echo $(SEP) Building prototyper
-+ @echo $(SEP) Building prototyper
- $(MAKE) AISC_MKPTPS/AISC_MKPTPS.dummy
-
--#proto: proto_tools TOOLS/TOOLS.dummy
-+#proto: proto_tools TOOLS/TOOLS.dummy
- proto: proto_tools
- @echo $(SEP) Updating prototypes
- $(MAKE) \
-@@ -1270,7 +1270,7 @@
- all
- @$(MAKE) testperlscripts
-
--testperlscripts:
-+testperlscripts:
- @$(MAKE) -C PERL_SCRIPTS/test test
-
- perl_clean:
-@@ -1346,16 +1346,16 @@
- $(MAKE) all
-
- tarfile: rebuild
-- $(MAKE) addlibs
-+ $(MAKE) addlibs
- util/arb_compress
-
- tarfile_quick: all
-- $(MAKE) addlibs
-+ $(MAKE) addlibs
- util/arb_compress
-
--save: sourcetarfile
-+save: sourcetarfile
-
--# test early whether save will work
-+# test early whether save will work
- testsave:
- @util/arb_srclst.pl >/dev/null
-
-@@ -1377,14 +1377,14 @@
- touch SOURCE_TOOLS/inc_major.stamp
- $(MAKE) do_release
-
--do_release:
-+do_release:
- @echo Building release
- @echo PATH=$(PATH)
- @echo ARBHOME=$(ARBHOME)
- -rm arb.tgz arbsrc.tgz
- $(MAKE) testsave
- $(MAKE) templ # auto upgrades version early
-- $(MAKE) tarfile
-+ $(MAKE) tarfile
- $(MAKE) sourcetarfile
-
- release_quick:
-@@ -1407,7 +1407,7 @@
- arbapplications: nt pa ed e4 wetc pt na nal di ph ds pgt
-
- # optionally things (no real harm for ARB if any of them fails):
--arbxtras: tg pst a3 xmlin
-+arbxtras: tg pst a3 xmlin
-
- tryxtras:
- @echo $(SEP)
diff --git a/easybuild/easyconfigs/__archive__/a/ARB/ARB-5.5_xmkmf.patch b/easybuild/easyconfigs/__archive__/a/ARB/ARB-5.5_xmkmf.patch
deleted file mode 100644
index 84c57ec8f07..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ARB/ARB-5.5_xmkmf.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- Makefile.orig 2013-07-16 14:55:29.971221036 +0200
-+++ Makefile 2013-07-16 14:58:28.543495360 +0200
-@@ -68,7 +68,7 @@
- 4.3.1 4.3.2 4.3.3 \
- 4.4.1 4.4.3 \
- 4.6.1 \
-- 4.7.1
-+ 4.7.1 4.7.2
-
- ALLOWED_GCC_VERSIONS=$(ALLOWED_GCC_3xx_VERSIONS) $(ALLOWED_GCC_4xx_VERSIONS)
-
-@@ -322,7 +322,7 @@
- ifdef DARWIN
- XMKMF := $(PREFIX)/bin/xmkmf
- else
-- XMKMF := /usr/bin/X11/xmkmf
-+ XMKMF := xmkmf
- endif
-
- MAKEDEPEND_PLAIN = makedepend
diff --git a/easybuild/easyconfigs/__archive__/a/ASE/ASE-3.6.0.2515-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/a/ASE/ASE-3.6.0.2515-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index dbbc53352ef..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ASE/ASE-3.6.0.2515-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'ASE'
-version = '3.6.0.2515'
-
-homepage = 'https://wiki.fysik.dtu.dk/ase/'
-description = """ASE is a python package providing an open source Atomic Simulation Environment
-in the Python scripting language."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['https://wiki.fysik.dtu.dk/ase-files/']
-sources = ['python-%s-%s.tar.gz' % (name.lower(), version)]
-
-python = 'Python'
-pythonver = '2.7.3'
-pythonshortver = '.'.join(pythonver.split('.')[0:2])
-versionsuffix = '-%s-%s' % (python, pythonver)
-
-dependencies = [
- (python, pythonver),
-]
-
-sanity_check_paths = {
- 'files': ['bin/ag', 'bin/ase', 'bin/ASE2ase.py', 'bin/testase.py'],
- 'dirs': ['lib/python%s/site-packages/%s' % (pythonshortver, name.lower())]
-}
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/a/ASE/ASE-3.6.0.2515-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/a/ASE/ASE-3.6.0.2515-ictce-5.3.0-Python-2.7.3.eb
deleted file mode 100644
index de265b05d30..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ASE/ASE-3.6.0.2515-ictce-5.3.0-Python-2.7.3.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'ASE'
-version = '3.6.0.2515'
-
-homepage = 'https://wiki.fysik.dtu.dk/ase/'
-description = """ASE is a python package providing an open source Atomic Simulation Environment
- in the Python scripting language."""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['https://wiki.fysik.dtu.dk/ase-files/']
-sources = ['python-%s-%s.tar.gz' % (name.lower(), version)]
-
-python = 'Python'
-pythonver = '2.7.3'
-pythonshortver = '.'.join(pythonver.split('.')[0:2])
-versionsuffix = '-%s-%s' % (python, pythonver)
-
-dependencies = [
- (python, pythonver),
-]
-
-sanity_check_paths = {
- 'files': ['bin/ag', 'bin/ase', 'bin/ASE2ase.py', 'bin/testase.py'],
- 'dirs': ['lib/python%s/site-packages/%s' % (pythonshortver, name.lower())]
-}
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/a/ASE/ASE-3.9.1.4567-intel-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/a/ASE/ASE-3.9.1.4567-intel-2015b-Python-2.7.10.eb
deleted file mode 100644
index ee4c0a93cb9..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ASE/ASE-3.9.1.4567-intel-2015b-Python-2.7.10.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-easyblock = 'PythonPackage'
-
-name = 'ASE'
-version = '3.9.1.4567'
-
-homepage = 'https://wiki.fysik.dtu.dk/ase/'
-description = """ASE is a python package providing an open source Atomic Simulation Environment
- in the Python scripting language."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['https://wiki.fysik.dtu.dk/ase-files/']
-sources = ['python-%(namelower)s-%(version)s.tar.gz']
-
-python = 'Python'
-pythonver = '2.7.10'
-pyshortver = '.'.join(pythonver.split('.')[:2])
-versionsuffix = '-%s-%s' % (python, pythonver)
-
-dependencies = [
- (python, pythonver),
-]
-
-sanity_check_paths = {
- 'files': ['bin/ase-build', 'bin/ase-db', 'bin/ase-gui', 'bin/ase-info', 'bin/ase-run'],
- 'dirs': ['lib/python%s/site-packages/%%(namelower)s' % pyshortver],
-}
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/a/ATK/ATK-2.16.0-intel-2015a.eb b/easybuild/easyconfigs/__archive__/a/ATK/ATK-2.16.0-intel-2015a.eb
deleted file mode 100644
index af67d8fed17..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ATK/ATK-2.16.0-intel-2015a.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'ATK'
-version = '2.16.0'
-
-homepage = 'https://developer.gnome.org/ATK/stable/'
-description = """
- ATK provides the set of accessibility interfaces that are implemented by other
- toolkits and applications. Using the ATK interfaces, accessibility tools have
- full access to view and control running applications.
-"""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://ftp.gnome.org/pub/GNOME/sources/%(namelower)s/%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_XZ]
-
-dependencies = [
- ('GLib', '2.41.2'),
-]
-
-sanity_check_paths = {
- 'files': ['lib/libatk-1.0.%s' % SHLIB_EXT],
- 'dirs': [],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/a/ATK/ATK-2.16.0-intel-2015b.eb b/easybuild/easyconfigs/__archive__/a/ATK/ATK-2.16.0-intel-2015b.eb
deleted file mode 100644
index bddf11ebe82..00000000000
--- a/easybuild/easyconfigs/__archive__/a/ATK/ATK-2.16.0-intel-2015b.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'ATK'
-version = '2.16.0'
-
-homepage = 'https://developer.gnome.org/ATK/stable/'
-description = """
- ATK provides the set of accessibility interfaces that are implemented by other
- toolkits and applications. Using the ATK interfaces, accessibility tools have
- full access to view and control running applications.
-"""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['http://ftp.gnome.org/pub/GNOME/sources/%(namelower)s/%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_XZ]
-
-dependencies = [
- ('GLib', '2.41.2'),
-]
-
-sanity_check_paths = {
- 'files': ['lib/libatk-1.0.%s' % SHLIB_EXT],
- 'dirs': [],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/a/AnalyzeFMRI/AnalyzeFMRI-1.1-15-ictce-5.3.0-R-2.15.2.eb b/easybuild/easyconfigs/__archive__/a/AnalyzeFMRI/AnalyzeFMRI-1.1-15-ictce-5.3.0-R-2.15.2.eb
deleted file mode 100644
index 530418299d1..00000000000
--- a/easybuild/easyconfigs/__archive__/a/AnalyzeFMRI/AnalyzeFMRI-1.1-15-ictce-5.3.0-R-2.15.2.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-easyblock = 'RPackage'
-
-name = 'AnalyzeFMRI'
-version = '1.1-15'
-
-homepage = 'http://cran.r-project.org/web/packages/AnalyzeFMRI'
-description = """Functions for I/O, visualisation and analysis of functional Magnetic Resonance Imaging (fMRI)
- datasets stored in the ANALYZE or NIFTI format."""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['http://cran.r-project.org/src/contrib/']
-sources = ['%s_%s.tar.gz' % (name, version)]
-
-r = 'R'
-rver = '2.15.2'
-versionsuffix = '-%s-%s' % (r, rver)
-
-tcltkver = '8.5.12'
-
-dependencies = [
- (r, rver),
- ('Tcl', tcltkver),
- ('Tk', tcltkver),
-]
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['AnalyzeFMRI'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/a/Armadillo/Armadillo-2.4.4-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/a/Armadillo/Armadillo-2.4.4-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index db412156bb5..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Armadillo/Armadillo-2.4.4-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'Armadillo'
-version = '2.4.4'
-
-homepage = 'http://arma.sourceforge.net/'
-description = """Armadillo is an open-source C++ linear algebra library (matrix maths) aiming towards
-a good balance between speed and ease of use. Integer, floating point and complex numbers are supported,
-as well as a subset of trigonometric and statistics functions."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://sourceforge.net/projects/arma/files']
-
-versionsuffix = "-Python-2.7.3"
-
-dependencies = [('Boost', '1.49.0', versionsuffix)]
-
-builddependencies = [('CMake', '2.8.4')]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/Armadillo/Armadillo-2.4.4-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/a/Armadillo/Armadillo-2.4.4-ictce-5.3.0-Python-2.7.3.eb
deleted file mode 100644
index 0e4848e8c81..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Armadillo/Armadillo-2.4.4-ictce-5.3.0-Python-2.7.3.eb
+++ /dev/null
@@ -1,21 +0,0 @@
-name = 'Armadillo'
-version = '2.4.4'
-
-homepage = 'http://arma.sourceforge.net/'
-description = """Armadillo is an open-source C++ linear algebra library (matrix maths) aiming towards
- a good balance between speed and ease of use. Integer, floating point and complex numbers are supported,
- as well as a subset of trigonometric and statistics functions."""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://sourceforge.net/projects/arma/files']
-
-versionsuffix = "-Python-2.7.3"
-
-dependencies = [('Boost', '1.49.0', versionsuffix)]
-
-builddependencies = [('CMake', '2.8.4')]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/Armadillo/Armadillo-4.300.8-ictce-5.5.0-Python-2.7.5.eb b/easybuild/easyconfigs/__archive__/a/Armadillo/Armadillo-4.300.8-ictce-5.5.0-Python-2.7.5.eb
deleted file mode 100644
index 172092be52a..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Armadillo/Armadillo-4.300.8-ictce-5.5.0-Python-2.7.5.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-name = 'Armadillo'
-version = '4.300.8'
-
-homepage = 'http://arma.sourceforge.net/'
-description = """Armadillo is an open-source C++ linear algebra library (matrix maths) aiming towards
- a good balance between speed and ease of use. Integer, floating point and complex numbers are supported,
- as well as a subset of trigonometric and statistics functions."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://sourceforge.net/projects/arma/files']
-
-versionsuffix = "-Python-2.7.5"
-
-dependencies = [
- ('Boost', '1.53.0', versionsuffix),
- ('arpack-ng', '3.1.3'),
-]
-
-builddependencies = [('CMake', '2.8.12')]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/Armadillo/Armadillo-6.400.3-intel-2015b-Python-2.7.11.eb b/easybuild/easyconfigs/__archive__/a/Armadillo/Armadillo-6.400.3-intel-2015b-Python-2.7.11.eb
deleted file mode 100644
index 093ebf2f4e9..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Armadillo/Armadillo-6.400.3-intel-2015b-Python-2.7.11.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-name = 'Armadillo'
-version = '6.400.3'
-versionsuffix = '-Python-2.7.11'
-
-homepage = 'http://arma.sourceforge.net/'
-description = """Armadillo is an open-source C++ linear algebra library (matrix maths) aiming towards
- a good balance between speed and ease of use. Integer, floating point and complex numbers are supported,
- as well as a subset of trigonometric and statistics functions."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://sourceforge.net/projects/arma/files']
-
-dependencies = [
- ('Boost', '1.59.0', versionsuffix),
- ('arpack-ng', '3.3.0'),
-]
-
-builddependencies = [('CMake', '3.4.1')]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/Atkmm/Atkmm-2.22.7-intel-2015a.eb b/easybuild/easyconfigs/__archive__/a/Atkmm/Atkmm-2.22.7-intel-2015a.eb
deleted file mode 100644
index a5593a4c547..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Atkmm/Atkmm-2.22.7-intel-2015a.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Atkmm'
-version = '2.22.7'
-
-homepage = 'https://developer.gnome.org/ATK/stable/'
-description = """
- Atkmm is the official C++ interface for the ATK accessibility toolkit library.
-"""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://ftp.gnome.org/pub/GNOME/sources/%(namelower)s/%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_XZ]
-
-dependencies = [
- ('GLibmm', '2.41.2'),
- ('ATK', '2.16.0'),
-]
-
-sanity_check_paths = {
- 'files': ['lib/libatkmm-1.6.%s' % SHLIB_EXT],
- 'dirs': [],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/a/Atkmm/Atkmm-2.22.7-intel-2015b.eb b/easybuild/easyconfigs/__archive__/a/Atkmm/Atkmm-2.22.7-intel-2015b.eb
deleted file mode 100644
index 58785a85154..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Atkmm/Atkmm-2.22.7-intel-2015b.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Atkmm'
-version = '2.22.7'
-
-homepage = 'https://developer.gnome.org/ATK/stable/'
-description = """
- Atkmm is the official C++ interface for the ATK accessibility toolkit library.
-"""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['http://ftp.gnome.org/pub/GNOME/sources/%(namelower)s/%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_XZ]
-
-dependencies = [
- ('GLibmm', '2.41.2'),
- ('ATK', '2.16.0'),
-]
-
-sanity_check_paths = {
- 'files': ['lib/libatkmm-1.6.%s' % SHLIB_EXT],
- 'dirs': [],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-GCC-4.7.2.eb b/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-GCC-4.7.2.eb
deleted file mode 100644
index 5787393eb87..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-GCC-4.7.2.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Autoconf'
-version = '2.69'
-
-homepage = 'http://www.gnu.org/software/autoconf/'
-description = """Autoconf is an extensible package of M4 macros that produce shell scripts to automatically configure
- software source code packages. These scripts can adapt the packages to many kinds of UNIX-like systems without manual
- user intervention. Autoconf creates a configuration script for a package from a template file that lists the operating
- system features that the package can use, in the form of M4 macro calls."""
-
-toolchain = {'name': 'GCC', 'version': '4.7.2'}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-checksums = ['954bd69b391edc12d6a4a51a2dd1476543da5c6bbf05a95b59dc0dd6fd4c2969']
-
-dependencies = [('M4', '1.4.16')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["autoconf", "autoheader", "autom4te", "autoreconf",
- "autoscan", "autoupdate", "ifnames"]],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-foss-2015a.eb b/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-foss-2015a.eb
deleted file mode 100644
index 56f5ed55a56..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-foss-2015a.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Autoconf'
-version = '2.69'
-
-homepage = 'http://www.gnu.org/software/autoconf/'
-description = """Autoconf is an extensible package of M4 macros that produce shell scripts to automatically
- configure software source code packages. These scripts can adapt the packages to many kinds of UNIX-like
- systems without manual user intervention. Autoconf creates a configuration script for a package from a
- template file that lists the operating system features that the package can use, in the form of M4 macro calls."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-checksums = ['954bd69b391edc12d6a4a51a2dd1476543da5c6bbf05a95b59dc0dd6fd4c2969']
-
-dependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["autoconf", "autoheader", "autom4te", "autoreconf",
- "autoscan", "autoupdate", "ifnames"]],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-foss-2015b.eb b/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-foss-2015b.eb
deleted file mode 100644
index 2a4df610708..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-foss-2015b.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Autoconf'
-version = '2.69'
-
-homepage = 'http://www.gnu.org/software/autoconf/'
-description = """Autoconf is an extensible package of M4 macros that produce shell scripts to automatically
- configure software source code packages. These scripts can adapt the packages to many kinds of UNIX-like
- systems without manual user intervention. Autoconf creates a configuration script for a package from a
- template file that lists the operating system features that the package can use, in the form of M4 macro calls."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-checksums = ['954bd69b391edc12d6a4a51a2dd1476543da5c6bbf05a95b59dc0dd6fd4c2969']
-
-dependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["autoconf", "autoheader", "autom4te", "autoreconf",
- "autoscan", "autoupdate", "ifnames"]],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-goolf-1.4.10.eb
deleted file mode 100644
index d7fbad6ae5e..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-goolf-1.4.10.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Autoconf'
-version = '2.69'
-
-homepage = 'http://www.gnu.org/software/autoconf/'
-description = """Autoconf is an extensible package of M4 macros that produce shell scripts to automatically configure
- software source code packages. These scripts can adapt the packages to many kinds of UNIX-like systems without manual
- user intervention. Autoconf creates a configuration script for a package from a template file that lists the operating
- system features that the package can use, in the form of M4 macro calls."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-checksums = ['954bd69b391edc12d6a4a51a2dd1476543da5c6bbf05a95b59dc0dd6fd4c2969']
-
-dependencies = [('M4', '1.4.16')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["autoconf", "autoheader", "autom4te", "autoreconf",
- "autoscan", "autoupdate", "ifnames"]],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-ictce-5.3.0.eb
deleted file mode 100644
index 9bcd4d80213..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-ictce-5.3.0.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Autoconf'
-version = '2.69'
-
-homepage = 'http://www.gnu.org/software/autoconf/'
-description = """Autoconf is an extensible package of M4 macros that produce shell scripts to automatically
- configure software source code packages. These scripts can adapt the packages to many kinds of UNIX-like
- systems without manual user intervention. Autoconf creates a configuration script for a package from a
- template file that lists the operating system features that the package can use, in the form of M4 macro calls."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-checksums = ['954bd69b391edc12d6a4a51a2dd1476543da5c6bbf05a95b59dc0dd6fd4c2969']
-
-dependencies = [('M4', '1.4.16')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["autoconf", "autoheader", "autom4te", "autoreconf",
- "autoscan", "autoupdate", "ifnames"]],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-ictce-5.5.0.eb
deleted file mode 100644
index c08fc8d2bf2..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-ictce-5.5.0.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Autoconf'
-version = '2.69'
-
-homepage = 'http://www.gnu.org/software/autoconf/'
-description = """Autoconf is an extensible package of M4 macros that produce shell scripts to automatically
- configure software source code packages. These scripts can adapt the packages to many kinds of UNIX-like
- systems without manual user intervention. Autoconf creates a configuration script for a package from a
- template file that lists the operating system features that the package can use, in the form of M4 macro calls."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-checksums = ['954bd69b391edc12d6a4a51a2dd1476543da5c6bbf05a95b59dc0dd6fd4c2969']
-
-dependencies = [('M4', '1.4.16')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["autoconf", "autoheader", "autom4te", "autoreconf",
- "autoscan", "autoupdate", "ifnames"]],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-intel-2015a.eb b/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-intel-2015a.eb
deleted file mode 100644
index c2d84c2ed38..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-intel-2015a.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Autoconf'
-version = '2.69'
-
-homepage = 'http://www.gnu.org/software/autoconf/'
-description = """Autoconf is an extensible package of M4 macros that produce shell scripts to automatically
- configure software source code packages. These scripts can adapt the packages to many kinds of UNIX-like
- systems without manual user intervention. Autoconf creates a configuration script for a package from a
- template file that lists the operating system features that the package can use, in the form of M4 macro calls."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-checksums = ['954bd69b391edc12d6a4a51a2dd1476543da5c6bbf05a95b59dc0dd6fd4c2969']
-
-dependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["autoconf", "autoheader", "autom4te", "autoreconf",
- "autoscan", "autoupdate", "ifnames"]],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-intel-2015b.eb b/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-intel-2015b.eb
deleted file mode 100644
index 8467666de9b..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Autoconf/Autoconf-2.69-intel-2015b.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Autoconf'
-version = '2.69'
-
-homepage = 'http://www.gnu.org/software/autoconf/'
-description = """Autoconf is an extensible package of M4 macros that produce shell scripts to automatically
- configure software source code packages. These scripts can adapt the packages to many kinds of UNIX-like
- systems without manual user intervention. Autoconf creates a configuration script for a package from a
- template file that lists the operating system features that the package can use, in the form of M4 macro calls."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-checksums = ['954bd69b391edc12d6a4a51a2dd1476543da5c6bbf05a95b59dc0dd6fd4c2969']
-
-dependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["autoconf", "autoheader", "autom4te", "autoreconf",
- "autoscan", "autoupdate", "ifnames"]],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.13.4-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.13.4-goolf-1.4.10.eb
deleted file mode 100644
index 857777923b3..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.13.4-goolf-1.4.10.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'Automake'
-version = '1.13.4'
-
-homepage = 'http://www.gnu.org/software/automake/automake.html'
-description = "Automake: GNU Standards-compliant Makefile generator"
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-checksums = ['4c93abc0bff54b296f41f92dd3aa1e73e554265a6f719df465574983ef6f878c']
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-dependencies = [('Autoconf', '2.69')]
-
-sanity_check_paths = {
- 'files': ['bin/automake', 'bin/aclocal'],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.13.4-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.13.4-ictce-5.3.0.eb
deleted file mode 100644
index 01e8f72d2bc..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.13.4-ictce-5.3.0.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'Automake'
-version = '1.13.4'
-
-homepage = 'http://www.gnu.org/software/automake/automake.html'
-description = "Automake: GNU Standards-compliant Makefile generator"
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-checksums = ['4c93abc0bff54b296f41f92dd3aa1e73e554265a6f719df465574983ef6f878c']
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-dependencies = [('Autoconf', '2.69')]
-
-sanity_check_paths = {
- 'files': ['bin/automake', 'bin/aclocal'],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.13.4-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.13.4-ictce-5.5.0.eb
deleted file mode 100644
index 506b09d2da4..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.13.4-ictce-5.5.0.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Authors:: Alan O'Cais
-# $Id$
-#
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'Automake'
-version = '1.13.4'
-
-homepage = 'http://www.gnu.org/software/automake/automake.html'
-description = "Automake: GNU Standards-compliant Makefile generator"
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-checksums = ['4c93abc0bff54b296f41f92dd3aa1e73e554265a6f719df465574983ef6f878c']
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-dependencies = [('Autoconf', '2.69')]
-
-sanity_check_paths = {
- 'files': ['bin/automake', 'bin/aclocal'],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.14-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.14-ictce-5.3.0.eb
deleted file mode 100644
index 3ba6c9e28bd..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.14-ictce-5.3.0.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'Automake'
-version = "1.14"
-
-homepage = 'http://www.gnu.org/software/automake/automake.html'
-description = "Automake: GNU Standards-compliant Makefile generator"
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['http://ftp.gnu.org/gnu/automake']
-sources = [SOURCELOWER_TAR_GZ]
-checksums = ['7847424d4204d1627c129e9c15b81e145836afa2a1bf9003ffe10aa26ea75755']
-
-dependencies = [('Autoconf', '2.69')]
-
-sanity_check_paths = {
- 'files': ['bin/automake', 'bin/aclocal'],
- 'dirs': []
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.14-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.14-ictce-5.5.0.eb
deleted file mode 100644
index ab1112f57f4..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.14-ictce-5.5.0.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'Automake'
-version = "1.14"
-
-homepage = 'http://www.gnu.org/software/automake/automake.html'
-description = "Automake: GNU Standards-compliant Makefile generator"
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = ['http://ftp.gnu.org/gnu/automake']
-sources = [SOURCELOWER_TAR_GZ]
-checksums = ['7847424d4204d1627c129e9c15b81e145836afa2a1bf9003ffe10aa26ea75755']
-
-dependencies = [('Autoconf', '2.69')]
-
-sanity_check_paths = {
- 'files': ['bin/automake', 'bin/aclocal'],
- 'dirs': []
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-GCC-4.7.2.eb b/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-GCC-4.7.2.eb
deleted file mode 100644
index 65f245a0e26..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-GCC-4.7.2.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'Automake'
-version = "1.15"
-
-homepage = 'http://www.gnu.org/software/automake/automake.html'
-description = "Automake: GNU Standards-compliant Makefile generator"
-
-toolchain = {'name': 'GCC', 'version': '4.7.2'}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-patches = ['Automake-%(version)s-fix-brace.patch']
-checksums = [
- '7946e945a96e28152ba5a6beb0625ca715c6e32ac55f2e353ef54def0c8ed924', # automake-1.15.tar.gz
- '9f72b339934d546ba8f8486d3ca601601a298963b66a20474245df524acaf0d7', # Automake-1.15-fix-brace.patch
-]
-
-dependencies = [('Autoconf', '2.69')]
-
-sanity_check_paths = {
- 'files': ['bin/automake', 'bin/aclocal'],
- 'dirs': []
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-foss-2015a.eb b/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-foss-2015a.eb
deleted file mode 100644
index b313af871b3..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-foss-2015a.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'Automake'
-version = "1.15"
-
-homepage = 'http://www.gnu.org/software/automake/automake.html'
-description = "Automake: GNU Standards-compliant Makefile generator"
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-patches = ['Automake-%(version)s-fix-brace.patch']
-checksums = [
- '7946e945a96e28152ba5a6beb0625ca715c6e32ac55f2e353ef54def0c8ed924', # automake-1.15.tar.gz
- '9f72b339934d546ba8f8486d3ca601601a298963b66a20474245df524acaf0d7', # Automake-1.15-fix-brace.patch
-]
-
-dependencies = [('Autoconf', '2.69')]
-
-sanity_check_paths = {
- 'files': ['bin/automake', 'bin/aclocal'],
- 'dirs': []
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-foss-2015b.eb b/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-foss-2015b.eb
deleted file mode 100644
index 061e58a9a97..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-foss-2015b.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'Automake'
-version = "1.15"
-
-homepage = 'http://www.gnu.org/software/automake/automake.html'
-description = "Automake: GNU Standards-compliant Makefile generator"
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-patches = ['Automake-%(version)s-fix-brace.patch']
-checksums = [
- '7946e945a96e28152ba5a6beb0625ca715c6e32ac55f2e353ef54def0c8ed924', # automake-1.15.tar.gz
- '9f72b339934d546ba8f8486d3ca601601a298963b66a20474245df524acaf0d7', # Automake-1.15-fix-brace.patch
-]
-
-dependencies = [('Autoconf', '2.69')]
-
-sanity_check_paths = {
- 'files': ['bin/automake', 'bin/aclocal'],
- 'dirs': []
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-ictce-5.3.0.eb
deleted file mode 100644
index 60a8de85b22..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-ictce-5.3.0.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'Automake'
-version = "1.15"
-
-homepage = 'http://www.gnu.org/software/automake/automake.html'
-description = "Automake: GNU Standards-compliant Makefile generator"
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-patches = ['Automake-%(version)s-fix-brace.patch']
-checksums = [
- '7946e945a96e28152ba5a6beb0625ca715c6e32ac55f2e353ef54def0c8ed924', # automake-1.15.tar.gz
- '9f72b339934d546ba8f8486d3ca601601a298963b66a20474245df524acaf0d7', # Automake-1.15-fix-brace.patch
-]
-
-dependencies = [('Autoconf', '2.69')]
-
-sanity_check_paths = {
- 'files': ['bin/automake', 'bin/aclocal'],
- 'dirs': []
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-ictce-5.5.0.eb
deleted file mode 100644
index ec0fed20347..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-ictce-5.5.0.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'Automake'
-version = "1.15"
-
-homepage = 'http://www.gnu.org/software/automake/automake.html'
-description = "Automake: GNU Standards-compliant Makefile generator"
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-patches = ['Automake-%(version)s-fix-brace.patch']
-checksums = [
- '7946e945a96e28152ba5a6beb0625ca715c6e32ac55f2e353ef54def0c8ed924', # automake-1.15.tar.gz
- '9f72b339934d546ba8f8486d3ca601601a298963b66a20474245df524acaf0d7', # Automake-1.15-fix-brace.patch
-]
-
-dependencies = [('Autoconf', '2.69')]
-
-sanity_check_paths = {
- 'files': ['bin/automake', 'bin/aclocal'],
- 'dirs': []
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-intel-2015a.eb b/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-intel-2015a.eb
deleted file mode 100644
index 77899c30738..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-intel-2015a.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'Automake'
-version = "1.15"
-
-homepage = 'http://www.gnu.org/software/automake/automake.html'
-description = "Automake: GNU Standards-compliant Makefile generator"
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://ftp.gnu.org/gnu/automake']
-sources = [SOURCELOWER_TAR_GZ]
-patches = ['Automake-%(version)s-fix-brace.patch']
-checksums = [
- '7946e945a96e28152ba5a6beb0625ca715c6e32ac55f2e353ef54def0c8ed924', # automake-1.15.tar.gz
- '9f72b339934d546ba8f8486d3ca601601a298963b66a20474245df524acaf0d7', # Automake-1.15-fix-brace.patch
-]
-
-dependencies = [('Autoconf', '2.69')]
-
-sanity_check_paths = {
- 'files': ['bin/automake', 'bin/aclocal'],
- 'dirs': []
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-intel-2015b.eb b/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-intel-2015b.eb
deleted file mode 100644
index dbf655ee93d..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Automake/Automake-1.15-intel-2015b.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'Automake'
-version = "1.15"
-
-homepage = 'http://www.gnu.org/software/automake/automake.html'
-description = "Automake: GNU Standards-compliant Makefile generator"
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-patches = ['Automake-%(version)s-fix-brace.patch']
-checksums = [
- '7946e945a96e28152ba5a6beb0625ca715c6e32ac55f2e353ef54def0c8ed924', # automake-1.15.tar.gz
- '9f72b339934d546ba8f8486d3ca601601a298963b66a20474245df524acaf0d7', # Automake-1.15-fix-brace.patch
-]
-
-dependencies = [('Autoconf', '2.69')]
-
-sanity_check_paths = {
- 'files': ['bin/automake', 'bin/aclocal'],
- 'dirs': []
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-GCC-4.7.2.eb b/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-GCC-4.7.2.eb
deleted file mode 100644
index d72ed94ae6d..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-GCC-4.7.2.eb
+++ /dev/null
@@ -1,17 +0,0 @@
-easyblock = 'Bundle'
-
-name = 'Autotools'
-version = '20150215' # date of the most recent change
-
-homepage = 'http://autotools.io'
-description = """This bundle collect the standard GNU build tools: Autoconf, Automake and libtool"""
-
-toolchain = {'name': 'GCC', 'version': '4.7.2'}
-
-dependencies = [
- ('Autoconf', '2.69'), # 20120424
- ('Automake', '1.15'), # 20150105
- ('libtool', '2.4.6'), # 20150215
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-foss-2015a.eb b/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-foss-2015a.eb
deleted file mode 100644
index 474b894ca29..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-foss-2015a.eb
+++ /dev/null
@@ -1,17 +0,0 @@
-easyblock = 'Bundle'
-
-name = 'Autotools'
-version = '20150215' # date of the most recent change
-
-homepage = 'http://autotools.io'
-description = """This bundle collect the standard GNU build tools: Autoconf, Automake and libtool"""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-dependencies = [
- ('Autoconf', '2.69'), # 20120424
- ('Automake', '1.15'), # 20150105
- ('libtool', '2.4.6'), # 20150215
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-foss-2015b.eb b/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-foss-2015b.eb
deleted file mode 100644
index ab4ec5f1491..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-foss-2015b.eb
+++ /dev/null
@@ -1,17 +0,0 @@
-easyblock = 'Bundle'
-
-name = 'Autotools'
-version = '20150215' # date of the most recent change
-
-homepage = 'http://autotools.io'
-description = """This bundle collect the standard GNU build tools: Autoconf, Automake and libtool"""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-dependencies = [
- ('Autoconf', '2.69'), # 20120424
- ('Automake', '1.15'), # 20150105
- ('libtool', '2.4.6'), # 20150215
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-ictce-5.3.0.eb
deleted file mode 100644
index 36c5a28f14d..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-ictce-5.3.0.eb
+++ /dev/null
@@ -1,17 +0,0 @@
-easyblock = 'Bundle'
-
-name = 'Autotools'
-version = '20150215' # date of the most recent change
-
-homepage = 'http://autotools.io'
-description = """This bundle collect the standard GNU build tools: Autoconf, Automake and libtool"""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-dependencies = [
- ('Autoconf', '2.69'), # 20120424
- ('Automake', '1.15'), # 20150105
- ('libtool', '2.4.6'), # 20150215
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-ictce-5.5.0.eb
deleted file mode 100644
index 72e186977db..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-ictce-5.5.0.eb
+++ /dev/null
@@ -1,17 +0,0 @@
-easyblock = 'Bundle'
-
-name = 'Autotools'
-version = '20150215' # date of the most recent change
-
-homepage = 'http://autotools.io'
-description = """This bundle collect the standard GNU build tools: Autoconf, Automake and libtool"""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-dependencies = [
- ('Autoconf', '2.69'), # 20120424
- ('Automake', '1.15'), # 20150105
- ('libtool', '2.4.6'), # 20150215
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-intel-2015a.eb b/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-intel-2015a.eb
deleted file mode 100644
index 33124456f6e..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-intel-2015a.eb
+++ /dev/null
@@ -1,17 +0,0 @@
-easyblock = 'Bundle'
-
-name = 'Autotools'
-version = '20150215' # date of the most recent change
-
-homepage = 'http://autotools.io'
-description = """This bundle collect the standard GNU build tools: Autoconf, Automake and libtool"""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-dependencies = [
- ('Autoconf', '2.69'), # 20120424
- ('Automake', '1.15'), # 20150105
- ('libtool', '2.4.6'), # 20150215
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-intel-2015b.eb b/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-intel-2015b.eb
deleted file mode 100644
index 82ab19bc937..00000000000
--- a/easybuild/easyconfigs/__archive__/a/Autotools/Autotools-20150215-intel-2015b.eb
+++ /dev/null
@@ -1,17 +0,0 @@
-easyblock = 'Bundle'
-
-name = 'Autotools'
-version = '20150215' # date of the most recent change
-
-homepage = 'http://autotools.io'
-description = """This bundle collect the standard GNU build tools: Autoconf, Automake and libtool"""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-dependencies = [
- ('Autoconf', '2.69'), # 20120424
- ('Automake', '1.15'), # 20150105
- ('libtool', '2.4.6'), # 20150215
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/a/a2ps/a2ps-4.14-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/a/a2ps/a2ps-4.14-goolf-1.4.10.eb
deleted file mode 100644
index 43ebff1094e..00000000000
--- a/easybuild/easyconfigs/__archive__/a/a2ps/a2ps-4.14-goolf-1.4.10.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'a2ps'
-version = '4.14'
-
-homepage = 'http://www-inf.enst.fr/~demaille/a2ps/'
-description = """a2ps-4.14: Formats an ascii file for printing on a postscript printer"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = [SOURCE_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-dependencies = [
- ('gettext', '0.18.2'),
- ('gperf', '3.0.4'),
-]
-
-preconfigopts = 'env EMACS=no'
-configopts = '--with-gnu-gettext'
-
-sanity_check_paths = {
- 'files': ['bin/a2ps'],
- 'dirs': [],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/a/a2ps/a2ps-4.14-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/a/a2ps/a2ps-4.14-ictce-5.3.0.eb
deleted file mode 100644
index 7c34cc881b0..00000000000
--- a/easybuild/easyconfigs/__archive__/a/a2ps/a2ps-4.14-ictce-5.3.0.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'a2ps'
-version = '4.14'
-
-homepage = 'http://www-inf.enst.fr/~demaille/a2ps/'
-description = """a2ps-4.14: Formats an ascii file for printing on a postscript printer"""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sources = [SOURCE_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-dependencies = [
- ('gettext', '0.18.2'),
- ('gperf', '3.0.4'),
-]
-
-preconfigopts = 'env EMACS=no'
-configopts = '--with-gnu-gettext'
-
-sanity_check_paths = {
- 'files': ['bin/a2ps'],
- 'dirs': [],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/a/animation/animation-2.4-intel-2015b-R-3.2.1.eb b/easybuild/easyconfigs/__archive__/a/animation/animation-2.4-intel-2015b-R-3.2.1.eb
deleted file mode 100644
index 871016656be..00000000000
--- a/easybuild/easyconfigs/__archive__/a/animation/animation-2.4-intel-2015b-R-3.2.1.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-easyblock = 'RPackage'
-
-name = 'animation'
-version = '2.4'
-
-homepage = 'http://cran.r-project.org/web/packages/%(name)s'
-description = """animation: A Gallery of Animations in Statistics and Utilities to Create Animations"""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = [
- 'http://cran.r-project.org/src/contrib/',
- 'http://cran.r-project.org/src/contrib/Archive/$(name)s/',
-]
-sources = ['%(name)s_%(version)s.tar.gz']
-
-r = 'R'
-rver = '3.2.1'
-versionsuffix = '-%s-%s' % (r, rver)
-
-dependencies = [
- (r, rver),
- ('FFmpeg', '2.8'),
- ('GraphicsMagick', '1.3.21'),
-]
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['animation'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/a/argtable/argtable-2.13-foss-2015b.eb b/easybuild/easyconfigs/__archive__/a/argtable/argtable-2.13-foss-2015b.eb
deleted file mode 100644
index 92c65de8d19..00000000000
--- a/easybuild/easyconfigs/__archive__/a/argtable/argtable-2.13-foss-2015b.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'ConfigureMake'
-
-name = 'argtable'
-version = '2.13'
-
-homepage = 'http://argtable.sourceforge.net/'
-description = """ Argtable is an ANSI C library for parsing GNU style
- command line options with a minimum of fuss. """
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%s%s.tar.gz' % (name, version.replace('.', '-'))]
-
-sanity_check_paths = {
- 'files': ['lib/libargtable2.so', 'lib/libargtable2.la'],
- 'dirs': ['include', 'lib', 'share'],
-}
-
-moduleclass = 'lib'
diff --git a/easybuild/easyconfigs/__archive__/a/argtable/argtable-2.13-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/a/argtable/argtable-2.13-goolf-1.4.10.eb
deleted file mode 100644
index aa880de8ec7..00000000000
--- a/easybuild/easyconfigs/__archive__/a/argtable/argtable-2.13-goolf-1.4.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'ConfigureMake'
-
-name = 'argtable'
-version = '2.13'
-
-homepage = 'http://argtable.sourceforge.net/'
-description = """ Argtable is an ANSI C library for parsing GNU style
- command line options with a minimum of fuss. """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%s%s.tar.gz' % (name, version.replace('.', '-'))]
-
-sanity_check_paths = {
- 'files': ['lib/libargtable2.%s' % SHLIB_EXT, 'lib/libargtable2.la'],
- 'dirs': ['include', 'lib', 'share'],
-}
-
-moduleclass = 'lib'
diff --git a/easybuild/easyconfigs/__archive__/a/aria2/aria2-1.15.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/a/aria2/aria2-1.15.1-goolf-1.4.10.eb
deleted file mode 100644
index b870897d26b..00000000000
--- a/easybuild/easyconfigs/__archive__/a/aria2/aria2-1.15.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'aria2'
-version = '1.15.1'
-
-homepage = 'http://aria2.sourceforge.net/'
-description = """aria2-1.15.1: Multi-threaded, multi-protocol, flexible download accelerator"""
-
-sources = [SOURCE_TAR_BZ2]
-source_urls = ['http://sourceforge.net/projects/aria2/files', 'download']
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sanity_check_paths = {
- 'files': ['bin/aria2c'],
- 'dirs': []
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/a/aria2/aria2-1.15.1-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/a/aria2/aria2-1.15.1-ictce-5.3.0.eb
deleted file mode 100644
index 5cbd7bb040c..00000000000
--- a/easybuild/easyconfigs/__archive__/a/aria2/aria2-1.15.1-ictce-5.3.0.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'aria2'
-version = '1.15.1'
-
-homepage = 'http://aria2.sourceforge.net/'
-description = """aria2-1.15.1: Multi-threaded, multi-protocol, flexible download accelerator"""
-
-sources = [SOURCE_TAR_BZ2]
-source_urls = ['http://sourceforge.net/projects/aria2/files', 'download']
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sanity_check_paths = {
- 'files': ['bin/aria2c'],
- 'dirs': []
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.1.3-ictce-5.3.0-mt.eb b/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.1.3-ictce-5.3.0-mt.eb
deleted file mode 100644
index 66c7769216c..00000000000
--- a/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.1.3-ictce-5.3.0-mt.eb
+++ /dev/null
@@ -1,35 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'arpack-ng'
-version = '3.1.3'
-versionsuffix = '-mt'
-
-homepage = 'http://forge.scilab.org/index.php/p/arpack-ng/'
-description = """ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'opt': True, 'optarch': True, 'pic': True, 'usempi': False}
-
-source_urls = ['https://github.com/opencollab/arpack-ng/archive/']
-sources = ['%(version)s.tar.gz']
-
-checksums = [
- '13ac771c2a28cc4b7d770c85525894d230c705f151d90b42d3f4982ed1dfda53', # 3.1.3.tar.gz
- '928b71003a99b04fb205edd59473dd2fd84f6581c3e79c49d915e78a2395d8d7', # arpack-ng-3.1.3-update-to-head.patch
- 'd2b3885eccba3d0dd2272969b14baa2d22deaa830c21c508b12687fc7aaeca06', # arpack-ng-3.1.3-pkgconfig.patch
-]
-
-# do not change the order of the patches or things will break
-patches = [
- 'arpack-ng-3.1.3-update-to-head.patch',
- 'arpack-ng-3.1.3-pkgconfig.patch',
-]
-
-configopts = '--with-pic --with-blas="$LIBBLAS_MT" --with-lapack="$LIBLAPACK_MT"'
-
-sanity_check_paths = {
- 'files': ["lib/libarpack.a", "lib/libarpack.%s" % SHLIB_EXT],
- 'dirs': []
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.1.3-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.1.3-ictce-5.3.0.eb
deleted file mode 100644
index f319e77d02c..00000000000
--- a/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.1.3-ictce-5.3.0.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'arpack-ng'
-version = '3.1.3'
-
-homepage = 'http://forge.scilab.org/index.php/p/arpack-ng/'
-description = """ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'opt': True, 'optarch': True, 'pic': True, 'usempi': True}
-
-source_urls = ['https://github.com/opencollab/arpack-ng/archive/']
-sources = ['%(version)s.tar.gz']
-
-checksums = [
- '13ac771c2a28cc4b7d770c85525894d230c705f151d90b42d3f4982ed1dfda53', # 3.1.3.tar.gz
- '928b71003a99b04fb205edd59473dd2fd84f6581c3e79c49d915e78a2395d8d7', # arpack-ng-3.1.3-update-to-head.patch
- 'd2b3885eccba3d0dd2272969b14baa2d22deaa830c21c508b12687fc7aaeca06', # arpack-ng-3.1.3-pkgconfig.patch
- '6dc832bc4458c30a67f9d6348e60bee9ed9ddb413a54418e706661ef74695910', # arpack-ng-3.1.3-configure-mpi.patch
-]
-
-# do not change the order of the patches or things will break
-patches = [
- 'arpack-ng-3.1.3-update-to-head.patch',
- 'arpack-ng-3.1.3-pkgconfig.patch',
- 'arpack-ng-3.1.3-configure-mpi.patch',
-]
-
-configopts = '--enable-mpi --with-pic --with-blas="$LIBBLAS" --with-lapack="$LIBLAPACK"'
-
-sanity_check_paths = {
- 'files': ["lib/libarpack.a", "lib/libarpack.%s" % SHLIB_EXT, "lib/libparpack.a", "lib/libparpack.%s" % SHLIB_EXT],
- 'dirs': []
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.1.3-ictce-5.5.0-mt.eb b/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.1.3-ictce-5.5.0-mt.eb
deleted file mode 100644
index 18c202769ea..00000000000
--- a/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.1.3-ictce-5.5.0-mt.eb
+++ /dev/null
@@ -1,35 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'arpack-ng'
-version = '3.1.3'
-versionsuffix = '-mt'
-
-homepage = 'http://forge.scilab.org/index.php/p/arpack-ng/'
-description = """ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'opt': True, 'optarch': True, 'pic': True, 'usempi': False}
-
-source_urls = ['https://github.com/opencollab/arpack-ng/archive/']
-sources = ['%(version)s.tar.gz']
-
-checksums = [
- '13ac771c2a28cc4b7d770c85525894d230c705f151d90b42d3f4982ed1dfda53', # 3.1.3.tar.gz
- '928b71003a99b04fb205edd59473dd2fd84f6581c3e79c49d915e78a2395d8d7', # arpack-ng-3.1.3-update-to-head.patch
- 'd2b3885eccba3d0dd2272969b14baa2d22deaa830c21c508b12687fc7aaeca06', # arpack-ng-3.1.3-pkgconfig.patch
-]
-
-# do not change the order of the patches or things will break
-patches = [
- 'arpack-ng-3.1.3-update-to-head.patch',
- 'arpack-ng-3.1.3-pkgconfig.patch',
-]
-
-configopts = '--with-pic --with-blas="$LIBBLAS_MT" --with-lapack="$LIBLAPACK_MT"'
-
-sanity_check_paths = {
- 'files': ["lib/libarpack.a", "lib/libarpack.%s" % SHLIB_EXT],
- 'dirs': []
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.1.3-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.1.3-ictce-5.5.0.eb
deleted file mode 100644
index a0635d43bd4..00000000000
--- a/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.1.3-ictce-5.5.0.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'arpack-ng'
-version = '3.1.3'
-
-homepage = 'http://forge.scilab.org/index.php/p/arpack-ng/'
-description = """ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'opt': True, 'optarch': True, 'pic': True, 'usempi': True}
-
-source_urls = ['https://github.com/opencollab/arpack-ng/archive/']
-sources = ['%(version)s.tar.gz']
-
-checksums = [
- '13ac771c2a28cc4b7d770c85525894d230c705f151d90b42d3f4982ed1dfda53', # 3.1.3.tar.gz
- '928b71003a99b04fb205edd59473dd2fd84f6581c3e79c49d915e78a2395d8d7', # arpack-ng-3.1.3-update-to-head.patch
- 'd2b3885eccba3d0dd2272969b14baa2d22deaa830c21c508b12687fc7aaeca06', # arpack-ng-3.1.3-pkgconfig.patch
- '6dc832bc4458c30a67f9d6348e60bee9ed9ddb413a54418e706661ef74695910', # arpack-ng-3.1.3-configure-mpi.patch
-]
-
-# do not change the order of the patches or things will break
-patches = [
- 'arpack-ng-3.1.3-update-to-head.patch',
- 'arpack-ng-3.1.3-pkgconfig.patch',
- 'arpack-ng-3.1.3-configure-mpi.patch',
-]
-
-configopts = '--enable-mpi --with-pic --with-blas="$LIBBLAS" --with-lapack="$LIBLAPACK"'
-
-sanity_check_paths = {
- 'files': ["lib/libarpack.a", "lib/libarpack.%s" % SHLIB_EXT, "lib/libparpack.a", "lib/libparpack.%s" % SHLIB_EXT],
- 'dirs': []
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.1.5-ictce-7.1.2-mt.eb b/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.1.5-ictce-7.1.2-mt.eb
deleted file mode 100644
index a8e1f0cfdf6..00000000000
--- a/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.1.5-ictce-7.1.2-mt.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'arpack-ng'
-version = '3.1.5'
-versionsuffix = '-mt'
-
-homepage = 'http://forge.scilab.org/index.php/p/arpack-ng/'
-description = """ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems."""
-
-toolchain = {'name': 'ictce', 'version': '7.1.2'}
-toolchainopts = {'opt': True, 'optarch': True, 'pic': True, 'usempi': False}
-
-source_urls = ['https://github.com/opencollab/arpack-ng/archive/']
-sources = ['%(version)s.tar.gz']
-
-checksums = ['f609d001a247195c019626cb0f2144db7b08c83f53d875dcdeeee4cdb0609098']
-
-configopts = '--with-pic --with-blas="$LIBBLAS_MT" --with-lapack="$LIBLAPACK_MT"'
-
-sanity_check_paths = {
- 'files': ["lib/libarpack.a", "lib/libarpack.%s" % SHLIB_EXT],
- 'dirs': []
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.1.5-ictce-7.1.2.eb b/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.1.5-ictce-7.1.2.eb
deleted file mode 100644
index c29fa0b72dc..00000000000
--- a/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.1.5-ictce-7.1.2.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'arpack-ng'
-version = '3.1.5'
-
-homepage = 'http://forge.scilab.org/index.php/p/arpack-ng/'
-description = """ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems."""
-
-toolchain = {'name': 'ictce', 'version': '7.1.2'}
-toolchainopts = {'opt': True, 'optarch': True, 'pic': True, 'usempi': True}
-
-source_urls = ['https://github.com/opencollab/arpack-ng/archive/']
-sources = ['%(version)s.tar.gz']
-
-checksums = ['f609d001a247195c019626cb0f2144db7b08c83f53d875dcdeeee4cdb0609098']
-
-configopts = '--with-pic --with-blas="$LIBBLAS_MT" --with-lapack="$LIBLAPACK_MT"'
-
-sanity_check_paths = {
- 'files': ["lib/libarpack.a", "lib/libarpack.%s" % SHLIB_EXT],
- 'dirs': []
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.2.0-intel-2015a-mt.eb b/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.2.0-intel-2015a-mt.eb
deleted file mode 100644
index 0a13946d1b0..00000000000
--- a/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.2.0-intel-2015a-mt.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'arpack-ng'
-version = '3.2.0'
-versionsuffix = '-mt'
-
-homepage = 'http://forge.scilab.org/index.php/p/arpack-ng/'
-description = """ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'opt': True, 'optarch': True, 'pic': True, 'usempi': False}
-
-source_urls = ['https://github.com/opencollab/arpack-ng/archive/']
-sources = ['%(version)s.tar.gz']
-
-configopts = '--with-pic --with-blas="$LIBBLAS_MT" --with-lapack="$LIBLAPACK_MT"'
-
-sanity_check_paths = {
- 'files': ["lib/libarpack.a", "lib/libarpack.%s" % SHLIB_EXT],
- 'dirs': []
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.2.0-intel-2015a.eb b/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.2.0-intel-2015a.eb
deleted file mode 100644
index a37e2d0ee25..00000000000
--- a/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.2.0-intel-2015a.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'arpack-ng'
-version = '3.2.0'
-
-homepage = 'http://forge.scilab.org/index.php/p/arpack-ng/'
-description = """ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'opt': True, 'optarch': True, 'pic': True, 'usempi': True}
-
-source_urls = ['https://github.com/opencollab/arpack-ng/archive/']
-sources = ['%(version)s.tar.gz']
-
-configopts = '--with-pic --with-blas="$LIBBLAS" --with-lapack="$LIBLAPACK"'
-
-sanity_check_paths = {
- 'files': ["lib/libarpack.a", "lib/libarpack.%s" % SHLIB_EXT],
- 'dirs': []
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.3.0-intel-2015b.eb b/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.3.0-intel-2015b.eb
deleted file mode 100644
index e5eaecb750d..00000000000
--- a/easybuild/easyconfigs/__archive__/a/arpack-ng/arpack-ng-3.3.0-intel-2015b.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'arpack-ng'
-version = '3.3.0'
-
-homepage = 'http://forge.scilab.org/index.php/p/arpack-ng/'
-description = """ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'opt': True, 'pic': True, 'usempi': True}
-
-source_urls = ['https://github.com/opencollab/arpack-ng/archive/']
-sources = ['%(version)s.tar.gz']
-
-builddependencies = [('Autotools', '20150215', '', ('GNU', '4.9.3-2.25'))]
-
-preconfigopts = "sh bootstrap && "
-configopts = '--with-pic --with-blas="$LIBBLAS" --with-lapack="$LIBLAPACK"'
-
-sanity_check_paths = {
- 'files': ["lib/libarpack.a", "lib/libarpack.so"],
- 'dirs': []
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/a/astropy/astropy-1.0.6-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/a/astropy/astropy-1.0.6-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index bab7a31bcf1..00000000000
--- a/easybuild/easyconfigs/__archive__/a/astropy/astropy-1.0.6-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'astropy'
-version = '1.0.6'
-
-homepage = 'http://www.astropy.org/'
-description = """The Astropy Project is a community effort to develop
-a single core package for Astronomy in Python and foster interoperability
-between Python astronomy packages."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-python = 'Python'
-pyver = '2.7.3'
-versionsuffix = '-%s-%s' % (python, pyver)
-
-dependencies = [
- (python, pyver),
- ('setuptools', '18.4', versionsuffix),
- ('numpy', '1.7.1', versionsuffix),
-]
-
-pyshortver = '.'.join(pyver.split('.')[:2])
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['lib/python%s/site-packages' % pyshortver],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/a/attr/attr-2.4.47-GCC-4.6.3.eb b/easybuild/easyconfigs/__archive__/a/attr/attr-2.4.47-GCC-4.6.3.eb
deleted file mode 100644
index 8a4e822bba9..00000000000
--- a/easybuild/easyconfigs/__archive__/a/attr/attr-2.4.47-GCC-4.6.3.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'attr'
-version = '2.4.47'
-
-homepage = 'http://savannah.nongnu.org/projects/attr'
-description = """Commands for Manipulating Filesystem Extended Attributes"""
-
-toolchain = {'name': 'GCC', 'version': '4.6.3'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = ['attr-%(version)s.src.tar.gz']
-
-installopts = 'install-dev install-lib'
-
-sanity_check_paths = {
- 'files': ['bin/attr', 'bin/getfattr', 'bin/setfattr', 'include/attr/attributes.h', 'include/attr/error_context.h',
- 'include/attr/libattr.h', 'include/attr/xattr.h', 'lib/libattr.a', 'lib/libattr.%s' % SHLIB_EXT],
- 'dirs': ['share'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/BAMM/BAMM-2.5.0-foss-2016b.eb b/easybuild/easyconfigs/__archive__/b/BAMM/BAMM-2.5.0-foss-2016b.eb
deleted file mode 100644
index 7594f00931e..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BAMM/BAMM-2.5.0-foss-2016b.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-##
-# This is a contribution from Phoenix HPC Service, The University of Adelaide, Australia
-# Homepage: https://www.adelaide.edu.au/phoenix/
-#
-# Copyright:: Copyright 2014-2017 adelaide.edu.au/phoenix
-# Authors:: Robert Qiao , Exequiel Sepulveda
-# License:: GPL-v3.0
-#
-# Notes::
-##
-
-easyblock = 'CMakeMake'
-
-name = 'BAMM'
-version = '2.5.0'
-
-homepage = 'http://bamm-project.org/'
-description = """ BAMM is oriented entirely towards detecting and quantifying heterogeneity in evolutionary rates.
-It uses reversible jump Markov chain Monte Carlo to automatically explore a vast universe of candidate models of
-lineage diversification and trait evolution. """
-
-toolchain = {'name': 'foss', 'version': '2016b'}
-toolchainopts = {'usempi': True}
-
-source_urls = ['https://github.com/macroevolution/bamm/archive']
-sources = ['v%(version)s.tar.gz']
-checksums = ['526eef85ef011780ee21fe65cbc10ecc62efe54044102ae40bdef49c2985b4f4']
-
-builddependencies = [
- ('CMake', '3.7.2'),
-]
-
-sanity_check_paths = {
- 'files': ['bin/bamm'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BBMap/BBMap-35.82-foss-2015b-Java-1.8.0_66.eb b/easybuild/easyconfigs/__archive__/b/BBMap/BBMap-35.82-foss-2015b-Java-1.8.0_66.eb
deleted file mode 100644
index 938cb4bc7e4..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BBMap/BBMap-35.82-foss-2015b-Java-1.8.0_66.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-easyblock = 'MakeCp'
-
-name = 'BBMap'
-version = '35.82'
-
-homepage = 'https://sourceforge.net/projects/bbmap/'
-description = """BBMap short read aligner, and other bioinformatic tools."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(name)s_%(version)s.tar.gz']
-
-java = 'Java'
-javaver = '1.8.0_66'
-versionsuffix = '-%s-%s' % (java, javaver)
-dependencies = [(java, javaver, '', True)]
-
-prebuildopts = 'cd jni && '
-
-suff = {'Darwin': 'osx', 'Linux': 'linux'}[OS_TYPE]
-buildopts = "-f makefile.%s" % suff
-
-files_to_copy = ['*']
-
-sanity_check_paths = {
- 'files': ['bbmap.sh'],
- 'dirs': []
-}
-
-modextrapaths = {'PATH': ''}
-
-modloadmsg = "For improved speed, add 'usejni=t' to the command line of %(name)s tools which support the use of the"
-modloadmsg += " compiled jni C code.\n"
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BBMap/BBMap-35.82-foss-2015b-Java-1.8.0_74.eb b/easybuild/easyconfigs/__archive__/b/BBMap/BBMap-35.82-foss-2015b-Java-1.8.0_74.eb
deleted file mode 100644
index 83c91ab617b..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BBMap/BBMap-35.82-foss-2015b-Java-1.8.0_74.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-easyblock = 'MakeCp'
-
-name = 'BBMap'
-version = '35.82'
-
-homepage = 'https://sourceforge.net/projects/bbmap/'
-description = """BBMap short read aligner, and other bioinformatic tools."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(name)s_%(version)s.tar.gz']
-
-java = 'Java'
-javaver = '1.8.0_74'
-versionsuffix = '-%s-%s' % (java, javaver)
-dependencies = [(java, javaver, '', True)]
-
-prebuildopts = 'cd jni && '
-
-suff = {'Darwin': 'osx', 'Linux': 'linux'}[OS_TYPE]
-buildopts = "-f makefile.%s" % suff
-
-files_to_copy = ['*']
-
-sanity_check_paths = {
- 'files': ['bbmap.sh'],
- 'dirs': []
-}
-
-modextrapaths = {'PATH': ''}
-
-modloadmsg = "For improved speed, add 'usejni=t' to the command line of %(name)s tools which support the use of the"
-modloadmsg += " compiled jni C code.\n"
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BCFtools/BCFtools-1.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BCFtools/BCFtools-1.1-goolf-1.4.10.eb
deleted file mode 100644
index b404abc90b2..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BCFtools/BCFtools-1.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'ConfigureMake'
-
-name = 'BCFtools'
-version = '1.1'
-
-homepage = 'http://www.htslib.org/'
-description = """ Reading/writing BCF2/VCF/gVCF files and calling/filtering/summarising
- SNP and short indel sequence variants """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [('http://sourceforge.net/projects/samtools/files/samtools/%(version)s', 'download')]
-sources = [SOURCELOWER_TAR_BZ2]
-
-dependencies = [('zlib', '1.2.8')]
-
-parallel = 1
-
-skipsteps = ['configure']
-
-installopts = ' prefix=%(installdir)s'
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bcftools", "plot-vcfstats", "vcfutils.pl"]],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BCFtools/BCFtools-1.2-foss-2015a.eb b/easybuild/easyconfigs/__archive__/b/BCFtools/BCFtools-1.2-foss-2015a.eb
deleted file mode 100644
index 3ef62f1ae2b..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BCFtools/BCFtools-1.2-foss-2015a.eb
+++ /dev/null
@@ -1,40 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'BCFtools'
-version = '1.2'
-
-homepage = 'http://www.htslib.org/'
-description = """Samtools is a suite of programs for interacting with high-throughput sequencing data.
- BCFtools - Reading/writing BCF2/VCF/gVCF files and calling/filtering/summarising SNP and short indel sequence
- variants"""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_BZ2]
-source_urls = ['https://github.com/samtools/%(namelower)s/releases/download/%(version)s']
-
-patches = ['%(name)s-%(version)s_extHTSlib_Makefile.patch']
-
-dependencies = [
- ('HTSlib', '1.2.1'),
- ('zlib', '1.2.8'),
-]
-
-parallel = 1
-
-skipsteps = ['configure']
-
-installopts = ' prefix=%(installdir)s'
-
-postinstallcmds = [
- 'mkdir -p %(installdir)s/lib/plugins',
- 'cp -a plugins/*.so %(installdir)s/lib/plugins/.',
-]
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['bcftools', 'plot-vcfstats', 'vcfutils.pl']],
- 'dirs': ['lib/plugins'],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BCFtools/BCFtools-1.2-intel-2015a.eb b/easybuild/easyconfigs/__archive__/b/BCFtools/BCFtools-1.2-intel-2015a.eb
deleted file mode 100644
index 41baab6d42d..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BCFtools/BCFtools-1.2-intel-2015a.eb
+++ /dev/null
@@ -1,40 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'BCFtools'
-version = '1.2'
-
-homepage = 'http://www.htslib.org/'
-description = """Samtools is a suite of programs for interacting with high-throughput sequencing data.
- BCFtools - Reading/writing BCF2/VCF/gVCF files and calling/filtering/summarising SNP and short indel sequence
- variants"""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_BZ2]
-source_urls = ['https://github.com/samtools/%(namelower)s/releases/download/%(version)s']
-
-patches = ['%(name)s-%(version)s_extHTSlib_Makefile.patch']
-
-dependencies = [
- ('HTSlib', '1.2.1'),
- ('zlib', '1.2.8'),
-]
-
-parallel = 1
-
-skipsteps = ['configure']
-
-installopts = ' prefix=%(installdir)s'
-
-postinstallcmds = [
- 'mkdir -p %(installdir)s/lib/plugins',
- 'cp -a plugins/*.so %(installdir)s/lib/plugins/.',
-]
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['bcftools', 'plot-vcfstats', 'vcfutils.pl']],
- 'dirs': ['lib/plugins'],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BCFtools/BCFtools-1.3.1-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/b/BCFtools/BCFtools-1.3.1-goolf-1.7.20.eb
deleted file mode 100644
index e0f7223e0f1..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BCFtools/BCFtools-1.3.1-goolf-1.7.20.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-easyblock = 'MakeCp'
-
-name = 'BCFtools'
-version = '1.3.1'
-
-homepage = 'http://www.htslib.org/'
-description = """BCFtools is a set of utilities that manipulate variant calls in the
- Variant Call Format (VCF) and its binary counterpart BCF"""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = ['https://github.com/samtools/bcftools/releases/download/%(version)s/']
-sources = [SOURCELOWER_TAR_BZ2]
-
-dependencies = [
- ('zlib', '1.2.8'),
- ('GSL', '1.16'),
-]
-
-buildopts = " USE_GPL=1 GSL_LIBS='-lgsl -lgslcblas'"
-
-runtest = 'test'
-
-files_to_copy = [(["bcftools", "plot-vcfstats", "vcfutils.pl"], "bin"),
- "doc", "plugins", "test", "LICENSE", "README", "AUTHORS"]
-
-sanity_check_paths = {
- 'files': ["bin/bcftools"],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.17.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.17.0-goolf-1.4.10.eb
deleted file mode 100644
index 0c8d3ca6a1c..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.17.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'MakeCp'
-
-name = 'BEDTools'
-version = '2.17.0'
-
-homepage = 'http://code.google.com/p/bedtools/'
-description = """The BEDTools utilities allow one to address common genomics tasks such as finding feature overlaps
- and computing coverage. The utilities are largely based on four widely-used file formats: BED, GFF/GTF, VCF,
- and SAM/BAM."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ["http://bedtools.googlecode.com/files/"]
-sources = ['%(name)s.v%(version)s.tar.gz']
-
-buildopts = 'CXX="$CXX"'
-
-files_to_copy = ['bin', 'docs', 'data', 'genomes', 'scripts', 'test', 'README.rst']
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['bedtools', 'pairToBed', 'mergeBed', 'bedToBam', 'fastaFromBed']],
- 'dirs': ['docs', 'data', 'genomes', 'scripts', 'test'],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.18.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.18.1-goolf-1.4.10.eb
deleted file mode 100644
index 6e80b62c0a0..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.18.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics (SIB)
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = 'BEDTools'
-version = '2.18.1'
-
-homepage = "https://github.com/arq5x/bedtools2"
-description = """The BEDTools utilities allow one to address common genomics tasks such as finding feature overlaps
- and computing coverage. The utilities are largely based on four widely-used file formats: BED, GFF/GTF, VCF,
- and SAM/BAM."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['https://github.com/arq5x/bedtools2/archive/']
-sources = ['v%(version)s.tar.gz']
-checksums = ['1bb488e70ed0caef9deeac905ba8795133bb2e4f2cfe89e31eb774c6cd5240fd']
-
-dependencies = [('zlib', '1.2.7')]
-
-buildopts = 'CXX="$CXX"'
-
-files_to_copy = ['bin', 'docs', 'data', 'genomes', 'scripts', 'test', 'README.rst']
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['bedtools', 'pairToBed', 'mergeBed', 'bedToBam', 'fastaFromBed']],
- 'dirs': ['docs', 'data', 'genomes', 'scripts', 'test'],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.19.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.19.1-goolf-1.4.10.eb
deleted file mode 100644
index 78d4116fda2..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.19.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-# Author: Pablo Escobar Lopez; Wiktor Jurkowski
-# Swiss Institute of Bioinformatics (SIB), Biozentrum - University of Basel
-# Babraham Institute, UK
-
-easyblock = 'MakeCp'
-
-name = 'BEDTools'
-version = '2.19.1'
-
-homepage = "https://github.com/arq5x/bedtools2"
-description = """The BEDTools utilities allow one to address common genomics tasks such as finding feature overlaps
- and computing coverage. The utilities are largely based on four widely-used file formats: BED, GFF/GTF, VCF,
- and SAM/BAM."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['https://github.com/arq5x/bedtools2/archive/']
-sources = ['v%(version)s.tar.gz']
-checksums = ['c7df72aa54af8dd5b50837c53432070bcb0b82d480c0e791163e1a00b66ced1e']
-
-dependencies = [('zlib', '1.2.7')]
-
-files_to_copy = ['bin', 'docs', 'data', 'genomes', 'scripts', 'test', 'README.md']
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['bedtools', 'pairToBed', 'mergeBed', 'bedToBam', 'fastaFromBed']],
- 'dirs': ['docs', 'data', 'genomes', 'scripts', 'test'],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.22.0-intel-2014b.eb b/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.22.0-intel-2014b.eb
deleted file mode 100644
index b82bb4f10fc..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.22.0-intel-2014b.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics (SIB)
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = 'BEDTools'
-version = '2.22.0'
-
-homepage = "https://github.com/arq5x/bedtools2"
-description = """The BEDTools utilities allow one to address common genomics tasks such as finding feature overlaps
- and computing coverage. The utilities are largely based on four widely-used file formats: BED, GFF/GTF, VCF,
- and SAM/BAM."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = ['https://github.com/arq5x/bedtools2/archive/']
-sources = ['v%(version)s.tar.gz']
-checksums = ['d45d37ecfa3f4a5d75dede4df59cd9666d62a34cb38b214741a0adda06075899']
-
-dependencies = [('zlib', '1.2.7')]
-
-buildopts = 'CXX="$CXX"'
-
-files_to_copy = ['bin', 'docs', 'data', 'genomes', 'scripts', 'test', 'README.md']
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['bedtools', 'pairToBed', 'mergeBed', 'bedToBam', 'fastaFromBed']],
- 'dirs': ['docs', 'data', 'genomes', 'scripts', 'test'],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.23.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.23.0-goolf-1.4.10.eb
deleted file mode 100644
index 77891b445a3..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.23.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,35 +0,0 @@
-# Author: Maxime Schmitt, University of Luxembourg
-#
-# Based on the work of: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics (SIB)
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = 'BEDTools'
-version = '2.23.0'
-
-homepage = "https://github.com/arq5x/bedtools2"
-description = """The BEDTools utilities allow one to address common genomics tasks such as finding feature overlaps
- and computing coverage. The utilities are largely based on four widely-used file formats: BED, GFF/GTF, VCF,
- and SAM/BAM."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-# https://github.com/arq5x/bedtools2/releases/download/v2.23.0/bedtools-2.23.0.tar.gz
-source_urls = ['https://github.com/arq5x/bedtools2/releases/download/v%(version)s/']
-sources = ['bedtools-%(version)s.tar.gz']
-checksums = ['3386b2989550dde014607cad312e8fecbdc942eacbb1c60c5cdac832e3eae251']
-
-dependencies = [('zlib', '1.2.7')]
-
-buildopts = 'CXX="$CXX"'
-
-files_to_copy = ["bin", "docs", "data", "genomes", "scripts", "test"]
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['bedtools', 'pairToBed', 'mergeBed', 'bedToBam', 'fastaFromBed']],
- 'dirs': files_to_copy,
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.23.0-intel-2015a.eb b/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.23.0-intel-2015a.eb
deleted file mode 100644
index 3bf57e28bb5..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.23.0-intel-2015a.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics (SIB)
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = 'BEDTools'
-version = '2.23.0'
-
-homepage = "https://github.com/arq5x/bedtools2"
-description = """The BEDTools utilities allow one to address common genomics tasks such as finding feature overlaps
- and computing coverage. The utilities are largely based on four widely-used file formats: BED, GFF/GTF, VCF,
- and SAM/BAM."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['https://github.com/arq5x/bedtools2/archive/']
-sources = ['v%(version)s.tar.gz']
-checksums = ['9dacaa561d11ce9835d1d51e5aeb092bcbe117b7119663ec9a671abac6a36056']
-
-dependencies = [('zlib', '1.2.8')]
-
-buildopts = 'CXX="$CXX"'
-
-files_to_copy = ['bin', 'docs', 'data', 'genomes', 'scripts', 'test', 'tutorial', 'README.md']
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['bedtools', 'pairToBed', 'mergeBed', 'bedToBam', 'fastaFromBed']],
- 'dirs': ['docs', 'data', 'genomes', 'scripts', 'test', 'tutorial'],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.25.0-foss-2015a.eb b/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.25.0-foss-2015a.eb
deleted file mode 100644
index 3155efed5c6..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.25.0-foss-2015a.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# Author: Maxime Schmitt, University of Luxembourg
-# Author: Adam Huffman, The Francis Crick Institute
-#
-# Based on the work of: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics (SIB)
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = 'BEDTools'
-version = '2.25.0'
-
-homepage = "https://github.com/arq5x/bedtools2"
-description = """The BEDTools utilities allow one to address common genomics tasks such as finding feature overlaps
- and computing coverage. The utilities are largely based on four widely-used file formats: BED, GFF/GTF, VCF,
- and SAM/BAM."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-# https://github.com/arq5x/bedtools2/releases/download/v2.25.0/bedtools-2.25.0.tar.gz
-source_urls = ['https://github.com/arq5x/bedtools2/releases/download/v%(version)s/']
-sources = ['bedtools-%(version)s.tar.gz']
-checksums = ['d737ca42e7df76c5455d3e6e0562cdcb62336830eaad290fd4133a328a1ddacc']
-
-dependencies = [('zlib', '1.2.8')]
-
-buildopts = 'CXX="$CXX"'
-
-files_to_copy = ["bin", "docs", "data", "genomes", "scripts", "test"]
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['bedtools', 'pairToBed', 'mergeBed', 'bedToBam', 'fastaFromBed']],
- 'dirs': files_to_copy,
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.25.0-foss-2015b.eb b/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.25.0-foss-2015b.eb
deleted file mode 100644
index 426d886c135..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.25.0-foss-2015b.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# Author: Maxime Schmitt, University of Luxembourg
-# Author: Adam Huffman, The Francis Crick Institute
-#
-# Based on the work of: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics (SIB)
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = 'BEDTools'
-version = '2.25.0'
-
-homepage = "https://github.com/arq5x/bedtools2"
-description = """The BEDTools utilities allow one to address common genomics tasks such as finding feature overlaps
- and computing coverage. The utilities are largely based on four widely-used file formats: BED, GFF/GTF, VCF,
- and SAM/BAM."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-# https://github.com/arq5x/bedtools2/releases/download/v2.25.0/bedtools-2.25.0.tar.gz
-source_urls = ['https://github.com/arq5x/bedtools2/releases/download/v%(version)s/']
-sources = ['bedtools-%(version)s.tar.gz']
-checksums = ['d737ca42e7df76c5455d3e6e0562cdcb62336830eaad290fd4133a328a1ddacc']
-
-dependencies = [('zlib', '1.2.8')]
-
-buildopts = 'CXX="$CXX"'
-
-files_to_copy = ["bin", "docs", "data", "genomes", "scripts", "test"]
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['bedtools', 'pairToBed', 'mergeBed', 'bedToBam', 'fastaFromBed']],
- 'dirs': files_to_copy,
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.25.0-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.25.0-goolf-1.7.20.eb
deleted file mode 100644
index c6a55ae481b..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.25.0-goolf-1.7.20.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# Author: Maxime Schmitt, University of Luxembourg
-# Author: Adam Huffman, The Francis Crick Institute
-#
-# Based on the work of: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics (SIB)
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = 'BEDTools'
-version = '2.25.0'
-
-homepage = "https://github.com/arq5x/bedtools2"
-description = """The BEDTools utilities allow one to address common genomics tasks such as finding feature overlaps
- and computing coverage. The utilities are largely based on four widely-used file formats: BED, GFF/GTF, VCF,
- and SAM/BAM."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-# https://github.com/arq5x/bedtools2/releases/download/v2.25.0/bedtools-2.25.0.tar.gz
-source_urls = ['https://github.com/arq5x/bedtools2/releases/download/v%(version)s/']
-sources = ['bedtools-%(version)s.tar.gz']
-checksums = ['d737ca42e7df76c5455d3e6e0562cdcb62336830eaad290fd4133a328a1ddacc']
-
-dependencies = [('zlib', '1.2.8')]
-
-buildopts = 'CXX="$CXX"'
-
-files_to_copy = ["bin", "docs", "data", "genomes", "scripts", "test"]
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['bedtools', 'pairToBed', 'mergeBed', 'bedToBam', 'fastaFromBed']],
- 'dirs': files_to_copy,
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.26.0-foss-2015a.eb b/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.26.0-foss-2015a.eb
deleted file mode 100644
index 94cb84a43ef..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.26.0-foss-2015a.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# Author: Maxime Schmitt, University of Luxembourg
-# Author: Adam Huffman, The Francis Crick Institute
-#
-# Based on the work of: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics (SIB)
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = 'BEDTools'
-version = '2.26.0'
-
-homepage = "https://github.com/arq5x/bedtools2"
-description = """The BEDTools utilities allow one to address common genomics tasks such as finding feature overlaps
- and computing coverage. The utilities are largely based on four widely-used file formats: BED, GFF/GTF, VCF,
- and SAM/BAM."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-# https://github.com/arq5x/bedtools2/releases/download/v2.26.0/bedtools-2.26.0.tar.gz
-source_urls = ['https://github.com/arq5x/bedtools2/releases/download/v%(version)s/']
-sources = ['bedtools-%(version)s.tar.gz']
-checksums = ['65f32f32cbf1b91ba42854b40c604aa6a16c7d3b3ec110d6acf438eb22df0a4a']
-
-dependencies = [('zlib', '1.2.8')]
-
-buildopts = 'CXX="$CXX"'
-
-files_to_copy = ["bin", "docs", "data", "genomes", "scripts", "test"]
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['bedtools', 'pairToBed', 'mergeBed', 'bedToBam', 'fastaFromBed']],
- 'dirs': files_to_copy,
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.26.0-foss-2015b.eb b/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.26.0-foss-2015b.eb
deleted file mode 100644
index d926a30d1bb..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.26.0-foss-2015b.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# Author: Maxime Schmitt, University of Luxembourg
-# Author: Adam Huffman, The Francis Crick Institute
-#
-# Based on the work of: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics (SIB)
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = 'BEDTools'
-version = '2.26.0'
-
-homepage = "https://github.com/arq5x/bedtools2"
-description = """The BEDTools utilities allow one to address common genomics tasks such as finding feature overlaps
- and computing coverage. The utilities are largely based on four widely-used file formats: BED, GFF/GTF, VCF,
- and SAM/BAM."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-# https://github.com/arq5x/bedtools2/releases/download/v2.26.0/bedtools-2.26.0.tar.gz
-source_urls = ['https://github.com/arq5x/bedtools2/releases/download/v%(version)s/']
-sources = ['bedtools-%(version)s.tar.gz']
-checksums = ['65f32f32cbf1b91ba42854b40c604aa6a16c7d3b3ec110d6acf438eb22df0a4a']
-
-dependencies = [('zlib', '1.2.8')]
-
-buildopts = 'CXX="$CXX"'
-
-files_to_copy = ["bin", "docs", "data", "genomes", "scripts", "test"]
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['bedtools', 'pairToBed', 'mergeBed', 'bedToBam', 'fastaFromBed']],
- 'dirs': files_to_copy,
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.26.0-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.26.0-goolf-1.7.20.eb
deleted file mode 100644
index 9e6e1331e05..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BEDTools/BEDTools-2.26.0-goolf-1.7.20.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# Author: Maxime Schmitt, University of Luxembourg
-# Author: Adam Huffman, The Francis Crick Institute
-#
-# Based on the work of: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics (SIB)
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = 'BEDTools'
-version = '2.26.0'
-
-homepage = "https://github.com/arq5x/bedtools2"
-description = """The BEDTools utilities allow one to address common genomics tasks such as finding feature overlaps
- and computing coverage. The utilities are largely based on four widely-used file formats: BED, GFF/GTF, VCF,
- and SAM/BAM."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-# https://github.com/arq5x/bedtools2/releases/download/v2.26.0/bedtools-2.26.0.tar.gz
-source_urls = ['https://github.com/arq5x/bedtools2/releases/download/v%(version)s/']
-sources = ['bedtools-%(version)s.tar.gz']
-checksums = ['65f32f32cbf1b91ba42854b40c604aa6a16c7d3b3ec110d6acf438eb22df0a4a']
-
-dependencies = [('zlib', '1.2.8')]
-
-buildopts = 'CXX="$CXX"'
-
-files_to_copy = ["bin", "docs", "data", "genomes", "scripts", "test"]
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['bedtools', 'pairToBed', 'mergeBed', 'bedToBam', 'fastaFromBed']],
- 'dirs': files_to_copy,
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BEEF/BEEF-0.1.1-intel-2015a.eb b/easybuild/easyconfigs/__archive__/b/BEEF/BEEF-0.1.1-intel-2015a.eb
deleted file mode 100644
index 253cb773a39..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BEEF/BEEF-0.1.1-intel-2015a.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'BEEF'
-version = '0.1.1'
-
-homepage = 'http://suncat.stanford.edu/facility/software/functional'
-description = """BEEF is a library-based implementation of the Bayesian
-Error Estimation Functional, suitable for linking against by Fortran-
-or C-based DFT codes. A description of BEEF can be found at
-http://dx.doi.org/10.1103/PhysRevB.85.235149."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'openmp': False, 'usempi': False}
-
-source_urls = ['https://confluence.slac.stanford.edu/download/attachments/146704476']
-sources = ['libbeef-%(version)s.tar.gz']
-
-configopts = 'CC="$CC"'
-
-sanity_check_paths = {
- 'files': ['bin/bee', 'lib/libbeef.a'],
- 'dirs': [],
-}
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/b/BEEF/BEEF-0.1.1-r16-intel-2015a.eb b/easybuild/easyconfigs/__archive__/b/BEEF/BEEF-0.1.1-r16-intel-2015a.eb
deleted file mode 100644
index ffdd4549c86..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BEEF/BEEF-0.1.1-r16-intel-2015a.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Benjamin P. Roberts
-# New Zealand eScience Infrastructure
-# The University of Auckland, Auckland, New Zealand
-
-easyblock = 'ConfigureMake'
-
-name = 'BEEF'
-version = '0.1.1-r16'
-
-homepage = 'http://suncat.stanford.edu/facility/software/functional'
-description = """BEEF is a library-based implementation of the Bayesian
-Error Estimation Functional, suitable for linking against by Fortran-
-or C-based DFT codes. A description of BEEF can be found at
-http://dx.doi.org/10.1103/PhysRevB.85.235149."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'openmp': False, 'usempi': False}
-
-# To make a source tarball from the SVN repository:
-# 1. svn co -r 16 svn://suncatls1.slac.stanford.edu/beef
-# 2. tar --exclude \.svn -cjvf beef-0.1.1-r16.tar.bz2 beef/trunk
-sources = [SOURCELOWER_TAR_BZ2]
-
-configopts = 'CC="$CC"'
-
-sanity_check_paths = {
- 'files': ['bin/bee', 'lib/libbeef.a'],
- 'dirs': [],
-}
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/b/BFAST/BFAST-0.7.0a-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BFAST/BFAST-0.7.0a-goolf-1.4.10.eb
deleted file mode 100644
index c18f95594e4..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BFAST/BFAST-0.7.0a-goolf-1.4.10.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'BFAST'
-version = '0.7.0a'
-
-homepage = 'http://bfast.sourceforge.net/'
-description = """BFAST facilitates the fast and accurate mapping of short reads to reference sequences.
- Some advantages of BFAST include:
- 1) Speed: enables billions of short reads to be mapped quickly.
- 2) Accuracy: A priori probabilities for mapping reads with defined set of variants.
- 3) An easy way to measurably tune accuracy at the expense of speed."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-verdir = ''.join(char for char in version if not char.isalpha())
-source_urls = ['http://sourceforge.net/projects/bfast/files/bfast/%s/' % verdir, 'download']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('bzip2', '1.0.6')]
-
-sanity_check_paths = {
- 'files': ["bin/bfast"],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BFAST/BFAST-0.7.0a-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/b/BFAST/BFAST-0.7.0a-goolf-1.7.20.eb
deleted file mode 100644
index f6de18a8058..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BFAST/BFAST-0.7.0a-goolf-1.7.20.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'BFAST'
-version = '0.7.0a'
-
-homepage = 'http://bfast.sourceforge.net/'
-description = """BFAST facilitates the fast and accurate mapping of short reads to reference sequences.
- Some advantages of BFAST include:
- 1) Speed: enables billions of short reads to be mapped quickly.
- 2) Accuracy: A priori probabilities for mapping reads with defined set of variants.
- 3) An easy way to measurably tune accuracy at the expense of speed."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-verdir = ''.join(char for char in version if not char.isalpha())
-source_urls = ['http://sourceforge.net/projects/bfast/files/bfast/%s/' % verdir, 'download']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('bzip2', '1.0.6')]
-
-sanity_check_paths = {
- 'files': ["bin/bfast"],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BFAST/BFAST-0.7.0a-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/b/BFAST/BFAST-0.7.0a-ictce-5.3.0.eb
deleted file mode 100644
index 14232999d6a..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BFAST/BFAST-0.7.0a-ictce-5.3.0.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'BFAST'
-version = '0.7.0a'
-
-homepage = 'http://bfast.sourceforge.net/'
-description = """BFAST facilitates the fast and accurate mapping of short reads to reference sequences.
- Some advantages of BFAST include:
- 1) Speed: enables billions of short reads to be mapped quickly.
- 2) Accuracy: A priori probabilities for mapping reads with defined set of variants.
- 3) An easy way to measurably tune accuracy at the expense of speed."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-verdir = ''.join(char for char in version if not char.isalpha())
-source_urls = ['http://sourceforge.net/projects/bfast/files/bfast/%s/' % verdir, 'download']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('bzip2', '1.0.6')]
-
-sanity_check_paths = {
- 'files': ["bin/bfast"],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BH/BH-1.60.0-1-foss-2015b-R-3.2.3.eb b/easybuild/easyconfigs/__archive__/b/BH/BH-1.60.0-1-foss-2015b-R-3.2.3.eb
deleted file mode 100644
index c0f5cd84bc9..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BH/BH-1.60.0-1-foss-2015b-R-3.2.3.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Author: Adam Huffman
-# The Francis Crick Institute
-
-easyblock = 'RPackage'
-
-name = 'BH'
-version = '1.60.0-1'
-
-homepage = 'http://cran.r-project.org/web/packages/%(name)s'
-description = """BH: Boost C++ Header Files for R"""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = [
- 'http://cran.r-project.org/src/contrib/',
- 'http://cran.r-project.org/src/contrib/Archive/$(name)s/',
-]
-sources = ['%(name)s_%(version)s.tar.gz']
-
-r = 'R'
-rver = '3.2.3'
-versionsuffix = '-%s-%s' % (r, rver)
-
-dependencies = [
- (r, rver),
- ('Boost', '1.60.0'),
-]
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['BH'],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/BLASR/BLASR-2.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BLASR/BLASR-2.1-goolf-1.4.10.eb
deleted file mode 100644
index a65d17b8130..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BLASR/BLASR-2.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,40 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'ConfigureMake'
-
-name = 'BLASR'
-version = '2.1'
-
-homepage = 'https://github.com/PacificBiosciences/blasr'
-description = """ BLASR (Basic Local Alignment with Successive Refinement) rapidly maps
- reads to genomes by finding the highest scoring local alignment or set of local alignments
- between the read and the genome. Optimized for PacBio's extraordinarily long reads and
- taking advantage of rich quality values, BLASR maps reads rapidly with high accuracy. """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['https://github.com/PacificBiosciences/blasr/archive/']
-sources = ['smrtanalysis-%(version)s.tar.gz']
-
-dependencies = [('HDF5', '1.8.11')]
-
-skipsteps = ['configure']
-
-prebuildopts = 'export HDF5LIBDIR=$EBROOTHDF5/lib &&'
-prebuildopts += 'export HDF5INCLUDEDIR=$EBROOTHDF5/include &&'
-
-# the STATIC= option is a workaround. Check details here:
-# https://github.com/PacificBiosciences/blasr/issues/4#issuecomment-44142749
-buildopts = ' STATIC= '
-
-installopts = ' INSTALL_BIN_DIR=%(installdir)s/bin'
-
-sanity_check_paths = {
- 'files': ["bin/blasr"],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.27-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.27-goolf-1.4.10.eb
deleted file mode 100644
index 94be2abbf8f..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.27-goolf-1.4.10.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'BLAST+'
-version = '2.2.27'
-
-homepage = 'http://blast.ncbi.nlm.nih.gov/'
-description = """Basic Local Alignment Search Tool, or BLAST, is an algorithm
- for comparing primary biological sequence information, such as the amino-acid
- sequences of different proteins or the nucleotides of DNA sequences."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = ['ncbi-blast-%(version)s+-src.tar.gz']
-source_urls = ['ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/%(version)s/']
-
-dependencies = [('Boost', '1.51.0')]
-
-configopts = '--with-boost=$EBROOTBOOST --with-64 --with-bin-release --without-debug --with-mt'
-
-sanity_check_paths = {
- 'files': ["bin/blastn", "bin/blastp", "bin/blastx"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.28-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.28-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index b6365defe30..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.28-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos , Kenneth Hoste (UGent)
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'BLAST+'
-version = '2.2.28'
-versionsuffix = '-Python-2.7.3'
-
-homepage = 'http://blast.ncbi.nlm.nih.gov/'
-description = """Basic Local Alignment Search Tool, or BLAST, is an algorithm
- for comparing primary biological sequence information, such as the amino-acid
- sequences of different proteins or the nucleotides of DNA sequences."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = ['ncbi-blast-%(version)s+-src.tar.gz']
-source_urls = ['ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/%(version)s/']
-
-dependencies = [('Boost', '1.51.0', '-Python-2.7.3')]
-
-configopts = '--with-boost=$EBROOTBOOST --with-64 --with-bin-release --without-debug --with-mt'
-
-sanity_check_paths = {
- 'files': ["bin/blastn", "bin/blastp", "bin/blastx"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.28-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.28-goolf-1.4.10.eb
deleted file mode 100644
index 4d988cb0cd5..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.28-goolf-1.4.10.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos , Kenneth Hoste (UGent)
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'BLAST+'
-version = '2.2.28'
-
-homepage = 'http://blast.ncbi.nlm.nih.gov/'
-description = """Basic Local Alignment Search Tool, or BLAST, is an algorithm
- for comparing primary biological sequence information, such as the amino-acid
- sequences of different proteins or the nucleotides of DNA sequences."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = ['ncbi-blast-%(version)s+-src.tar.gz']
-source_urls = ['ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/%(version)s/']
-
-dependencies = [('Boost', '1.51.0')]
-
-configopts = '--with-boost=$EBROOTBOOST --with-64 --with-bin-release --without-debug --with-mt'
-
-sanity_check_paths = {
- 'files': ["bin/blastn", "bin/blastp", "bin/blastx"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.28-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.28-ictce-5.3.0-Python-2.7.3.eb
deleted file mode 100644
index 2fb0a6aeec9..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.28-ictce-5.3.0-Python-2.7.3.eb
+++ /dev/null
@@ -1,40 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos , Kenneth Hoste (UGent)
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'BLAST+'
-version = '2.2.28'
-versionsuffix = '-Python-2.7.3'
-
-homepage = 'http://blast.ncbi.nlm.nih.gov/'
-description = """Basic Local Alignment Search Tool, or BLAST, is an algorithm
- for comparing primary biological sequence information, such as the amino-acid
- sequences of different proteins or the nucleotides of DNA sequences."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sources = ['ncbi-blast-%(version)s+-src.tar.gz']
-source_urls = ['ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/%(version)s/']
-
-patches = ['%(name)s-%(version)s_ictce-fixes.patch']
-
-dependencies = [('Boost', '1.51.0', '-Python-2.7.3')]
-
-configopts = '--with-boost=$EBROOTBOOST --with-64 --with-bin-release --without-debug --with-mt'
-
-sanity_check_paths = {
- 'files': ["bin/blastn", "bin/blastp", "bin/blastx"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.28-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.28-ictce-5.3.0.eb
deleted file mode 100644
index c4c54549a49..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.28-ictce-5.3.0.eb
+++ /dev/null
@@ -1,39 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos , Kenneth Hoste (UGent)
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'BLAST+'
-version = '2.2.28'
-
-homepage = 'http://blast.ncbi.nlm.nih.gov/'
-description = """Basic Local Alignment Search Tool, or BLAST, is an algorithm
- for comparing primary biological sequence information, such as the amino-acid
- sequences of different proteins or the nucleotides of DNA sequences."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sources = ['ncbi-blast-%(version)s+-src.tar.gz']
-source_urls = ['ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/%(version)s/']
-
-patches = ['%(name)s-%(version)s_ictce-fixes.patch']
-
-dependencies = [('Boost', '1.51.0')]
-
-configopts = '--with-boost=$EBROOTBOOST --with-64 --with-bin-release --without-debug --with-mt'
-
-sanity_check_paths = {
- 'files': ["bin/blastn", "bin/blastp", "bin/blastx"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.30-foss-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.30-foss-2015a-Python-2.7.9.eb
deleted file mode 100644
index 3c11c9414b2..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.30-foss-2015a-Python-2.7.9.eb
+++ /dev/null
@@ -1,40 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2013 University of Luxembourg/Luxembourg Centre for Systems Biomedicine
-# Authors:: Fotis Georgatos , Kenneth Hoste (UGent)
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'BLAST+'
-version = "2.2.30"
-versionsuffix = '-Python-2.7.9'
-
-homepage = 'http://blast.ncbi.nlm.nih.gov/'
-description = """Basic Local Alignment Search Tool, or BLAST, is an algorithm
- for comparing primary biological sequence information, such as the amino-acid
- sequences of different proteins or the nucleotides of DNA sequences."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-sources = ['ncbi-blast-%(version)s+-src.tar.gz']
-source_urls = ['http://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/%(version)s/']
-
-patches = ['%(name)s-%(version)s_basename-fixes.patch']
-
-dependencies = [('Boost', '1.57.0', versionsuffix)]
-
-configopts = '--with-boost=$EBROOTBOOST --with-64 --with-bin-release --without-debug --with-mt'
-
-sanity_check_paths = {
- 'files': ["bin/blastn", "bin/blastp", "bin/blastx"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.30-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.30-goolf-1.4.10.eb
deleted file mode 100644
index 60d5401e1ef..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.30-goolf-1.4.10.eb
+++ /dev/null
@@ -1,39 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2013 University of Luxembourg/Luxembourg Centre for Systems Biomedicine
-# Authors:: Fotis Georgatos , Kenneth Hoste (UGent)
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'BLAST+'
-version = "2.2.30"
-
-homepage = 'http://blast.ncbi.nlm.nih.gov/'
-description = """Basic Local Alignment Search Tool, or BLAST, is an algorithm
- for comparing primary biological sequence information, such as the amino-acid
- sequences of different proteins or the nucleotides of DNA sequences."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = ['ncbi-blast-%(version)s+-src.tar.gz']
-source_urls = ['http://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/%(version)s/']
-
-patches = ['%(name)s-%(version)s_basename-fixes.patch']
-
-dependencies = [('Boost', '1.57.0')]
-
-configopts = '--with-boost=$EBROOTBOOST --with-64 --with-bin-release --without-debug --with-mt'
-
-sanity_check_paths = {
- 'files': ["bin/blastn", "bin/blastp", "bin/blastx"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.30-intel-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.30-intel-2015a-Python-2.7.9.eb
deleted file mode 100644
index 6c427e6894a..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.30-intel-2015a-Python-2.7.9.eb
+++ /dev/null
@@ -1,44 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos , Kenneth Hoste (UGent)
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'BLAST+'
-version = '2.2.30'
-versionsuffix = '-Python-2.7.9'
-
-homepage = 'http://blast.ncbi.nlm.nih.gov/'
-description = """Basic Local Alignment Search Tool, or BLAST, is an algorithm
- for comparing primary biological sequence information, such as the amino-acid
- sequences of different proteins or the nucleotides of DNA sequences."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-# eg. ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.30/ncbi-blast-2.2.30+-src.tar.gz
-sources = ['ncbi-blast-%(version)s+-src.tar.gz']
-source_urls = ['http://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/%(version)s/']
-
-patches = [
- '%(name)s-%(version)s_ictce-fixes.patch',
- '%(name)s-%(version)s_basename-fixes.patch'
-]
-
-dependencies = [('Boost', '1.57.0', versionsuffix)]
-
-configopts = '--with-boost=$EBROOTBOOST --with-64 --with-bin-release --without-debug --with-mt'
-
-sanity_check_paths = {
- 'files': ["bin/blastn", "bin/blastp", "bin/blastx"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.31-foss-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.31-foss-2015b-Python-2.7.10.eb
deleted file mode 100644
index a02e6a5b24c..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.31-foss-2015b-Python-2.7.10.eb
+++ /dev/null
@@ -1,40 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos , Kenneth Hoste (UGent)
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'BLAST+'
-version = '2.2.31'
-versionsuffix = '-Python-2.7.10'
-
-homepage = 'http://blast.ncbi.nlm.nih.gov/'
-description = """Basic Local Alignment Search Tool, or BLAST, is an algorithm
- for comparing primary biological sequence information, such as the amino-acid
- sequences of different proteins or the nucleotides of DNA sequences."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-sources = ['ncbi-blast-%(version)s+-src.tar.gz']
-source_urls = ['http://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/%(version)s/']
-
-patches = ['%(name)s-2.2.30_basename-fixes.patch']
-
-dependencies = [('Boost', '1.58.0', versionsuffix)]
-
-configopts = '--with-boost=$EBROOTBOOST --with-64 --with-bin-release --without-debug --with-mt'
-
-sanity_check_paths = {
- 'files': ["bin/blastn", "bin/blastp", "bin/blastx"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.31-intel-2015a-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.31-intel-2015a-Python-2.7.10.eb
deleted file mode 100644
index 85d9b0cc0d0..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.31-intel-2015a-Python-2.7.10.eb
+++ /dev/null
@@ -1,43 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos , Kenneth Hoste (UGent)
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'BLAST+'
-version = '2.2.31'
-versionsuffix = '-Python-2.7.10'
-
-homepage = 'http://blast.ncbi.nlm.nih.gov/'
-description = """Basic Local Alignment Search Tool, or BLAST, is an algorithm
- for comparing primary biological sequence information, such as the amino-acid
- sequences of different proteins or the nucleotides of DNA sequences."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-sources = ['ncbi-blast-%(version)s+-src.tar.gz']
-source_urls = ['http://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/%(version)s/']
-
-patches = [
- '%(name)s-2.2.30_ictce-fixes.patch',
- '%(name)s-2.2.30_basename-fixes.patch'
-]
-
-dependencies = [('Boost', '1.58.0', versionsuffix)]
-
-configopts = '--with-boost=$EBROOTBOOST --with-64 --with-bin-release --without-debug --with-mt'
-
-sanity_check_paths = {
- 'files': ["bin/blastn", "bin/blastp", "bin/blastx"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.31-intel-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.31-intel-2015b-Python-2.7.10.eb
deleted file mode 100644
index 6dc430a1232..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BLAST+/BLAST+-2.2.31-intel-2015b-Python-2.7.10.eb
+++ /dev/null
@@ -1,43 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos , Kenneth Hoste (UGent)
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'BLAST+'
-version = '2.2.31'
-versionsuffix = '-Python-2.7.10'
-
-homepage = 'http://blast.ncbi.nlm.nih.gov/'
-description = """Basic Local Alignment Search Tool, or BLAST, is an algorithm
- for comparing primary biological sequence information, such as the amino-acid
- sequences of different proteins or the nucleotides of DNA sequences."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-sources = ['ncbi-blast-%(version)s+-src.tar.gz']
-source_urls = ['http://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/%(version)s/']
-
-patches = [
- '%(name)s-2.2.30_ictce-fixes.patch',
- '%(name)s-2.2.30_basename-fixes.patch'
-]
-
-dependencies = [('Boost', '1.58.0', versionsuffix)]
-
-configopts = '--with-boost=$EBROOTBOOST --with-64 --with-bin-release --without-debug --with-mt'
-
-sanity_check_paths = {
- 'files': ["bin/blastn", "bin/blastp", "bin/blastx"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BLAT/BLAT-3.5-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BLAT/BLAT-3.5-goolf-1.4.10.eb
deleted file mode 100644
index 083100e3354..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BLAT/BLAT-3.5-goolf-1.4.10.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2013 The Cyprus Institute
-# Authors:: Andreas Panteli , Thekla Loizou
-# License:: MIT/GPL
-#
-##
-
-name = 'BLAT'
-version = '3.5'
-
-homepage = 'http://genome.ucsc.edu/FAQ/FAQblat.html'
-description = """BLAT on DNA is designed to quickly find sequences of 95% and greater similarity of length 25 bases or
- more."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = ['%%(namelower)sSrc%s.zip' % ''.join(version.split('.'))]
-source_urls = ['http://users.soe.ucsc.edu/~kent/src']
-
-dependencies = [('libpng', '1.6.2')]
-
-buildopts = 'CC="$CC" COPT= L="$LIBS"'
-
-files_to_copy = ["bin", "blat", "gfClient", "gfServer", "hg", "inc", "jkOwnLib", "lib", "utils", "webBlat"]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['blat', 'faToNib', 'faToTwoBit', 'gfClient', 'gfServer', 'nibFrag',
- 'pslPretty', 'pslReps', 'pslSort', 'twoBitInfo', 'twoBitToFa']],
- 'dirs': files_to_copy,
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BLAT/BLAT-3.5-ictce-5.5.0-libpng-1.6.9.eb b/easybuild/easyconfigs/__archive__/b/BLAT/BLAT-3.5-ictce-5.5.0-libpng-1.6.9.eb
deleted file mode 100644
index df2e50f7ef1..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BLAT/BLAT-3.5-ictce-5.5.0-libpng-1.6.9.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2013 The Cyprus Institute
-# Authors:: Andreas Panteli , Thekla Loizou
-# License:: MIT/GPL
-#
-##
-
-name = 'BLAT'
-version = '3.5'
-
-homepage = 'http://genome.ucsc.edu/FAQ/FAQblat.html'
-description = """BLAT on DNA is designed to quickly find sequences of 95% and greater similarity of length 25 bases or
- more."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-sources = ['%%(namelower)sSrc%s.zip' % ''.join(version.split('.'))]
-source_urls = ['http://users.soe.ucsc.edu/~kent/src']
-
-libpng = 'libpng'
-libpng_ver = '1.6.9'
-versionsuffix = '-%s-%s' % (libpng, libpng_ver)
-
-dependencies = [(libpng, libpng_ver)]
-
-buildopts = 'CC="$CC" COPT= L="$LIBS"'
-
-files_to_copy = ["bin", "blat", "gfClient", "gfServer", "hg", "inc", "jkOwnLib", "lib", "utils", "webBlat"]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['blat', 'faToNib', 'faToTwoBit', 'gfClient', 'gfServer', 'nibFrag',
- 'pslPretty', 'pslReps', 'pslSort', 'twoBitInfo', 'twoBitToFa']],
- 'dirs': files_to_copy,
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BLAT/BLAT-3.5-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/b/BLAT/BLAT-3.5-ictce-5.5.0.eb
deleted file mode 100644
index c62cc8c37cd..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BLAT/BLAT-3.5-ictce-5.5.0.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2013 The Cyprus Institute
-# Authors:: Andreas Panteli , Thekla Loizou
-# License:: MIT/GPL
-#
-##
-
-name = 'BLAT'
-version = '3.5'
-
-homepage = 'http://genome.ucsc.edu/FAQ/FAQblat.html'
-description = """BLAT on DNA is designed to quickly find sequences of 95% and greater similarity of length 25 bases or
- more."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-sources = ['%%(namelower)sSrc%s.zip' % ''.join(version.split('.'))]
-source_urls = ['http://users.soe.ucsc.edu/~kent/src']
-
-dependencies = [('libpng', '1.6.6')]
-
-buildopts = 'CC="$CC" COPT= L="$LIBS"'
-
-files_to_copy = ["bin", "blat", "gfClient", "gfServer", "hg", "inc", "jkOwnLib", "lib", "utils", "webBlat"]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['blat', 'faToNib', 'faToTwoBit', 'gfClient', 'gfServer', 'nibFrag',
- 'pslPretty', 'pslReps', 'pslSort', 'twoBitInfo', 'twoBitToFa']],
- 'dirs': files_to_copy,
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BOINC/BOINC-7.0.65-goolf-1.4.10-client.eb b/easybuild/easyconfigs/__archive__/b/BOINC/BOINC-7.0.65-goolf-1.4.10-client.eb
deleted file mode 100644
index 38d7535bfad..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BOINC/BOINC-7.0.65-goolf-1.4.10-client.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-easyblock = 'MakeCp'
-
-name = 'BOINC'
-version = '7.0.65'
-versionsuffix = "-client"
-
-homepage = 'https://boinc.berkeley.edu'
-description = """BOINC is a program that lets you donate your idle computer time to science projects
- like SETI@home, Climateprediction.net, Rosetta@home, World Community Grid, and many others."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-# only through git, make your own tarball.
-# e.g. git clone --depth=100 --branch client_release/7.0/7.0.65 git://boinc.berkeley.edu/boinc-v2.git boinc-7.0.65
-# see http://boinc.berkeley.edu/trac/wiki/SourceCodeGit
-sources = [SOURCELOWER_TAR_BZ2]
-
-dependencies = [
- ('OpenSSL', '1.0.1f'),
- ('cURL', '7.29.0'),
-]
-
-with_configure = True
-preconfigopts = './_autosetup &&'
-configopts = '--disable-server --disable-manager --enable-client'
-
-# copy boinc and boinccmd binaries
-files_to_copy = [(['client/boin*[cd]'], 'bin')]
-
-# make sure the binary are available after installation
-sanity_check_paths = {
- 'files': ['bin/boinc', 'bin/boinccmd'],
- 'dirs': [],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/BOINC/BOINC-7.2.42-ictce-5.5.0-client.eb b/easybuild/easyconfigs/__archive__/b/BOINC/BOINC-7.2.42-ictce-5.5.0-client.eb
deleted file mode 100644
index 66f39d890d9..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BOINC/BOINC-7.2.42-ictce-5.5.0-client.eb
+++ /dev/null
@@ -1,42 +0,0 @@
-easyblock = 'MakeCp'
-
-name = 'BOINC'
-version = '7.2.42'
-versionsuffix = "-client"
-
-homepage = 'https://boinc.berkeley.edu'
-description = """BOINC is a program that lets you donate your idle computer time to science projects
- like SETI@home, Climateprediction.net, Rosetta@home, World Community Grid, and many others."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-# only through git, create your own tarball.
-# e.g. git clone --depth=100 --branch client_release/7.2/7.2.42 git://boinc.berkeley.edu/boinc-v2.git boinc-7.2.42
-# see https://boinc.berkeley.edu/trac/wiki/SourceCodeGit
-sources = [SOURCELOWER_TAR_BZ2]
-
-dependencies = [
- ('OpenSSL', '1.0.1f'),
- ('cURL', '7.34.0'),
-]
-
-builddependencies = [
- ('libtool', '2.4.2'),
- ('make', '3.82'),
- ('pkg-config', '0.28'),
- ('M4', '1.4.16'),
- ('Autoconf', '2.69'),
- ('Automake', '1.14')
-]
-
-prebuildopts = "./_autosetup && ./configure --disable-server --disable-manager --enable-client &&"
-
-files_to_copy = [(['client/boinc', 'client/boinccmd'], 'bin')]
-
-# make sure the binary are available after installation
-sanity_check_paths = {
- 'files': ['bin/boinc'],
- 'dirs': [],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/BSMAP/BSMAP-2.74-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BSMAP/BSMAP-2.74-goolf-1.4.10.eb
deleted file mode 100644
index 400f14ed066..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BSMAP/BSMAP-2.74-goolf-1.4.10.eb
+++ /dev/null
@@ -1,35 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'BSMAP'
-version = '2.74'
-
-homepage = 'https://code.google.com/p/bsmap/'
-description = """BSMAP is a short reads mapping software for bisulfite sequencing reads."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['https://bsmap.googlecode.com/files/']
-sources = [SOURCELOWER_TGZ]
-
-skipsteps = ['configure']
-
-installopts = "DESTDIR=%(installdir)s"
-
-patches = [
- 'BSMAP-2.74_makefile-modif.patch',
- 'BSMAP-2.74_parameters-cpp.patch',
- 'BSMAP-2.74_samtools-deps.patch',
-]
-
-dependencies = [
- ('ncurses', '5.9'),
- ('zlib', '1.2.7'),
- ('SAMtools', '0.1.18'),
-]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bsmap", "methratio.py", "sam2bam.sh"]],
- 'dirs': [],
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.6.2-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.6.2-goolf-1.4.10.eb
deleted file mode 100644
index f06b056b282..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.6.2-goolf-1.4.10.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'BWA'
-version = '0.6.2'
-
-homepage = 'http://bio-bwa.sourceforge.net/'
-description = """Burrows-Wheeler Aligner (BWA) is an efficient program that aligns
-relatively short nucleotide sequences against a long reference sequence such as the human genome."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-source_urls = [('http://sourceforge.net/projects/bio-bwa/files/', 'download')]
-sources = [SOURCELOWER_TAR_BZ2]
-checksums = ['8783e5640d8e4ae028e048c56db1d6b4adff6234d1047bd4f98247ffc3be69e6']
-
-dependencies = [('zlib', '1.2.7')]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.6.2-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.6.2-ictce-5.3.0.eb
deleted file mode 100644
index b7c5e6cf986..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.6.2-ictce-5.3.0.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'BWA'
-version = '0.6.2'
-
-homepage = 'http://bio-bwa.sourceforge.net/'
-description = """Burrows-Wheeler Aligner (BWA) is an efficient program that aligns
- relatively short nucleotide sequences against a long reference sequence such as the human genome."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-source_urls = [('http://sourceforge.net/projects/bio-bwa/files/', 'download')]
-sources = [SOURCELOWER_TAR_BZ2]
-checksums = ['8783e5640d8e4ae028e048c56db1d6b4adff6234d1047bd4f98247ffc3be69e6']
-
-dependencies = [('zlib', '1.2.7')]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.7.13-foss-2015b.eb b/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.7.13-foss-2015b.eb
deleted file mode 100644
index 9dcdd4a110d..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.7.13-foss-2015b.eb
+++ /dev/null
@@ -1,35 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA
-# Authors:: George Tsouloupas , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-#
-# Version >= 0.7.13
-# Author: Adam Huffman
-# The Francis Crick Institute
-#
-# Note that upstream development is mainly at: https://github.com/lh3/bwa
-##
-
-name = 'BWA'
-version = '0.7.13'
-
-homepage = 'http://bio-bwa.sourceforge.net/'
-description = """Burrows-Wheeler Aligner (BWA) is an efficient program that aligns
- relatively short nucleotide sequences against a long reference sequence such as the human genome."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-source_urls = ['https://github.com/lh3/%(name)s/archive/']
-sources = ['v%(version)s.tar.gz']
-checksums = ['64ad61735644698780938fa4f32b007921363241a114421118a26ffcbd2a5834']
-
-dependencies = [('zlib', '1.2.8')]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.7.13-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.7.13-goolf-1.4.10.eb
deleted file mode 100644
index 8727436b5f5..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.7.13-goolf-1.4.10.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA
-# Authors:: George Tsouloupas , Fotis Georgatos ,
-# Daniel Navarro
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'BWA'
-version = '0.7.13'
-
-homepage = 'http://bio-bwa.sourceforge.net/'
-description = """Burrows-Wheeler Aligner (BWA) is an efficient program that aligns
- relatively short nucleotide sequences against a long reference sequence such as the human genome."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_BZ2]
-source_urls = [('http://sourceforge.net/projects/bio-bwa/files/', 'download')]
-
-dependencies = [('zlib', '1.2.8')]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.7.4-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.7.4-goolf-1.4.10.eb
deleted file mode 100644
index 23176833de8..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.7.4-goolf-1.4.10.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA
-# Authors:: George Tsouloupas , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'BWA'
-version = '0.7.4'
-
-homepage = 'http://bio-bwa.sourceforge.net/'
-description = """Burrows-Wheeler Aligner (BWA) is an efficient program that aligns
- relatively short nucleotide sequences against a long reference sequence such as the human genome."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-source_urls = [('http://sourceforge.net/projects/bio-bwa/files/', 'download')]
-sources = [SOURCELOWER_TAR_BZ2]
-checksums = ['58b4e5934b0de9fb432b4513f327ff9a1df86f6abfe9fe14f1a25ffbeb347b20']
-
-dependencies = [('zlib', '1.2.7')]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.7.4-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.7.4-ictce-5.3.0.eb
deleted file mode 100644
index 5d1077696f9..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.7.4-ictce-5.3.0.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA
-# Authors:: George Tsouloupas , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'BWA'
-version = '0.7.4'
-
-homepage = 'http://bio-bwa.sourceforge.net/'
-description = """Burrows-Wheeler Aligner (BWA) is an efficient program that aligns
- relatively short nucleotide sequences against a long reference sequence such as the human genome."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-source_urls = [('http://sourceforge.net/projects/bio-bwa/files/', 'download')]
-sources = [SOURCELOWER_TAR_BZ2]
-checksums = ['58b4e5934b0de9fb432b4513f327ff9a1df86f6abfe9fe14f1a25ffbeb347b20']
-
-dependencies = [('zlib', '1.2.7')]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.7.5a-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.7.5a-goolf-1.4.10.eb
deleted file mode 100644
index 8f005ab7361..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BWA/BWA-0.7.5a-goolf-1.4.10.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA
-# Authors:: George Tsouloupas , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'BWA'
-version = '0.7.5a'
-
-homepage = 'http://bio-bwa.sourceforge.net/'
-description = """Burrows-Wheeler Aligner (BWA) is an efficient program that aligns
- relatively short nucleotide sequences against a long reference sequence such as the human genome."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-source_urls = [('http://sourceforge.net/projects/bio-bwa/files/', 'download')]
-sources = [SOURCELOWER_TAR_BZ2]
-checksums = ['d157d79710b938225875c9322fc9e9139666deb7ace401dd73a5a65f6dffd7dd']
-
-dependencies = [('zlib', '1.2.7')]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BamBam/BamBam-1.4-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/b/BamBam/BamBam-1.4-goolf-1.7.20.eb
deleted file mode 100644
index 129c402e121..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BamBam/BamBam-1.4-goolf-1.7.20.eb
+++ /dev/null
@@ -1,43 +0,0 @@
-# This file is an EasyBuild reciPY as per https://easybuilders.github.io/easybuild/
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-easyblock = 'MakeCp'
-
-name = 'BamBam'
-version = '1.4'
-
-homepage = 'http://udall-lab.byu.edu/Research/Software/BamBam'
-description = "several simple-to-use tools to facilitate NGS analysis"
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = ['https://sourceforge.net/projects/bambam/files/']
-sources = ['%(namelower)s-%(version)s.tgz']
-checksums = ['a9b178251d771aafb8c676d30a9af88ea2fc679c2a5672b515f86be0e69238f1']
-
-unpack_options = '--strip-components=1'
-
-dependencies = [
- ('Perl', '5.22.2'),
- ('BamTools', '2.4.0'),
- ('HTSlib', '1.3.1'),
- ('SAMtools', '1.3.1'),
-]
-
-files_to_copy = ['*']
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['bam2consensus', 'bam2fastq', 'catBam', 'counter',
- 'eflen', 'gapfall', 'gardener', 'giraf', 'hapHunt',
- 'hmmph', 'indelible', 'interSnp', 'metHead', 'pebbles',
- 'polyCat', 'polyCat-methyl', 'polyDog', 'subBam']],
- 'dirs': [],
-}
-
-modextrapaths = {
- 'PATH': 'scripts',
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BamM/BamM-1.7.3-foss-2016b-Python-2.7.12.eb b/easybuild/easyconfigs/__archive__/b/BamM/BamM-1.7.3-foss-2016b-Python-2.7.12.eb
deleted file mode 100644
index 8ce237eb4a6..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BamM/BamM-1.7.3-foss-2016b-Python-2.7.12.eb
+++ /dev/null
@@ -1,44 +0,0 @@
-##
-# This is a contribution from Phoenix HPC Service, The University of Adelaide, Australia
-# Homepage: https://www.adelaide.edu.au/phoenix/
-#
-# Copyright:: Copyright 2014-2017 adelaide.edu.au/phoenix
-# Authors:: Robert Qiao , Exequiel Sepulveda
-# License:: GPL-v3.0
-#
-# Notes::
-##
-
-easyblock = 'PythonPackage'
-
-name = 'BamM'
-version = '1.7.3'
-versionsuffix = '-Python-%(pyver)s'
-
-homepage = 'http://ecogenomics.github.io/BamM/'
-description = """ BamM is a c library, wrapped in python, that parses BAM files """
-
-toolchain = {'name': 'foss', 'version': '2016b'}
-toolchainopts = {'usempi': True}
-
-source_urls = ['https://github.com/Ecogenomics/BamM/archive']
-sources = ['%(version)s.tar.gz']
-checksums = ['1a30a5014aa64aea23f12b82c8e474044af126c9e6ddb575530ab14b6ef765b8']
-
-builddependencies = [
- ('Automake', '1.11.3'),
- ('texinfo', '6.4', '', ('GCCcore', '5.4.0')),
-]
-
-dependencies = [
- ('Python', '2.7.12'),
- ('SAMtools', '1.2'),
- ('BWA', '0.7.12'),
-]
-
-sanity_check_paths = {
- 'files': ['bin/bamm'],
- 'dirs': ['lib/python%(pyshortver)s/site-packages'],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BamM/BamM-1.7.3-foss-2018a-Python-2.7.14.eb b/easybuild/easyconfigs/__archive__/b/BamM/BamM-1.7.3-foss-2018a-Python-2.7.14.eb
deleted file mode 100644
index 52d1b7c6822..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BamM/BamM-1.7.3-foss-2018a-Python-2.7.14.eb
+++ /dev/null
@@ -1,49 +0,0 @@
-##
-# This is a contribution from Phoenix HPC Service, The University of Adelaide, Australia
-# Homepage: https://www.adelaide.edu.au/phoenix/
-#
-# Copyright:: Copyright 2014-2017 adelaide.edu.au/phoenix
-# Authors:: Robert Qiao , Exequiel Sepulveda
-# License:: GPL-v3.0
-#
-# Notes::
-##
-
-easyblock = 'PythonPackage'
-
-name = 'BamM'
-version = '1.7.3'
-versionsuffix = '-Python-%(pyver)s'
-
-homepage = 'http://ecogenomics.github.io/BamM/'
-description = """ BamM is a c library, wrapped in python, that parses BAM files """
-
-toolchain = {'name': 'foss', 'version': '2018a'}
-toolchainopts = {'usempi': True}
-
-source_urls = ['https://github.com/Ecogenomics/BamM/archive']
-sources = ['%(version)s.tar.gz']
-checksums = ['1a30a5014aa64aea23f12b82c8e474044af126c9e6ddb575530ab14b6ef765b8']
-
-builddependencies = [
- ('Automake', '1.15.1'),
- ('texinfo', '6.5'),
-]
-
-dependencies = [
- ('Python', '2.7.14'),
- ('SAMtools', '1.7'),
- ('BWA', '0.7.17'),
-]
-
-download_dep_fail = True
-use_pip = True
-
-preinstallopts = "cd c && ./autogen.sh && cd .. &&"
-
-sanity_check_paths = {
- 'files': ['bin/bamm'],
- 'dirs': ['lib/python%(pyshortver)s/site-packages'],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BamTools/BamTools-2.2.3-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BamTools/BamTools-2.2.3-goolf-1.4.10.eb
deleted file mode 100644
index e1545c06a18..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BamTools/BamTools-2.2.3-goolf-1.4.10.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2013 The Cyprus Institute
-# Authors:: Andreas Panteli , George Tsouloupas
-# License:: MIT/GPL
-#
-##
-
-name = 'BamTools'
-version = '2.2.3'
-
-homepage = 'https://github.com/pezmaster31/bamtools'
-description = """BamTools provides both a programmer's API and an end-user's toolkit for handling BAM files."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['https://github.com/pezmaster31/bamtools/archive']
-sources = ['v%(version)s.tar.gz']
-checksums = ['92ddef44801a1f8f01ce1a397f83e0f8b5e1ae8ad92c620f2dafaaf8d54cf178']
-
-builddependencies = [('CMake', '2.8.4')]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BamTools/BamTools-2.2.3-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/b/BamTools/BamTools-2.2.3-ictce-5.3.0.eb
deleted file mode 100644
index 9c1454669c3..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BamTools/BamTools-2.2.3-ictce-5.3.0.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2013 The Cyprus Institute
-# Authors:: Andreas Panteli , George Tsouloupas
-# License:: MIT/GPL
-#
-##
-
-name = 'BamTools'
-version = '2.2.3'
-
-homepage = 'https://github.com/pezmaster31/bamtools'
-description = """BamTools provides both a programmer's API and an end-user's toolkit for handling BAM files."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['https://github.com/pezmaster31/bamtools/archive']
-sources = ['v%(version)s.tar.gz']
-checksums = ['92ddef44801a1f8f01ce1a397f83e0f8b5e1ae8ad92c620f2dafaaf8d54cf178']
-
-builddependencies = [('CMake', '2.8.4')]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BamTools/BamTools-2.4.0-foss-2015b.eb b/easybuild/easyconfigs/__archive__/b/BamTools/BamTools-2.4.0-foss-2015b.eb
deleted file mode 100644
index 0e149c60e83..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BamTools/BamTools-2.4.0-foss-2015b.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2013 The Cyprus Institute
-# Authors:: Andreas Panteli , George Tsouloupas
-# License:: MIT/GPL
-#
-##
-
-name = 'BamTools'
-version = '2.4.0'
-
-homepage = 'https://github.com/pezmaster31/bamtools'
-description = """BamTools provides both a programmer's API and an end-user's toolkit for handling BAM files."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = ['https://github.com/pezmaster31/bamtools/archive']
-sources = ['v%(version)s.tar.gz']
-checksums = ['f1fe82b8871719e0fb9ed7be73885f5d0815dd5c7277ee33bd8f67ace961e13e']
-
-builddependencies = [('CMake', '3.4.1')]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BamTools/BamTools-2.4.0-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/b/BamTools/BamTools-2.4.0-goolf-1.7.20.eb
deleted file mode 100644
index 893b0c3f77f..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BamTools/BamTools-2.4.0-goolf-1.7.20.eb
+++ /dev/null
@@ -1,15 +0,0 @@
-name = 'BamTools'
-version = '2.4.0'
-
-homepage = 'https://github.com/pezmaster31/bamtools'
-description = """BamTools provides both a programmer's API and an end-user's toolkit for handling BAM files."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = ['https://github.com/pezmaster31/bamtools/archive']
-sources = ['v%(version)s.tar.gz']
-checksums = ['f1fe82b8871719e0fb9ed7be73885f5d0815dd5c7277ee33bd8f67ace961e13e']
-
-builddependencies = [('CMake', '2.8.12')]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BamUtil/BamUtil-1.0.13-foss-2015b.eb b/easybuild/easyconfigs/__archive__/b/BamUtil/BamUtil-1.0.13-foss-2015b.eb
deleted file mode 100644
index f601bc63da5..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BamUtil/BamUtil-1.0.13-foss-2015b.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Author: Adam Huffman
-# adam.huffman@crick.ac.uk
-# The Francis Crick Institute
-#
-# This is the version with the bundled libStatGen library
-
-name = 'BamUtil'
-version = '1.0.13'
-
-easyblock = 'MakeCp'
-
-homepage = 'http://genome.sph.umich.edu/wiki/BamUtil'
-description = """BamUtil is a repository that contains several programs
- that perform operations on SAM/BAM files. All of these programs
- are built into a single executable, bam."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-sources = ['%(name)sLibStatGen.%(version)s.tgz']
-source_urls = ['http://genome.sph.umich.edu/w/images/7/70/']
-
-# make sure right compilers are used by passing them as options to 'make' (default is to use gcc/g++)
-buildopts = 'CC="$CC" CXX="$CXX"'
-
-files_to_copy = ["bamUtil/bin", "libStatGen"]
-
-sanity_check_paths = {
- 'files': ["bin/bam"],
- 'dirs': ["libStatGen"],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bash/Bash-4.2-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/Bash/Bash-4.2-goolf-1.4.10.eb
deleted file mode 100644
index 528d89262c1..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bash/Bash-4.2-goolf-1.4.10.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit
-# Authors:: Valentin Plugaru
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_05-06.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'Bash'
-version = '4.2'
-
-homepage = 'http://www.gnu.org/software/bash'
-description = """Bash is an sh-compatible command language interpreter that executes commands
- read from the standard input or from a file. Bash also incorporates useful features from the
- Korn and C shells (ksh and csh)."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-sanity_check_paths = {
- 'files': ["bin/bash"],
- 'dirs': []
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/Bash/Bash-4.2-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/b/Bash/Bash-4.2-ictce-5.3.0.eb
deleted file mode 100644
index 84323048382..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bash/Bash-4.2-ictce-5.3.0.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2013 University of Luxembourg/Computer Science and Communications Research Unit
-# Authors:: Valentin Plugaru
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_05-06.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'Bash'
-version = '4.2'
-
-homepage = 'http://www.gnu.org/software/bash'
-description = """Bash is an sh-compatible command language interpreter that executes commands
- read from the standard input or from a file. Bash also incorporates useful features from the
- Korn and C shells (ksh and csh)."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-sanity_check_paths = {
- 'files': ["bin/bash"],
- 'dirs': []
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/BayPass/BayPass-2.1-foss-2015a.eb b/easybuild/easyconfigs/__archive__/b/BayPass/BayPass-2.1-foss-2015a.eb
deleted file mode 100644
index 132df40d050..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BayPass/BayPass-2.1-foss-2015a.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-easyblock = 'MakeCp'
-
-name = 'BayPass'
-version = '2.1'
-
-homepage = 'http://www1.montpellier.inra.fr/CBGP/software/baypass/'
-description = """The package BayPass is a population genomics software which is primarily
- aimed at identifying genetic markers subjected to selection and/or associated to
- population-specific covariates (e.g., environmental variables, quantitative or
- categorical phenotypic characteristics)."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-toolchainopts = {'openmp': True}
-
-source_urls = ['http://www1.montpellier.inra.fr/CBGP/software/baypass/files/']
-sources = ['%(namelower)s_%(version)s.tar.gz']
-
-start_dir = 'sources'
-
-files_to_copy = [(['g_baypass'], 'bin'), (['BayPass_manual_2.1.pdf'], 'manual'), 'examples', 'utils']
-
-parallel = 1
-
-sanity_check_paths = {
- 'files': ['bin/g_baypass'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BayPass/BayPass-2.1-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/b/BayPass/BayPass-2.1-goolf-1.7.20.eb
deleted file mode 100644
index 25bcd121435..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BayPass/BayPass-2.1-goolf-1.7.20.eb
+++ /dev/null
@@ -1,39 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-easyblock = 'MakeCp'
-
-name = 'BayPass'
-version = '2.1'
-
-homepage = 'http://www1.montpellier.inra.fr/CBGP/software/baypass/index.html'
-description = """BayPass is a population genomics software which is primarily aimed at identifying
- genetic markers subjected to selection and/or associated to population-specific covariates
- (e.g., environmental variables, quantitative or categorical phenotypic characteristics).
- The underlying models explicitly account for (and may estimate) the covariance structure among the
- population allele frequencies that originates from the shared history of the populations under study"""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-toolchainopts = {'openmp': True}
-
-source_urls = ['http://www1.montpellier.inra.fr/CBGP/software/baypass/files/']
-sources = ['%(namelower)s_%(version)s.tar.gz']
-
-start_dir = 'sources'
-
-parallel = 1
-
-files_to_copy = [(['sources/g_baypass'], 'bin/'),
- 'BayPass_manual_2.1.pdf',
- 'examples',
- 'Licence_CeCILL-B_V1-en.txt',
- 'utils']
-
-sanity_check_paths = {
- 'files': ['bin/g_baypass'],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BayeScEnv/BayeScEnv-1.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BayeScEnv/BayeScEnv-1.1-goolf-1.4.10.eb
deleted file mode 100644
index 336a764164c..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BayeScEnv/BayeScEnv-1.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-easyblock = 'MakeCp'
-
-name = 'BayeScEnv'
-version = '1.1'
-
-homepage = 'https://github.com/devillemereuil/bayescenv'
-description = """BayeScEnv is a Fst-based, genome-scan method that uses environmental variables
- to detect local adaptation."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'openmp': True}
-
-source_urls = ['https://github.com/devillemereuil/bayescenv/archive/']
-sources = ['v%(version)s.tar.gz']
-
-start_dir = 'source'
-
-files_to_copy = [(['source/bayescenv'], 'bin'), 'test', 'COPYING', 'README.md', 'ChangeLog']
-
-parallel = 1
-
-sanity_check_paths = {
- 'files': ['bin/bayescenv'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BayeScan/BayeScan-2.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BayeScan/BayeScan-2.1-goolf-1.4.10.eb
deleted file mode 100644
index 3a8d229257b..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BayeScan/BayeScan-2.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,39 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-easyblock = 'MakeCp'
-
-name = 'BayeScan'
-version = '2.1'
-
-homepage = 'http://cmpg.unibe.ch/software/BayeScan/'
-description = """BayeScan aims at identifying candidate loci under natural selection from genetic data,
- using differences in allele frequencies between populations."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'openmp': True}
-
-source_urls = ['http://cmpg.unibe.ch/software/BayeScan/files/']
-sources = ['%(name)s%(version)s.zip']
-
-start_dir = 'source'
-
-# fix the makefile which hardcodes g++ compiler
-prebuildopts = "sed -i -e 's/g++/${CXX} ${CFLAGS}/g' Makefile && "
-
-files_to_copy = [
- (['source/bayescan_%(version)s'], 'bin'),
- 'BayeScan%(version)s_manual.pdf',
- 'input_examples',
- 'R functions']
-
-parallel = 1
-
-sanity_check_paths = {
- 'files': ['bin/bayescan_%(version)s'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bazel/Bazel-0.3.0-CrayGNU-2016.03.eb b/easybuild/easyconfigs/__archive__/b/Bazel/Bazel-0.3.0-CrayGNU-2016.03.eb
deleted file mode 100644
index b13a4f19461..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bazel/Bazel-0.3.0-CrayGNU-2016.03.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-# @author: Guilherme Peretti-Pezzi (CSCS)
-
-easyblock = "CmdCp"
-
-name = 'Bazel'
-version = '0.3.0'
-
-homepage = 'http://bazel.io/'
-description = """Bazel is a build tool that builds code quickly and reliably.
-It is used to build the majority of Google's software."""
-
-toolchain = {'name': 'CrayGNU', 'version': '2016.03'}
-
-dependencies = [
- ('java/jdk1.8.0_51', EXTERNAL_MODULE),
-]
-
-sources = ['%(version)s.tar.gz']
-source_urls = ['https://github.com/bazelbuild/bazel/archive/']
-
-cmds_map = [('.*', "JAVA_VERSION=1.8 CC=gcc CXX=g++ ./compile.sh")]
-
-files_to_copy = [(['output/bazel'], 'bin')]
-
-sanity_check_paths = {
- 'files': ['bin/bazel'],
- 'dirs': ['bin'],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Beast/Beast-2.1.3.eb b/easybuild/easyconfigs/__archive__/b/Beast/Beast-2.1.3.eb
deleted file mode 100644
index 099d660e005..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Beast/Beast-2.1.3.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = "Tarball"
-
-name = 'Beast'
-version = '2.1.3'
-
-homepage = 'http://beast2.org/'
-description = """ BEAST is a cross-platform program for Bayesian MCMC analysis of molecular
- sequences. It is entirely orientated towards rooted, time-measured phylogenies inferred using
- strict or relaxed molecular clock models. It can be used as a method of reconstructing phylogenies
- but is also a framework for testing evolutionary hypotheses without conditioning on a single
- tree topology. BEAST uses MCMC to average over tree space, so that each tree is weighted
- proportional to its posterior probability. """
-
-toolchain = SYSTEM
-
-source_urls = ['http://github.com/CompEvol/beast2/releases/download/v%(version)s/']
-sources = ['BEAST.v%(version)s.tgz']
-
-dependencies = [
- # this is not mandatory but beagle-lib is recommended by developers
- # beagle-lib will also load the required java dependency
- # if you remove this you should add the java dependency
- ('beagle-lib', '20120124', '', ('goolf', '1.4.10')),
-]
-
-sanity_check_paths = {
- 'files': ["bin/beast"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BiSearch/BiSearch-20051222-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BiSearch/BiSearch-20051222-goolf-1.4.10.eb
deleted file mode 100644
index 6a4f6fcb9bc..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BiSearch/BiSearch-20051222-goolf-1.4.10.eb
+++ /dev/null
@@ -1,11 +0,0 @@
-name = 'BiSearch'
-version = '20051222'
-
-homepage = 'http://bisearch.enzim.hu/'
-description = """BiSearch is a primer-design algorithm for DNA sequences."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = ['%s_%s.tar.gz' % (name.lower(), version)]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BiSearch/BiSearch-20051222-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/b/BiSearch/BiSearch-20051222-ictce-5.3.0.eb
deleted file mode 100644
index 1785e838fa0..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BiSearch/BiSearch-20051222-ictce-5.3.0.eb
+++ /dev/null
@@ -1,12 +0,0 @@
-name = 'BiSearch'
-version = '20051222'
-
-homepage = 'http://bisearch.enzim.hu/'
-description = """BiSearch is a primer-design algorithm for DNA sequences."""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sources = ['%s_%s.tar.gz' % (name.lower(), version)]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Biggus/Biggus-0.11.0-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/b/Biggus/Biggus-0.11.0-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index c3067d56444..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Biggus/Biggus-0.11.0-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'Biggus'
-version = '0.11.0'
-
-homepage = 'https://github.com/SciTools/biggus'
-description = """Virtual large arrays and lazy evaluation."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-python = 'Python'
-pyver = '2.7.3'
-versionsuffix = '-%s-%s' % (python, pyver)
-
-dependencies = [(python, pyver)]
-
-pyshortver = '.'.join(pyver.split('.')[:2])
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['lib/python%s/site-packages/%%(name)s-%%(version)s-py%s.egg' % (pyshortver, pyshortver)],
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/b/Biggus/Biggus-0.5.0-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/b/Biggus/Biggus-0.5.0-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index c1cac11dccc..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Biggus/Biggus-0.5.0-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'Biggus'
-version = '0.5.0'
-
-homepage = 'https://github.com/SciTools/biggus'
-description = """Virtual large arrays and lazy evaluation."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-python = 'Python'
-pyver = '2.7.3'
-versionsuffix = '-%s-%s' % (python, pyver)
-
-dependencies = [(python, pyver)]
-
-pyshortver = '.'.join(pyver.split('.')[:2])
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['lib/python%s/site-packages/biggus' % pyshortver],
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/b/BioKanga/BioKanga-3.4.5-foss-2015b.eb b/easybuild/easyconfigs/__archive__/b/BioKanga/BioKanga-3.4.5-foss-2015b.eb
deleted file mode 100644
index accaece1d7a..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BioKanga/BioKanga-3.4.5-foss-2015b.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'BioKanga'
-version = '3.4.5'
-
-homepage = 'http://sourceforge.net/projects/biokanga'
-description = """BioKanga is an integrated toolkit of high performance bioinformatics
- subprocesses targeting the challenges of next generation sequencing analytics.
- Kanga is an acronym standing for 'K-mer Adaptive Next Generation Aligner'."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = ['http://sourceforge.net/projects/biokanga/files/']
-sources = ['buildbiokanga_%s.zip' % version.replace('.', '_')]
-
-dependencies = [('GSL', '2.1')]
-
-preconfigopts = "chmod +x configure && "
-
-sanity_check_paths = {
- 'files': ["bin/biokanga"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BioKanga/BioKanga-4.3.4-foss-2015b.eb b/easybuild/easyconfigs/__archive__/b/BioKanga/BioKanga-4.3.4-foss-2015b.eb
deleted file mode 100644
index b413e97feef..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BioKanga/BioKanga-4.3.4-foss-2015b.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'BioKanga'
-version = '4.3.4'
-
-homepage = 'https://github.com/csiro-crop-informatics/biokanga'
-description = """BioKanga is an integrated toolkit of high performance bioinformatics
- subprocesses targeting the challenges of next generation sequencing analytics.
- Kanga is an acronym standing for 'K-mer Adaptive Next Generation Aligner'."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = ['https://github.com/csiro-crop-informatics/biokanga/archive/']
-sources = ['v%(version)s.tar.gz']
-
-patches = ['BioKanga-%(version)s_configure.patch']
-
-builddependencies = [('Autotools', '20150215')]
-
-preconfigopts = "autoreconf -f -i && "
-
-sanity_check_paths = {
- 'files': ["bin/biokanga"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BioKanga/BioKanga-4.3.5-foss-2015b.eb b/easybuild/easyconfigs/__archive__/b/BioKanga/BioKanga-4.3.5-foss-2015b.eb
deleted file mode 100644
index c614af140d9..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BioKanga/BioKanga-4.3.5-foss-2015b.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'BioKanga'
-version = '4.3.5'
-
-homepage = 'https://github.com/csiro-crop-informatics/biokanga'
-description = """BioKanga is an integrated toolkit of high performance bioinformatics
- subprocesses targeting the challenges of next generation sequencing analytics.
- Kanga is an acronym standing for 'K-mer Adaptive Next Generation Aligner'."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = ['https://github.com/csiro-crop-informatics/biokanga/archive/']
-sources = ['v%(version)s.tar.gz']
-
-builddependencies = [('Autotools', '20150215')]
-
-preconfigopts = "autoreconf -f -i && "
-
-sanity_check_paths = {
- 'files': ["bin/biokanga"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BioKanga/BioKanga-4.3.6-foss-2015b.eb b/easybuild/easyconfigs/__archive__/b/BioKanga/BioKanga-4.3.6-foss-2015b.eb
deleted file mode 100644
index e9e6ecd9f95..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BioKanga/BioKanga-4.3.6-foss-2015b.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'BioKanga'
-version = '4.3.6'
-
-homepage = 'https://github.com/csiro-crop-informatics/biokanga'
-description = """BioKanga is an integrated toolkit of high performance bioinformatics
- subprocesses targeting the challenges of next generation sequencing analytics.
- Kanga is an acronym standing for 'K-mer Adaptive Next Generation Aligner'."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = ['https://github.com/csiro-crop-informatics/biokanga/archive/']
-sources = ['v%(version)s.tar.gz']
-
-builddependencies = [('Autotools', '20150215')]
-
-preconfigopts = "autoreconf -f -i && "
-
-sanity_check_paths = {
- 'files': ["bin/biokanga"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BioPerl/BioPerl-1.6.1-goolf-1.4.10-Perl-5.16.3.eb b/easybuild/easyconfigs/__archive__/b/BioPerl/BioPerl-1.6.1-goolf-1.4.10-Perl-5.16.3.eb
deleted file mode 100644
index 2de3974d8c3..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BioPerl/BioPerl-1.6.1-goolf-1.4.10-Perl-5.16.3.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'PerlModule'
-
-name = 'BioPerl'
-version = '1.6.1'
-
-homepage = 'http://www.bioperl.org/'
-description = """Bioperl is the product of a community effort to produce Perl code which is useful in biology.
- Examples include Sequence objects, Alignment objects and database searching objects."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['https://github.com/bioperl/bioperl-live/archive/']
-sources = ['bioperl-release-%s.tar.gz' % version.replace('.', '-')]
-
-perl = 'Perl'
-perlver = '5.16.3'
-versionsuffix = '-%s-%s' % (perl, perlver)
-
-dependencies = [
- (perl, perlver),
-]
-
-options = {'modulename': 'Bio::Perl'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BioPerl/BioPerl-1.6.1-ictce-5.3.0-Perl-5.16.3.eb b/easybuild/easyconfigs/__archive__/b/BioPerl/BioPerl-1.6.1-ictce-5.3.0-Perl-5.16.3.eb
deleted file mode 100644
index 47381bc7357..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BioPerl/BioPerl-1.6.1-ictce-5.3.0-Perl-5.16.3.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'PerlModule'
-
-name = 'BioPerl'
-version = '1.6.1'
-
-homepage = 'http://www.bioperl.org/'
-description = """Bioperl is the product of a community effort to produce Perl code which is useful in biology.
- Examples include Sequence objects, Alignment objects and database searching objects."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['https://github.com/bioperl/bioperl-live/archive/']
-sources = ['bioperl-release-%s.tar.gz' % version.replace('.', '-')]
-
-perl = 'Perl'
-perlver = '5.16.3'
-versionsuffix = '-%s-%s' % (perl, perlver)
-
-dependencies = [
- (perl, perlver),
-]
-
-options = {'modulename': 'Bio::Perl'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BioPerl/BioPerl-1.6.923-ictce-5.5.0-Perl-5.18.2.eb b/easybuild/easyconfigs/__archive__/b/BioPerl/BioPerl-1.6.923-ictce-5.5.0-Perl-5.18.2.eb
deleted file mode 100644
index 5954f543932..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BioPerl/BioPerl-1.6.923-ictce-5.5.0-Perl-5.18.2.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = 'PerlModule'
-
-name = 'BioPerl'
-version = '1.6.923'
-
-homepage = 'http://www.bioperl.org/'
-description = """Bioperl is the product of a community effort to produce Perl code which is useful in biology.
- Examples include Sequence objects, Alignment objects and database searching objects."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = ['https://github.com/bioperl/bioperl-live/archive/']
-sources = ['release-%s.tar.gz' % version.replace('.', '-')]
-
-perl = 'Perl'
-perlver = '5.18.2'
-versionsuffix = '-%s-%s' % (perl, perlver)
-
-dependencies = [
- (perl, perlver),
- ('DB_File', '1.831', versionsuffix),
-]
-
-options = {'modulename': 'Bio::Perl'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/BioPerl/BioPerl-1.6.923-intel-2015b-Perl-5.20.3.eb b/easybuild/easyconfigs/__archive__/b/BioPerl/BioPerl-1.6.923-intel-2015b-Perl-5.20.3.eb
deleted file mode 100644
index 0b4fbe276af..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BioPerl/BioPerl-1.6.923-intel-2015b-Perl-5.20.3.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-easyblock = 'PerlModule'
-
-name = 'BioPerl'
-version = '1.6.923'
-versionsuffix = '-Perl-%(perlver)s'
-
-homepage = 'http://www.bioperl.org/'
-description = """Bioperl is the product of a community effort to produce Perl code which is useful in biology.
- Examples include Sequence objects, Alignment objects and database searching objects."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['https://github.com/bioperl/bioperl-live/archive/']
-sources = ['release-%s.tar.gz' % version.replace('.', '-')]
-
-dependencies = [
- ('Perl', '5.20.3'),
- ('DB_File', '1.831', versionsuffix),
-]
-
-options = {'modulename': 'Bio::Perl'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Biopython/Biopython-1.61-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/b/Biopython/Biopython-1.61-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index 5462b9b74f1..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Biopython/Biopython-1.61-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,46 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2013 The Cyprus Institute
-# Authors:: Andreas Panteli , Thekla Loizou ,
-# George Tsouloupas
-# License:: MIT/GPL
-#
-##
-easyblock = "PythonPackage"
-
-name = 'Biopython'
-version = '1.61'
-
-homepage = 'http://www.biopython.org'
-description = """Biopython is a set of freely available tools for biological computation written
-in Python by an international team of developers. It is a distributed collaborative effort to
-develop Python libraries and applications which address the needs of current and future work in
-bioinformatics. """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://biopython.org/DIST']
-sources = ['%(namelower)s-%(version)s.tar.gz']
-
-python = 'Python'
-pyver = '2.7.3'
-pyshortver = '.'.join(pyver.split('.')[:2])
-
-versionsuffix = "-%s-%s" % (python, pyver)
-
-dependencies = [
- (python, pyver),
- ('numpy', '1.6.2', versionsuffix)
-]
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['lib/python%s/site-packages/Bio' % pyshortver,
- 'lib/python%s/site-packages/biopython-%s-py%s.egg-info' % (pyshortver, version, pyshortver),
- 'lib/python%s/site-packages/BioSQL' % pyshortver]
-}
-
-options = {'modulename': 'Bio'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Biopython/Biopython-1.61-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/b/Biopython/Biopython-1.61-ictce-5.3.0-Python-2.7.3.eb
deleted file mode 100644
index bb428926a02..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Biopython/Biopython-1.61-ictce-5.3.0-Python-2.7.3.eb
+++ /dev/null
@@ -1,46 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2013 The Cyprus Institute
-# Authors:: Andreas Panteli , Thekla Loizou ,
-# George Tsouloupas
-# License:: MIT/GPL
-#
-##
-easyblock = "PythonPackage"
-
-name = 'Biopython'
-version = '1.61'
-
-homepage = 'http://www.biopython.org'
-description = """Biopython is a set of freely available tools for biological computation written
-in Python by an international team of developers. It is a distributed collaborative effort to
-develop Python libraries and applications which address the needs of current and future work in
-bioinformatics. """
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['http://biopython.org/DIST']
-sources = ['%(namelower)s-%(version)s.tar.gz']
-
-python = 'Python'
-pyver = '2.7.3'
-pyshortver = '.'.join(pyver.split('.')[:2])
-
-versionsuffix = "-%s-%s" % (python, pyver)
-
-dependencies = [
- (python, pyver),
- ('numpy', '1.6.2', versionsuffix)
-]
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['lib/python%s/site-packages/Bio' % pyshortver,
- 'lib/python%s/site-packages/biopython-%s-py%s.egg-info' % (pyshortver, version, pyshortver),
- 'lib/python%s/site-packages/BioSQL' % pyshortver]
-}
-
-options = {'modulename': 'Bio'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bismark/Bismark-0.10.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/Bismark/Bismark-0.10.1-goolf-1.4.10.eb
deleted file mode 100644
index d6a0d16ca9c..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bismark/Bismark-0.10.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2013-2014 The Cyprus Institute
-# Authors:: Thekla Loizou
-# License:: MIT/GPL
-#
-##
-easyblock = "Tarball"
-
-name = 'Bismark'
-version = '0.10.1'
-
-homepage = 'http://www.bioinformatics.babraham.ac.uk/projects/bismark/'
-description = """A tool to map bisulfite converted sequence reads and
-determine cytosine methylation states"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ["http://www.bioinformatics.babraham.ac.uk/projects/bismark/"]
-sources = ['%(namelower)s_v%(version)s.tar.gz']
-
-dependencies = [('Bowtie2', '2.0.2')]
-
-sanity_check_paths = {
- 'files': ["bismark", "bismark2bedGraph", "bismark2report", "bismark_genome_preparation",
- "bismark_methylation_extractor", "coverage2cytosine", "deduplicate_bismark"],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.5-GCC-4.6.3.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.5-GCC-4.6.3.eb
deleted file mode 100644
index 3222d06042c..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.5-GCC-4.6.3.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '2.5'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
-into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'GCC', 'version': '4.6.3'}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-patches = ['Bison-%(version)s_fix-gets.patch']
-checksums = [
- '722def46e4a19a5b7a579ef30db1965f86c37c1a20a5f0113743a2e4399f7c99', # bison-2.5.tar.gz
- 'a048873fe6491e7c97bb380e9df5e6869089719166a4d73424edd00628b830b2', # Bison-2.5_fix-gets.patch
-]
-
-builddependencies = [('M4', '1.4.16')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.5-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.5-goolf-1.4.10.eb
deleted file mode 100644
index 527ccebc437..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.5-goolf-1.4.10.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '2.5'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
-into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-patches = ['Bison-%(version)s_fix-gets.patch']
-checksums = [
- '722def46e4a19a5b7a579ef30db1965f86c37c1a20a5f0113743a2e4399f7c99', # bison-2.5.tar.gz
- 'a048873fe6491e7c97bb380e9df5e6869089719166a4d73424edd00628b830b2', # Bison-2.5_fix-gets.patch
-]
-
-builddependencies = [('M4', '1.4.16')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.5-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.5-ictce-5.3.0.eb
deleted file mode 100644
index 37ee888ca69..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.5-ictce-5.3.0.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '2.5'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-patches = ['Bison-%(version)s_fix-gets.patch']
-checksums = [
- '722def46e4a19a5b7a579ef30db1965f86c37c1a20a5f0113743a2e4399f7c99', # bison-2.5.tar.gz
- 'a048873fe6491e7c97bb380e9df5e6869089719166a4d73424edd00628b830b2', # Bison-2.5_fix-gets.patch
-]
-
-builddependencies = [('M4', '1.4.16')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.5-ictce-5.4.0.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.5-ictce-5.4.0.eb
deleted file mode 100644
index ddb9da74fd6..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.5-ictce-5.4.0.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '2.5'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-
-toolchain = {'name': 'ictce', 'version': '5.4.0'}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-patches = ['Bison-%(version)s_fix-gets.patch']
-checksums = [
- '722def46e4a19a5b7a579ef30db1965f86c37c1a20a5f0113743a2e4399f7c99', # bison-2.5.tar.gz
- 'a048873fe6491e7c97bb380e9df5e6869089719166a4d73424edd00628b830b2', # Bison-2.5_fix-gets.patch
-]
-
-builddependencies = [('M4', '1.4.16')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.5-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.5-ictce-5.5.0.eb
deleted file mode 100644
index e22ac277b19..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.5-ictce-5.5.0.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '2.5'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-patches = ['Bison-%(version)s_fix-gets.patch']
-checksums = [
- '722def46e4a19a5b7a579ef30db1965f86c37c1a20a5f0113743a2e4399f7c99', # bison-2.5.tar.gz
- 'a048873fe6491e7c97bb380e9df5e6869089719166a4d73424edd00628b830b2', # Bison-2.5_fix-gets.patch
-]
-
-builddependencies = [('M4', '1.4.16')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.5-intel-2014b.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.5-intel-2014b.eb
deleted file mode 100644
index d06627a083d..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.5-intel-2014b.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '2.5'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-patches = ['Bison-%(version)s_fix-gets.patch']
-checksums = [
- '722def46e4a19a5b7a579ef30db1965f86c37c1a20a5f0113743a2e4399f7c99', # bison-2.5.tar.gz
- 'a048873fe6491e7c97bb380e9df5e6869089719166a4d73424edd00628b830b2', # Bison-2.5_fix-gets.patch
-]
-
-builddependencies = [('M4', '1.4.16')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.6.5-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.6.5-ictce-5.3.0.eb
deleted file mode 100644
index a673f202fbc..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.6.5-ictce-5.3.0.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '2.6.5'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.16')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-GCC-4.7.2.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-GCC-4.7.2.eb
deleted file mode 100644
index 1806f695f4f..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-GCC-4.7.2.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '2.7'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
-into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'GCC', 'version': '4.7.2'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.16')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-GCC-4.7.3.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-GCC-4.7.3.eb
deleted file mode 100644
index 1e8f69087b7..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-GCC-4.7.3.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '2.7'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
-into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'GCC', 'version': '4.7.3'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.16')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-goolf-1.4.10.eb
deleted file mode 100644
index aeaa2cf4444..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-goolf-1.4.10.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '2.7'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
-into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.16')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-goolf-1.5.14.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-goolf-1.5.14.eb
deleted file mode 100644
index 4c523b02e61..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-goolf-1.5.14.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '2.7'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
-into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'goolf', 'version': '1.5.14'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.16')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-ictce-5.3.0.eb
deleted file mode 100644
index 025c3d68aa4..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-ictce-5.3.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '2.7'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.16')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-ictce-5.4.0.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-ictce-5.4.0.eb
deleted file mode 100644
index 1fffb8736fc..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-ictce-5.4.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '2.7'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'ictce', 'version': '5.4.0'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-ictce-5.5.0.eb
deleted file mode 100644
index 03b08d09a69..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-ictce-5.5.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '2.7'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-ictce-6.1.5.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-ictce-6.1.5.eb
deleted file mode 100644
index deba4d2a79e..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-ictce-6.1.5.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '2.7'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'ictce', 'version': '6.1.5'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.16')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-intel-2014b.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-intel-2014b.eb
deleted file mode 100644
index 7cc3238fc2e..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-intel-2014b.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '2.7'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-intel-2015a.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-intel-2015a.eb
deleted file mode 100644
index 48aa608e0d3..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7-intel-2015a.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '2.7'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7.1-ictce-5.4.0.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7.1-ictce-5.4.0.eb
deleted file mode 100644
index 39ff356aa9f..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7.1-ictce-5.4.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '2.7.1'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'ictce', 'version': '5.4.0'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7.1-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7.1-ictce-5.5.0.eb
deleted file mode 100644
index be67b39a9ae..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-2.7.1-ictce-5.5.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '2.7.1'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.1-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.1-ictce-5.5.0.eb
deleted file mode 100755
index 152bd6207af..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.1-ictce-5.5.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '3.0.1'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-CrayGNU-2015.06.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-CrayGNU-2015.06.eb
deleted file mode 100644
index 1e373e5c59b..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-CrayGNU-2015.06.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '3.0.2'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'CrayGNU', 'version': '2015.06'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-CrayGNU-2015.11.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-CrayGNU-2015.11.eb
deleted file mode 100644
index fbde1c1bed1..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-CrayGNU-2015.11.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '3.0.2'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'CrayGNU', 'version': '2015.11'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-foss-2014b.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-foss-2014b.eb
deleted file mode 100644
index 821e3cc963d..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-foss-2014b.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '3.0.2'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'foss', 'version': '2014b'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-foss-2015a.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-foss-2015a.eb
deleted file mode 100644
index 0b270e9381f..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-foss-2015a.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '3.0.2'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-ictce-7.1.2.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-ictce-7.1.2.eb
deleted file mode 100644
index 01778cb7cb8..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-ictce-7.1.2.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '3.0.2'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'ictce', 'version': '7.1.2'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-intel-2014b.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-intel-2014b.eb
deleted file mode 100644
index 675e098b5e9..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-intel-2014b.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '3.0.2'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-intel-2015a.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-intel-2015a.eb
deleted file mode 100644
index c846b08785b..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.2-intel-2015a.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '3.0.2'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["bison", "yacc"]] + ["lib/liby.a"],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.4-foss-2015a.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.4-foss-2015a.eb
deleted file mode 100644
index 9930e8831cd..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.4-foss-2015a.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '3.0.4'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['bison', 'yacc']] + [('lib/liby.a', 'lib64/liby.a')],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.4-foss-2015b.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.4-foss-2015b.eb
deleted file mode 100644
index 9fc9d5e56f8..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.4-foss-2015b.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '3.0.4'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['bison', 'yacc']] + [('lib/liby.a', 'lib64/liby.a')],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.4-intel-2015a.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.4-intel-2015a.eb
deleted file mode 100644
index 902285723e7..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.4-intel-2015a.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '3.0.4'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['bison', 'yacc']] + [('lib/liby.a', 'lib64/liby.a')],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.4-intel-2015b.eb b/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.4-intel-2015b.eb
deleted file mode 100644
index a20a7fb8d96..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bison/Bison-3.0.4-intel-2015b.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Bison'
-version = '3.0.4'
-
-homepage = 'http://www.gnu.org/software/bison'
-description = """Bison is a general-purpose parser generator that converts an annotated context-free grammar
- into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-builddependencies = [('M4', '1.4.17')]
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['bison', 'yacc']] + [('lib/liby.a', 'lib64/liby.a')],
- 'dirs': [],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/BitSeq/BitSeq-0.7.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/BitSeq/BitSeq-0.7.0-goolf-1.4.10.eb
deleted file mode 100644
index 49a48ad18fd..00000000000
--- a/easybuild/easyconfigs/__archive__/b/BitSeq/BitSeq-0.7.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = "BitSeq"
-version = "0.7.0"
-
-homepage = 'https://code.google.com/p/bitseq/'
-description = """ BitSeq (Bayesian Inference of Transcripts from Sequencing Data) is an
- application for inferring expression levels of individual transcripts from sequencing (RNA-Seq)
- data and estimating differential expression (DE) between conditions. An advantage of this
- approach is the ability to account for both technical uncertainty and intrinsic biological
- variance in order to avoid false DE calls. The technical contribution to the uncertainty comes
- both from finite read-depth and the possibly ambiguous mapping of reads to multiple transcripts."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['https://bitseq.googlecode.com/files/']
-sources = [SOURCE_TAR_GZ]
-
-# put here the list of generated executables when compiling
-list_of_executables = ["convertSamples", "estimateDE", "estimateExpression", "estimateHyperPar",
- "estimateVBExpression", "extractSamples", "getFoldChange", "getGeneExpression",
- "getPPLR", "getVariance", "getWithinGeneExpression", "parseAlignment",
- "transposeLargeFile", "getCounts.py", "extractTranscriptInfo.py"]
-
-# this is the real EasyBuild line to copy all the executables to "bin"
-files_to_copy = [(list_of_executables, "bin")]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in list_of_executables],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Blitz++/Blitz++-0.10-goolf-1.5.16.eb b/easybuild/easyconfigs/__archive__/b/Blitz++/Blitz++-0.10-goolf-1.5.16.eb
deleted file mode 100644
index e75ab2de98e..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Blitz++/Blitz++-0.10-goolf-1.5.16.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'Blitz++'
-version = '0.10'
-
-homepage = 'http://blitz.sourceforge.net/'
-description = """Blitz++ is a (LGPLv3+) licensed meta-template library for array manipulation in C++
- with a speed comparable to Fortran implementations, while preserving an object-oriented interface"""
-
-toolchain = {'name': 'goolf', 'version': '1.5.16'}
-
-sources = ['blitz-%(version)s.tar.gz']
-source_urls = [('https://sourceforge.net/projects/blitz/files/blitz/%(name)s %(version)s', 'download')]
-
-sanity_check_paths = {
- 'files': ['lib/libblitz.a'],
- 'dirs': ['include/blitz/array', 'include/blitz/gnu', 'include/blitz/meta', 'include/random', 'lib/pkgconfig'],
-}
-
-configopts = '--enable-shared'
-
-moduleclass = 'lib'
diff --git a/easybuild/easyconfigs/__archive__/b/Bonnie++/Bonnie++-1.03e-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/Bonnie++/Bonnie++-1.03e-goolf-1.4.10.eb
deleted file mode 100644
index 63fcc660465..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bonnie++/Bonnie++-1.03e-goolf-1.4.10.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'Bonnie++'
-version = '1.03e'
-
-homepage = 'http://www.coker.com.au/bonnie++/'
-description = """Bonnie++-1.03e: Enhanced performance Test of Filesystem I/O"""
-
-sources = [SOURCELOWER_TGZ]
-source_urls = ['http://www.coker.com.au/bonnie++/']
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sanity_check_paths = {
- 'files': ['sbin/bonnie++'],
- 'dirs': []
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/Bonnie++/Bonnie++-1.03e-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/b/Bonnie++/Bonnie++-1.03e-ictce-5.3.0.eb
deleted file mode 100644
index cce4aa524ab..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bonnie++/Bonnie++-1.03e-ictce-5.3.0.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'Bonnie++'
-version = '1.03e'
-
-homepage = 'http://www.coker.com.au/bonnie++/'
-description = """Bonnie++-1.03e: Enhanced performance Test of Filesystem I/O"""
-
-sources = [SOURCELOWER_TGZ]
-source_urls = ['http://www.coker.com.au/bonnie++/']
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sanity_check_paths = {
- 'files': ['sbin/bonnie++'],
- 'dirs': []
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.47.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.47.0-goolf-1.4.10.eb
deleted file mode 100644
index 3a571ac328a..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.47.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-name = 'Boost'
-version = '1.47.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-patches = ['boost-%(version)s_glibcxx-pthreads.patch']
-
-dependencies = [('bzip2', '1.0.6')]
-
-configopts = '--without-libraries=python'
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = [('zlib-devel', 'zlib1g-dev')]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.49.0-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.49.0-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index 26f6bca712d..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.49.0-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-name = 'Boost'
-version = '1.49.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.3'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = [('zlib-devel', 'zlib1g-dev')]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.49.0-goolf-1.4.10-Python-2.7.5.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.49.0-goolf-1.4.10-Python-2.7.5.eb
deleted file mode 100644
index a28c67be704..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.49.0-goolf-1.4.10-Python-2.7.5.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-name = 'Boost'
-version = '1.49.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.5'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = [('zlib-devel', 'zlib1g-dev')]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.49.0-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.49.0-ictce-5.3.0-Python-2.7.3.eb
deleted file mode 100644
index ea0b132e922..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.49.0-ictce-5.3.0-Python-2.7.3.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-name = 'Boost'
-version = '1.49.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-patches = ['intellinuxjam_fPIC.patch']
-
-pythonversion = '2.7.3'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = [('zlib-devel', 'zlib1g-dev')]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.51.0-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.51.0-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index 95d230ca9d3..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.51.0-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-name = 'Boost'
-version = '1.51.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.3'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = [('zlib-devel', 'zlib1g-dev')]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.51.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.51.0-goolf-1.4.10.eb
deleted file mode 100644
index fe0aacf8ddb..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.51.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-name = 'Boost'
-version = '1.51.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-dependencies = [('bzip2', '1.0.6')]
-
-configopts = '--without-libraries=python'
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = [('zlib-devel', 'zlib1g-dev')]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.51.0-ictce-5.2.0.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.51.0-ictce-5.2.0.eb
deleted file mode 100644
index 078df28545e..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.51.0-ictce-5.2.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-name = 'Boost'
-version = '1.51.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'ictce', 'version': '5.2.0'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-dependencies = [('bzip2', '1.0.6')]
-
-configopts = '--without-libraries=python'
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = [('zlib-devel', 'zlib1g-dev')]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.51.0-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.51.0-ictce-5.3.0-Python-2.7.3.eb
deleted file mode 100644
index c0d9d3958e2..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.51.0-ictce-5.3.0-Python-2.7.3.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-name = 'Boost'
-version = '1.51.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-patches = ['intellinuxjam_fPIC.patch']
-
-pythonversion = '2.7.3'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = [('zlib-devel', 'zlib1g-dev')]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.51.0-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.51.0-ictce-5.3.0.eb
deleted file mode 100644
index 016ded779dc..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.51.0-ictce-5.3.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-name = 'Boost'
-version = '1.51.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-dependencies = [('bzip2', '1.0.6')]
-
-configopts = '--without-libraries=python'
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = [('zlib-devel', 'zlib1g-dev')]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.52.0-foss-2015a.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.52.0-foss-2015a.eb
deleted file mode 100644
index 68ec7366721..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.52.0-foss-2015a.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-name = 'Boost'
-version = '1.52.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
-]
-
-configopts = '--without-libraries=python'
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-GCC-4.7.3-serial.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-GCC-4.7.3-serial.eb
deleted file mode 100644
index 98fbdcdb13e..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-GCC-4.7.3-serial.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'Boost'
-version = '1.53.0'
-versionsuffix = '-serial'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'GCC', 'version': '4.7.3'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-configopts = '--with-libraries=serialization'
-
-sanity_check_paths = {
- 'files': ["lib/libboost_serialization.a"],
- 'dirs': []
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-goolf-1.4.10.eb
deleted file mode 100644
index 90c4f9d0e59..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-name = 'Boost'
-version = '1.53.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-dependencies = [('bzip2', '1.0.6')]
-
-configopts = '--without-libraries=python'
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = [('zlib-devel', 'zlib1g-dev')]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-goolf-1.7.20.eb
deleted file mode 100644
index e7642e0b5ff..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-goolf-1.7.20.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-name = 'Boost'
-version = '1.53.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
-]
-
-configopts = '--without-libraries=python'
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-ictce-5.2.0.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-ictce-5.2.0.eb
deleted file mode 100644
index 6c8ec824c02..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-ictce-5.2.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-name = 'Boost'
-version = '1.53.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'ictce', 'version': '5.2.0'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-dependencies = [('bzip2', '1.0.6')]
-
-configopts = '--without-libraries=python'
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = [('zlib-devel', 'zlib1g-dev')]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-ictce-5.3.0-Python-2.7.3.eb
deleted file mode 100644
index 79d1f854835..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-ictce-5.3.0-Python-2.7.3.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-name = 'Boost'
-version = '1.53.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-patches = ['intellinuxjam_fPIC.patch']
-
-pythonversion = '2.7.3'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = [('zlib-devel', 'zlib1g-dev')]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-ictce-5.3.0-Python-2.7.5.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-ictce-5.3.0-Python-2.7.5.eb
deleted file mode 100644
index 0ed130e7a2f..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-ictce-5.3.0-Python-2.7.5.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-name = 'Boost'
-version = '1.53.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.5'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = [('zlib-devel', 'zlib1g-dev')]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-ictce-5.3.0.eb
deleted file mode 100644
index 125204c6c15..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-ictce-5.3.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-name = 'Boost'
-version = '1.53.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-dependencies = [('bzip2', '1.0.6')]
-
-configopts = '--without-libraries=python'
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = [('zlib-devel', 'zlib1g-dev')]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-ictce-5.5.0-Python-2.7.5.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-ictce-5.5.0-Python-2.7.5.eb
deleted file mode 100644
index d634055e625..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-ictce-5.5.0-Python-2.7.5.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-name = 'Boost'
-version = '1.53.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-patches = ['intellinuxjam_fPIC.patch']
-
-pythonversion = '2.7.5'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = [('zlib-devel', 'zlib1g-dev')]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-ictce-6.2.5.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-ictce-6.2.5.eb
deleted file mode 100644
index 2d3562ccc9e..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.53.0-ictce-6.2.5.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-name = 'Boost'
-version = '1.53.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'ictce', 'version': '6.2.5'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-dependencies = [('bzip2', '1.0.6')]
-
-configopts = '--without-libraries=python'
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = [('zlib-devel', 'zlib1g-dev')]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.54.0-intel-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.54.0-intel-2015b-Python-2.7.10.eb
deleted file mode 100644
index cdb000efd6e..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.54.0-intel-2015b-Python-2.7.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'Boost'
-version = '1.54.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.10'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-foss-2014b-Python-2.7.8.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-foss-2014b-Python-2.7.8.eb
deleted file mode 100644
index 8d26308267b..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-foss-2014b-Python-2.7.8.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-name = 'Boost'
-version = '1.55.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'foss', 'version': '2014b'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.8'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = ['zlib-devel']
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-foss-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-foss-2015a-Python-2.7.9.eb
deleted file mode 100644
index 54a936cee57..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-foss-2015a-Python-2.7.9.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'Boost'
-version = '1.55.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.9'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-goolf-1.7.20.eb
deleted file mode 100644
index 644fd26b387..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-goolf-1.7.20.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-name = 'Boost'
-version = '1.55.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-source_urls = [SOURCEFORGE_SOURCE]
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8')]
-
-configopts = '--without-libraries=python'
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-ictce-5.5.0-Python-2.7.6.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-ictce-5.5.0-Python-2.7.6.eb
deleted file mode 100644
index 6436848a16f..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-ictce-5.5.0-Python-2.7.6.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-name = 'Boost'
-version = '1.55.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-patches = ['intellinuxjam_fPIC.patch']
-
-pythonversion = '2.7.6'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = [('zlib-devel', 'zlib1g-dev')]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-ictce-7.1.2-Python-2.7.8.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-ictce-7.1.2-Python-2.7.8.eb
deleted file mode 100644
index 005df0b6244..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-ictce-7.1.2-Python-2.7.8.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-name = 'Boost'
-version = '1.55.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'ictce', 'version': '7.1.2'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-patches = ['intellinuxjam_fPIC.patch', 'boost-impi5.patch']
-
-pythonversion = '2.7.8'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = [('zlib-devel', 'zlib1g-dev')]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-intel-2014b-Python-2.7.8.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-intel-2014b-Python-2.7.8.eb
deleted file mode 100644
index 7c8f276e22f..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-intel-2014b-Python-2.7.8.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-name = 'Boost'
-version = '1.55.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-patches = ['intellinuxjam_fPIC.patch']
-
-pythonversion = '2.7.8'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = [('zlib-devel', 'zlib1g-dev')]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-intel-2015a-Python-2.7.8.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-intel-2015a-Python-2.7.8.eb
deleted file mode 100644
index 4646d38d216..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.55.0-intel-2015a-Python-2.7.8.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'Boost'
-version = '1.55.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.8'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.57.0-foss-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.57.0-foss-2015a-Python-2.7.9.eb
deleted file mode 100644
index 944128c6d51..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.57.0-foss-2015a-Python-2.7.9.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'Boost'
-version = '1.57.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.9'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.57.0-foss-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.57.0-foss-2015b-Python-2.7.10.eb
deleted file mode 100644
index f89cb288d3e..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.57.0-foss-2015b-Python-2.7.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'Boost'
-version = '1.57.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.10'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.57.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.57.0-goolf-1.4.10.eb
deleted file mode 100644
index d038bec2b50..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.57.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-name = 'Boost'
-version = '1.57.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
-]
-
-configopts = '--without-libraries=python'
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.57.0-intel-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.57.0-intel-2015a-Python-2.7.9.eb
deleted file mode 100644
index cf98c58fdf7..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.57.0-intel-2015a-Python-2.7.9.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'Boost'
-version = '1.57.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.9'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-foss-2015.05-Python-2.7.9.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-foss-2015.05-Python-2.7.9.eb
deleted file mode 100644
index 24316a807ff..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-foss-2015.05-Python-2.7.9.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'Boost'
-version = '1.58.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'foss', 'version': '2015.05'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.9'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-foss-2015a-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-foss-2015a-Python-2.7.10.eb
deleted file mode 100644
index 76622b02637..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-foss-2015a-Python-2.7.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'Boost'
-version = '1.58.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.10'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-foss-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-foss-2015a-Python-2.7.9.eb
deleted file mode 100644
index 02c7922f8dd..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-foss-2015a-Python-2.7.9.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'Boost'
-version = '1.58.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.9'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-foss-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-foss-2015b-Python-2.7.10.eb
deleted file mode 100644
index d4ec7f6e792..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-foss-2015b-Python-2.7.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'Boost'
-version = '1.58.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.10'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-goolf-1.7.20-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-goolf-1.7.20-Python-2.7.10.eb
deleted file mode 100644
index dba26f94f44..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-goolf-1.7.20-Python-2.7.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'Boost'
-version = '1.58.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-source_urls = [SOURCEFORGE_SOURCE]
-
-pythonversion = '2.7.10'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-goolf-1.7.20.eb
deleted file mode 100644
index bee3eb38e4f..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-goolf-1.7.20.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-name = 'Boost'
-version = '1.58.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-source_urls = [SOURCEFORGE_SOURCE]
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
-]
-
-configopts = '--without-libraries=python'
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-intel-2015a-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-intel-2015a-Python-2.7.10.eb
deleted file mode 100644
index d48f0872ddc..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-intel-2015a-Python-2.7.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'Boost'
-version = '1.58.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.10'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-intel-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-intel-2015a-Python-2.7.9.eb
deleted file mode 100644
index 9d905a95e3c..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-intel-2015a-Python-2.7.9.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'Boost'
-version = '1.58.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.9'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-intel-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-intel-2015b-Python-2.7.10.eb
deleted file mode 100644
index b3c4d08fada..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.58.0-intel-2015b-Python-2.7.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'Boost'
-version = '1.58.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.10'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.59.0-intel-2015a-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.59.0-intel-2015a-Python-2.7.10.eb
deleted file mode 100644
index bdadbc8ed12..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.59.0-intel-2015a-Python-2.7.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'Boost'
-version = '1.59.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.10'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.59.0-intel-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.59.0-intel-2015b-Python-2.7.10.eb
deleted file mode 100644
index d65dc97c6cd..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.59.0-intel-2015b-Python-2.7.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'Boost'
-version = '1.59.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.10'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.59.0-intel-2015b-Python-2.7.11.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.59.0-intel-2015b-Python-2.7.11.eb
deleted file mode 100644
index 57d1d20c886..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.59.0-intel-2015b-Python-2.7.11.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'Boost'
-version = '1.59.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-pythonversion = '2.7.11'
-versionsuffix = '-Python-%s' % pythonversion
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('Python', pythonversion),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.59.0-intel-2015b.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.59.0-intel-2015b.eb
deleted file mode 100644
index 61f63ebb4ea..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.59.0-intel-2015b.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-name = 'Boost'
-version = '1.59.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-configopts = '--without-libraries=python'
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.60.0-CrayGNU-2016.03-Python-2.7.11.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.60.0-CrayGNU-2016.03-Python-2.7.11.eb
deleted file mode 100644
index 3ce0ec992a1..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.60.0-CrayGNU-2016.03-Python-2.7.11.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-# @author: Luca Marsella (CSCS)
-# @author: Guilherme Peretti-Pezzi (CSCS)
-# @author: Petar Forai (IMP/IMBA)
-
-name = 'Boost'
-version = "1.60.0"
-versionsuffix = '-Python-%(pyver)s'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'CrayGNU', 'version': '2016.03'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%%(namelower)s_%s.tar.bz2' % '_'.join(version.split('.'))]
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('Python', '2.7.11'),
-]
-
-# also build boost_mpi
-boost_mpi = True
-
-osdependencies = [('zlib-devel', 'zlib1g-dev')]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.60.0-foss-2015a.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.60.0-foss-2015a.eb
deleted file mode 100644
index 8b079d2cebd..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.60.0-foss-2015a.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'Boost'
-version = '1.60.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-source_urls = [SOURCEFORGE_SOURCE]
-
-patches = ['Boost-%(version)s_fix-auto-pointer-reg.patch']
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
-]
-
-configopts = '--without-libraries=python'
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.60.0-foss-2015b.eb b/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.60.0-foss-2015b.eb
deleted file mode 100644
index ffc05c737eb..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Boost/Boost-1.60.0-foss-2015b.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'Boost'
-version = '1.60.0'
-
-homepage = 'http://www.boost.org/'
-description = """Boost provides free peer-reviewed portable C++ source libraries."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-sources = ['%%(namelower)s_%s.tar.gz' % '_'.join(version.split('.'))]
-source_urls = [SOURCEFORGE_SOURCE]
-
-patches = ['Boost-%(version)s_fix-auto-pointer-reg.patch']
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
-]
-
-configopts = '--without-libraries=python'
-
-# also build boost_mpi
-boost_mpi = True
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie/Bowtie-1.0.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/Bowtie/Bowtie-1.0.0-goolf-1.4.10.eb
deleted file mode 100644
index cbee832a032..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie/Bowtie-1.0.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,15 +0,0 @@
-name = 'Bowtie'
-version = '1.0.0'
-
-homepage = 'http://bowtie-bio.sourceforge.net/index.shtml'
-description = """Bowtie is an ultrafast, memory-efficient short read aligner.
-It aligns short DNA sequences (reads) to the human genome.
-"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = ['%(namelower)s-%(version)s-src.zip']
-source_urls = ['http://download.sourceforge.net/bowtie-bio/']
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie/Bowtie-1.1.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/Bowtie/Bowtie-1.1.1-goolf-1.4.10.eb
deleted file mode 100644
index b0b34461829..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie/Bowtie-1.1.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-# Modified from existing version by:
-# Robert Schmidt
-# Ottawa Hospital Research Institute - Bioinformatics Team
-
-name = 'Bowtie'
-version = '1.1.1'
-
-homepage = 'http://bowtie-bio.sourceforge.net/index.shtml'
-description = """Bowtie is an ultrafast, memory-efficient short read aligner.
-It aligns short DNA sequences (reads) to the human genome.
-"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = ['%(namelower)s-%(version)s-src.zip']
-source_urls = ['http://download.sourceforge.net/bowtie-bio/']
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie/Bowtie-1.1.2-foss-2015b.eb b/easybuild/easyconfigs/__archive__/b/Bowtie/Bowtie-1.1.2-foss-2015b.eb
deleted file mode 100644
index b83380f7c8c..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie/Bowtie-1.1.2-foss-2015b.eb
+++ /dev/null
@@ -1,18 +0,0 @@
-# Modified from existing version by:
-# Robert Schmidt
-# Ottawa Hospital Research Institute - Bioinformatics Team
-name = 'Bowtie'
-version = '1.1.2'
-
-homepage = 'http://bowtie-bio.sourceforge.net/index.shtml'
-description = """Bowtie is an ultrafast, memory-efficient short read aligner.
-It aligns short DNA sequences (reads) to the human genome.
-"""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-toolchainopts = {'pic': True}
-
-sources = ['%(namelower)s-%(version)s-src.zip']
-source_urls = ['http://download.sourceforge.net/bowtie-bio/']
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie/Bowtie-1.1.2-intel-2015a.eb b/easybuild/easyconfigs/__archive__/b/Bowtie/Bowtie-1.1.2-intel-2015a.eb
deleted file mode 100644
index 6eb22c637f5..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie/Bowtie-1.1.2-intel-2015a.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-# Modified from existing version by:
-# Robert Schmidt
-# Ottawa Hospital Research Institute - Bioinformatics Team
-name = 'Bowtie'
-version = '1.1.2'
-
-homepage = 'http://bowtie-bio.sourceforge.net/index.shtml'
-description = """Bowtie is an ultrafast, memory-efficient short read aligner.
-It aligns short DNA sequences (reads) to the human genome.
-"""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = ['%(namelower)s-%(version)s-src.zip']
-source_urls = ['http://download.sourceforge.net/bowtie-bio/']
-
-patches = ['int64typedef.patch']
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie/Bowtie-1.1.2-intel-2015b.eb b/easybuild/easyconfigs/__archive__/b/Bowtie/Bowtie-1.1.2-intel-2015b.eb
deleted file mode 100644
index e8fb12a0cf2..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie/Bowtie-1.1.2-intel-2015b.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-# Modified from existing version by:
-# Robert Schmidt
-# Ottawa Hospital Research Institute - Bioinformatics Team
-name = 'Bowtie'
-version = '1.1.2'
-
-homepage = 'http://bowtie-bio.sourceforge.net/index.shtml'
-description = """Bowtie is an ultrafast, memory-efficient short read aligner.
-It aligns short DNA sequences (reads) to the human genome.
-"""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = ['%(namelower)s-%(version)s-src.zip']
-source_urls = ['http://download.sourceforge.net/bowtie-bio/']
-
-patches = ['int64typedef.patch']
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.0.2-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.0.2-goolf-1.4.10.eb
deleted file mode 100644
index 696fee331f6..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.0.2-goolf-1.4.10.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'Bowtie2'
-version = '2.0.2'
-
-homepage = 'http://bowtie-bio.sourceforge.net/bowtie2/index.shtml'
-description = """Bowtie 2 is an ultrafast and memory-efficient tool
-for aligning sequencing reads to long reference sequences."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True}
-
-sources = ['%(namelower)s-%(version)s-source.zip']
-source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')]
-
-# to add scripts folder to $PATH just uncomment this line
-# modextrapaths = {'PATH': 'scripts'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.0.2-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.0.2-ictce-5.3.0.eb
deleted file mode 100644
index c6f9f99e381..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.0.2-ictce-5.3.0.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'Bowtie2'
-version = '2.0.2'
-
-homepage = 'http://bowtie-bio.sourceforge.net/bowtie2/index.shtml'
-description = """Bowtie 2 is an ultrafast and memory-efficient tool
- for aligning sequencing reads to long reference sequences."""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'pic': True}
-
-sources = ['%(namelower)s-%(version)s-source.zip']
-source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')]
-
-# to add scripts folder to $PATH just uncomment this line
-# modextrapaths = {'PATH': 'scripts'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.0.5-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.0.5-goolf-1.4.10.eb
deleted file mode 100644
index 5f0e98a15a4..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.0.5-goolf-1.4.10.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-name = 'Bowtie2'
-version = '2.0.5'
-
-homepage = 'http://bowtie-bio.sourceforge.net/bowtie2/index.shtml'
-description = """ Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads
- to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s
- of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes.
- Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome,
- its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True}
-
-sources = ['%(namelower)s-%(version)s-source.zip']
-source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')]
-
-files_to_copy = [
- (["bowtie2", "bowtie2-align", "bowtie2-build", "bowtie2-inspect"], 'bin'),
- "doc", "example", "scripts"]
-
-# to add scripts folder to $PATH just uncomment this line
-# modextrapaths = {'PATH': 'scripts'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.0.6-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.0.6-goolf-1.4.10.eb
deleted file mode 100644
index 45020b3fa7e..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.0.6-goolf-1.4.10.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-name = 'Bowtie2'
-version = '2.0.6'
-
-homepage = 'http://bowtie-bio.sourceforge.net/bowtie2/index.shtml'
-description = """ Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads
- to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s
- of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes.
- Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome,
- its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True}
-
-sources = ['%(namelower)s-%(version)s-source.zip']
-source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')]
-
-files_to_copy = [
- (["bowtie2", "bowtie2-align", "bowtie2-build", "bowtie2-inspect"], 'bin'),
- "doc", "example", "scripts"]
-
-# to add scripts folder to $PATH just uncomment this line
-# modextrapaths = {'PATH': 'scripts'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.1.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.1.0-goolf-1.4.10.eb
deleted file mode 100644
index 151407252cb..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.1.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-name = 'Bowtie2'
-version = '2.1.0'
-
-homepage = 'http://bowtie-bio.sourceforge.net/bowtie2/index.shtml'
-description = """ Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads
- to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s
- of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes.
- Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome,
- its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True}
-
-sources = ['%(namelower)s-%(version)s-source.zip']
-source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')]
-
-# to add scripts folder to $PATH just uncomment this line
-# modextrapaths = {'PATH': 'scripts'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.1.0-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.1.0-ictce-5.5.0.eb
deleted file mode 100644
index ed9036db9f5..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.1.0-ictce-5.5.0.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'Bowtie2'
-version = '2.1.0'
-
-homepage = 'http://bowtie-bio.sourceforge.net/bowtie2/index.shtml'
-description = """Bowtie 2 is an ultrafast and memory-efficient tool
- for aligning sequencing reads to long reference sequences."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'pic': True}
-
-# note: SOURCEFORGE_SOURCE constant doesn't work here because of bowtie-bio used in URL
-source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')]
-sources = ['%(namelower)s-%(version)s-source.zip']
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.0-goolf-1.4.10.eb
deleted file mode 100644
index f453956b9ee..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-name = 'Bowtie2'
-version = '2.2.0'
-
-homepage = 'http://bowtie-bio.sourceforge.net/bowtie2/index.shtml'
-description = """ Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads
- to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s
- of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes.
- Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome,
- its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True}
-
-sources = ['%(namelower)s-%(version)s-source.zip']
-source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')]
-
-# to add scripts folder to $PATH just uncomment this line
-# modextrapaths = {'PATH': 'scripts'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.2-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.2-goolf-1.4.10.eb
deleted file mode 100644
index d67420cc104..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.2-goolf-1.4.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-name = 'Bowtie2'
-version = '2.2.2'
-
-homepage = 'http://bowtie-bio.sourceforge.net/bowtie2/index.shtml'
-description = """ Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads
- to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s
- of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes.
- Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome,
- its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True}
-
-sources = ['%(namelower)s-%(version)s-source.zip']
-source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')]
-
-# to add script folder to path just uncomment this line
-# modextrapaths = {'PATH': 'scripts'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.4-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.4-goolf-1.4.10.eb
deleted file mode 100644
index 726d063f446..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.4-goolf-1.4.10.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-# Modified by: Robert Schmidt
-# Ottawa Hospital Research Institute - Bioinformatics Team
-
-name = 'Bowtie2'
-version = '2.2.4'
-
-homepage = 'http://bowtie-bio.sourceforge.net/bowtie2/index.shtml'
-description = """ Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads
- to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s
- of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes.
- Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome,
- its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True}
-
-sources = ['%(namelower)s-%(version)s-source.zip']
-source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')]
-
-# to add script folder to path just uncomment this line
-# modextrapaths = {'PATH': 'scripts'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.5-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.5-goolf-1.7.20.eb
deleted file mode 100644
index 91e64b60c7b..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.5-goolf-1.7.20.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-# Modified by: Robert Schmidt
-# Ottawa Hospital Research Institute - Bioinformatics Team
-
-name = 'Bowtie2'
-version = '2.2.5'
-
-homepage = 'http://bowtie-bio.sourceforge.net/bowtie2/index.shtml'
-description = """ Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads
- to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s
- of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes.
- Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome,
- its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-toolchainopts = {'pic': True}
-
-sources = ['%(namelower)s-%(version)s-source.zip']
-source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')]
-
-# to add script folder to path just uncomment this line
-# modextrapaths = {'PATH': 'scripts'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.5-intel-2015a.eb b/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.5-intel-2015a.eb
deleted file mode 100644
index 7849523909a..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.5-intel-2015a.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-# Modified by: Robert Schmidt
-# Ottawa Hospital Research Institute - Bioinformatics Team
-
-name = 'Bowtie2'
-version = '2.2.5'
-
-homepage = 'http://bowtie-bio.sourceforge.net/bowtie2/index.shtml'
-description = """ Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads
- to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s
- of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes.
- Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome,
- its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'pic': True}
-
-sources = ['%(namelower)s-%(version)s-source.zip']
-source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')]
-
-# to add script folder to path just uncomment this line
-# modextrapaths = {'PATH': 'scripts'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.6-foss-2015b.eb b/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.6-foss-2015b.eb
deleted file mode 100644
index 379fb19b0a8..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.6-foss-2015b.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-# Modified by: Robert Schmidt
-# Ottawa Hospital Research Institute - Bioinformatics Team
-
-name = 'Bowtie2'
-version = '2.2.6'
-
-homepage = 'http://bowtie-bio.sourceforge.net/bowtie2/index.shtml'
-description = """ Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads
- to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s
- of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes.
- Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome,
- its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-toolchainopts = {'pic': True}
-
-sources = ['%(namelower)s-%(version)s-source.zip']
-source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')]
-
-# to add script folder to path just uncomment this line
-# modextrapaths = {'PATH': 'scripts'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.6-intel-2015b.eb b/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.6-intel-2015b.eb
deleted file mode 100644
index 37dd9eeb5e9..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.6-intel-2015b.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-# Modified by: Robert Schmidt
-# Ottawa Hospital Research Institute - Bioinformatics Team
-
-name = 'Bowtie2'
-version = '2.2.6'
-
-homepage = 'http://bowtie-bio.sourceforge.net/bowtie2/index.shtml'
-description = """ Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads
- to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s
- of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes.
- Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome,
- its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'pic': True}
-
-sources = ['%(namelower)s-%(version)s-source.zip']
-source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')]
-
-# to add script folder to path just uncomment this line
-# modextrapaths = {'PATH': 'scripts'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.7-foss-2015b.eb b/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.7-foss-2015b.eb
deleted file mode 100644
index e3549fe5dc4..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.7-foss-2015b.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-# Modified by: Robert Schmidt
-# Ottawa Hospital Research Institute - Bioinformatics Team
-# Modified by: Adam Huffman
-# The Francis Crick Institute
-
-name = 'Bowtie2'
-version = '2.2.7'
-
-homepage = 'http://bowtie-bio.sourceforge.net/bowtie2/index.shtml'
-description = """ Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads
- to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s
- of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes.
- Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome,
- its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-toolchainopts = {'pic': True}
-
-sources = ['%(namelower)s-%(version)s-source.zip']
-source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')]
-
-# to add script folder to path just uncomment this line
-# modextrapaths = {'PATH': 'scripts'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.8-foss-2015b.eb b/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.8-foss-2015b.eb
deleted file mode 100644
index c461c553d10..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.8-foss-2015b.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-# Modified by: Robert Schmidt
-# Ottawa Hospital Research Institute - Bioinformatics Team
-# Modified by: Adam Huffman
-# The Francis Crick Institute
-
-name = 'Bowtie2'
-version = '2.2.8'
-
-homepage = 'http://bowtie-bio.sourceforge.net/bowtie2/index.shtml'
-description = """ Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads
- to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s
- of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes.
- Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome,
- its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-toolchainopts = {'pic': True}
-
-sources = ['%(namelower)s-%(version)s-source.zip']
-source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')]
-
-# to add script folder to path just uncomment this line
-# modextrapaths = {'PATH': 'scripts'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.9-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.9-goolf-1.7.20.eb
deleted file mode 100644
index 728208e851c..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bowtie2/Bowtie2-2.2.9-goolf-1.7.20.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-# Modified by: Robert Schmidt
-# Ottawa Hospital Research Institute - Bioinformatics Team
-# Modified by: Adam Huffman
-# The Francis Crick Institute
-
-name = 'Bowtie2'
-version = "2.2.9"
-
-homepage = 'http://bowtie-bio.sourceforge.net/bowtie2/index.shtml'
-description = """ Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads
- to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s
- of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes.
- Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome,
- its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-toolchainopts = {'pic': True, 'cstd': 'c++11'}
-
-sources = ['%(namelower)s-%(version)s-source.zip']
-source_urls = [('http://sourceforge.net/projects/bowtie-bio/files/%(namelower)s/%(version)s', 'download')]
-
-# to add script folder to path just uncomment this line
-# modextrapaths = {'PATH': 'scripts'}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/Bsoft/Bsoft-1.8.8-goolf-1.5.14.eb b/easybuild/easyconfigs/__archive__/b/Bsoft/Bsoft-1.8.8-goolf-1.5.14.eb
deleted file mode 100644
index 773825cc06d..00000000000
--- a/easybuild/easyconfigs/__archive__/b/Bsoft/Bsoft-1.8.8-goolf-1.5.14.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-easyblock = 'CmdCp'
-
-name = 'Bsoft'
-version = '1.8.8'
-
-homepage = 'http://lsbr.niams.nih.gov/bsoft/'
-description = """Bsoft is a collection of programs and a platform for development of software
-for image and molecular processing in structural biology. Problems in structural biology
-are approached with a highly modular design, allowing fast development of new algorithms
-without the burden of issues such as file I/O. It provides an easily accessible interface,
-a resource that can be and has been used in other packages."""
-
-toolchain = {'name': 'goolf', 'version': '1.5.14'}
-toolchainopts = {'openmp': True}
-
-source_urls = ['https://lsbr.niams.nih.gov/bsoft/old/']
-sources = ['%%(namelower)s%s.tar' % '_'.join(version.split('.'))]
-checksums = ['a6ad9a9b070557de7bd3ea45adda96f96e6d24156167fdaf992215746e329cd3']
-
-cmds_map = [('.*', "./bmake omp fftw3=$EBROOTFFTW")]
-files_to_copy = ['bin']
-
-sanity_check_paths = {
- 'files': ['bin/bimg', 'bin/bnorm', 'bin/bview'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/bam-readcount/bam-readcount-0.7.4-foss-2015b.eb b/easybuild/easyconfigs/__archive__/b/bam-readcount/bam-readcount-0.7.4-foss-2015b.eb
deleted file mode 100644
index 2bde81198cc..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bam-readcount/bam-readcount-0.7.4-foss-2015b.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Adam Huffman
-# The Francis Crick Institute
-easyblock = 'CMakeMake'
-
-name = 'bam-readcount'
-version = '0.7.4'
-
-homepage = 'https://github.com/genome/bam-readcount'
-description = """Count DNA sequence reads in BAM files"""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-sources = ['v%(version)s.tar.gz']
-source_urls = ['https://github.com/genome/%(name)s/archive']
-
-patches = ['%(name)s-%(version)s-cmake_install_prefix.patch']
-
-builddependencies = [
- ('CMake', '3.4.1'),
-]
-
-dependencies = [
- ('SAMtools', '1.3'),
- ('zlib', '1.2.8'),
-]
-
-prebuildopts = "export SAMTOOLS_ROOT=${EBROOTSAMTOOLS}/include/bam && make deps &&"
-
-separate_build_dir = True
-
-sanity_check_paths = {
- 'files': ["bin/bam-readcount"],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/bam2fastq/bam2fastq-1.1.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/bam2fastq/bam2fastq-1.1.0-goolf-1.4.10.eb
deleted file mode 100644
index 17f4948e3d0..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bam2fastq/bam2fastq-1.1.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA
-# Authors:: George Tsouloupas , Fotis Georgatos , Kenneth Hoste (UGent)
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'MakeCp'
-
-name = 'bam2fastq'
-version = '1.1.0'
-
-homepage = 'http://www.hudsonalpha.org/gsl/information/software/bam2fastq'
-description = """The BAM format is an efficient method for storing and sharing data
- from modern, highly parallel sequencers. While primarily used for storing alignment information,
- BAMs can (and frequently do) store unaligned reads as well. """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-# eg. http://www.hudsonalpha.org/gsl/static/software/bam2fastq-1.1.0.tgz
-sources = [SOURCE_TGZ]
-source_urls = ['http://www.hudsonalpha.org/gsl/static/software/']
-
-files_to_copy = [(["bam2fastq"], 'bin')]
-
-dependencies = [('zlib', '1.2.7')]
-
-sanity_check_paths = {
- 'files': ["bin/bam2fastq"],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/bam2fastq/bam2fastq-1.1.0-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/b/bam2fastq/bam2fastq-1.1.0-ictce-5.3.0.eb
deleted file mode 100644
index 6826ce4726c..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bam2fastq/bam2fastq-1.1.0-ictce-5.3.0.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA
-# Authors:: George Tsouloupas , Fotis Georgatos , Kenneth Hoste (UGent)
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'MakeCp'
-
-name = 'bam2fastq'
-version = '1.1.0'
-
-homepage = 'http://www.hudsonalpha.org/gsl/information/software/bam2fastq'
-description = """The BAM format is an efficient method for storing and sharing data
- from modern, highly parallel sequencers. While primarily used for storing alignment information,
- BAMs can (and frequently do) store unaligned reads as well."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-# eg. http://www.hudsonalpha.org/gsl/static/software/bam2fastq-1.1.0.tgz
-sources = [SOURCE_TGZ]
-source_urls = ['http://www.hudsonalpha.org/gsl/static/software/']
-
-files_to_copy = [(["bam2fastq"], 'bin')]
-
-dependencies = [('zlib', '1.2.7')]
-
-sanity_check_paths = {
- 'files': ["bin/bam2fastq"],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/basemap/basemap-1.0.7-intel-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/b/basemap/basemap-1.0.7-intel-2015b-Python-2.7.10.eb
deleted file mode 100644
index 9b8b2b064c6..00000000000
--- a/easybuild/easyconfigs/__archive__/b/basemap/basemap-1.0.7-intel-2015b-Python-2.7.10.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-easyblock = 'PythonPackage'
-
-name = 'basemap'
-version = '1.0.7'
-
-homepage = 'http://matplotlib.org/basemap/'
-description = """The matplotlib basemap toolkit is a library for plotting 2D data on maps in Python"""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-sources = [SOURCE_TAR_GZ]
-source_urls = ['https://downloads.sourceforge.net/project/matplotlib/matplotlib-toolkits/basemap-%(version)s']
-
-prebuildopts = 'GEOS_DIR=$EBROOTGEOS'
-preinstallopts = prebuildopts
-
-python = 'Python'
-pythonver = '2.7.10'
-pythonshortver = '.'.join(pythonver.split('.')[0:2])
-versionsuffix = '-Python-%s' % pythonver
-
-dependencies = [
- ('Python', pythonver),
- ('matplotlib', '1.5.0', versionsuffix),
- ('GEOS', '3.5.0', versionsuffix),
- ('PIL', '1.1.7', versionsuffix),
-]
-
-sanity_check_paths = {
- 'files': ['lib/python%s/site-packages/_geoslib.%s' % (pythonshortver, SHLIB_EXT)],
- 'dirs': ['lib/python%s/site-packages/mpl_toolkits/basemap' % pythonshortver]
-}
-
-options = {'modulename': 'mpl_toolkits.basemap'}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/b/bbFTP/bbFTP-3.2.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/bbFTP/bbFTP-3.2.0-goolf-1.4.10.eb
deleted file mode 100644
index b5a81011546..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bbFTP/bbFTP-3.2.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,39 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'bbFTP'
-version = '3.2.0'
-
-homepage = 'http://doc.in2p3.fr/bbftp/'
-description = """bbFTP is a file transfer software. It implements its own transfer protocol,
- which is optimized for large files (larger than 2GB) and secure as it does not read the
- password in a file and encrypts the connection information. bbFTP main features are:
- * Encoded username and password at connection * SSH and Certificate authentication modules
- * Multi-stream transfer * Big windows as defined in RFC1323 * On-the-fly data compression
- * Automatic retry * Customizable time-outs * Transfer simulation
- * AFS authentication integration * RFIO interface"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-# fi. http://doc.in2p3.fr/bbftp/dist/bbftp-client-3.2.0.tar.gz
-sources = ['%s-client-%s.tar.gz' % (name.lower(), version)]
-source_urls = [homepage + 'dist']
-
-start_dir = 'bbftpc'
-
-buildopts = "CC=$CC"
-
-sanity_check_paths = {
- 'files': ['bin/bbftp'],
- 'dirs': []
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bbftpPRO/bbftpPRO-9.3.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/bbftpPRO/bbftpPRO-9.3.1-goolf-1.4.10.eb
deleted file mode 100644
index fe465ff81cd..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bbftpPRO/bbftpPRO-9.3.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'bbftpPRO'
-version = '9.3.1'
-
-homepage = 'http://bbftppro.myftp.org/'
-description = """bbftpPRO is a data transfer program - as opposed to ordinary file transfer programs,
- capable of transferring arbitrary data over LAN/WANs at parallel speed. bbftpPRO has been started
- at the Particle Physics Dept. of Weizmann Institute of Science as an enhancement of bbftp,
- developed at IN2P3, ref: http://doc.in2p3.fr/bbftp/"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-# fi. http://bbftppro.myftp.org/bbftpPRO-9.3.1.tar.bz2
-sources = [SOURCE_TAR_BZ2]
-source_urls = ['http://bbftppro.myftp.org/']
-
-unpack_options = '--strip-components=1' # we need to dive one level deep inside the tarball
-
-start_dir = 'bbftpc'
-
-sanity_check_paths = {
- 'files': ['bin/bbftp'],
- 'dirs': []
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bbftpPRO/bbftpPRO-9.3.1-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/b/bbftpPRO/bbftpPRO-9.3.1-ictce-5.3.0.eb
deleted file mode 100644
index 45d006c6b11..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bbftpPRO/bbftpPRO-9.3.1-ictce-5.3.0.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'bbftpPRO'
-version = '9.3.1'
-
-homepage = 'http://bbftppro.myftp.org/'
-description = """bbftpPRO is a data transfer program - as opposed to ordinary file transfer programs,
- capable of transferring arbitrary data over LAN/WANs at parallel speed. bbftpPRO has been started
- at the Particle Physics Dept. of Weizmann Institute of Science as an enhancement of bbftp,
- developed at IN2P3, ref: http://doc.in2p3.fr/bbftp/"""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-# fi. http://bbftppro.myftp.org/bbftpPRO-9.3.1.tar.bz2
-sources = [SOURCE_TAR_BZ2]
-source_urls = ['http://bbftppro.myftp.org/']
-
-unpack_options = '--strip-components=1' # we need to dive one level deep inside the tarball
-
-start_dir = 'bbftpc'
-
-sanity_check_paths = {
- 'files': ['bin/bbftp'],
- 'dirs': []
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/beagle-lib/beagle-lib-2.1.2-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/b/beagle-lib/beagle-lib-2.1.2-goolf-1.7.20.eb
deleted file mode 100644
index eb31afb5518..00000000000
--- a/easybuild/easyconfigs/__archive__/b/beagle-lib/beagle-lib-2.1.2-goolf-1.7.20.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'beagle-lib'
-version = '2.1.2'
-
-homepage = 'https://github.com/beagle-dev/beagle-lib'
-description = """beagle-lib is a high-performance library that can perform the core calculations at the heart of most
- Bayesian and Maximum Likelihood phylogenetics packages."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-# https://github.com/beagle-dev/beagle-lib/archive/beagle_release_2_1_2.tar.gz
-source_urls = ['https://github.com/beagle-dev/beagle-lib/archive/']
-sources = ['beagle_release_%s.tar.gz' % version.replace('.', '_')]
-
-dependencies = [('Java', '1.7.0_80', '', True)]
-
-builddependencies = [('Autotools', '20150215', '', True)]
-
-# parallel build does not work (to test)
-parallel = 1
-
-preconfigopts = "./autogen.sh && "
-
-sanity_check_paths = {
- 'files': ["include/libhmsbeagle-1/libhmsbeagle/%s" % includefile
- for includefile in ["beagle.h", "platform.h"]] +
- ["lib/libhmsbeagle%s.so" % libfile
- for libfile in ["-cpu", "-cpu-sse", "-jni", ""]],
- 'dirs': []
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/b/beagle-lib/beagle-lib-20120124-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/beagle-lib/beagle-lib-20120124-goolf-1.4.10.eb
deleted file mode 100644
index eba16d5a4e3..00000000000
--- a/easybuild/easyconfigs/__archive__/b/beagle-lib/beagle-lib-20120124-goolf-1.4.10.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'beagle-lib'
-version = '20120124'
-
-homepage = 'http://code.google.com/p/beagle-lib/'
-description = """
-beagle-lib is a high-performance library that can perform the core
-calculations at the heart of most Bayesian and Maximum Likelihood
-phylogenetics packages.
-"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-# there is no tarball provided, only SVN checkout through:
-# svn checkout http://beagle-lib.googlecode.com/svn/trunk/ beagle-lib
-sources = [SOURCE_TGZ]
-
-dependencies = [('Java', '1.7.0_15', '', True)]
-
-builddependencies = [('Autotools', '20150215', '', ('GCC', '4.7.2'))]
-
-patches = ['beagle-lib-20120124_GCC-4.7.patch']
-
-# parallel build does not work
-parallel = 1
-
-sanity_check_paths = {
- 'files': ["include/libhmsbeagle-1/libhmsbeagle/%s" % includefile
- for includefile in ["beagle.h", "platform.h"]] +
- ["lib/libhmsbeagle%s.so" % libfile
- for libfile in ["-cpu", "-cpu-sse", "-jni", ""]],
- 'dirs': []
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/b/beagle-lib/beagle-lib-20120124-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/b/beagle-lib/beagle-lib-20120124-ictce-5.3.0.eb
deleted file mode 100644
index 6d20b44133f..00000000000
--- a/easybuild/easyconfigs/__archive__/b/beagle-lib/beagle-lib-20120124-ictce-5.3.0.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'beagle-lib'
-version = '20120124'
-
-homepage = 'http://code.google.com/p/beagle-lib/'
-description = """beagle-lib is a high-performance library that can perform the core
- calculations at the heart of most Bayesian and Maximum Likelihood
- phylogenetics packages."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-# there is no tarball provided, only SVN checkout through:
-# svn checkout http://beagle-lib.googlecode.com/svn/trunk/ beagle-lib
-sources = [SOURCE_TGZ]
-
-dependencies = [('Java', '1.7.0_15', '', True)]
-
-builddependencies = [('Autotools', '20150215')]
-
-# parallel build does not work
-parallel = 1
-
-sanity_check_paths = {
- 'files': ["include/libhmsbeagle-1/libhmsbeagle/%s" % includefile
- for includefile in ["beagle.h", "platform.h"]] +
- ["lib/libhmsbeagle%s.so" % libfile
- for libfile in ["-cpu", "-cpu-sse", "-jni", ""]],
- 'dirs': []
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/b/beagle-lib/beagle-lib-20141202-intel-2015a.eb b/easybuild/easyconfigs/__archive__/b/beagle-lib/beagle-lib-20141202-intel-2015a.eb
deleted file mode 100644
index 0349d94e2ac..00000000000
--- a/easybuild/easyconfigs/__archive__/b/beagle-lib/beagle-lib-20141202-intel-2015a.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'beagle-lib'
-# revision r1261
-version = '20141202'
-
-homepage = 'http://code.google.com/p/beagle-lib/'
-description = """beagle-lib is a high-performance library that can perform the core
- calculations at the heart of most Bayesian and Maximum Likelihood
- phylogenetics packages."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-# there is no tarball provided, only SVN checkout through:
-# svn checkout http://beagle-lib.googlecode.com/svn/trunk/ beagle-lib
-sources = [SOURCE_TGZ]
-
-dependencies = [('Java', '1.8.0_31', '', True)]
-builddependencies = [('Autotools', '20150215')]
-
-preconfigopts = './autogen.sh && '
-
-# parallel build does not work
-parallel = 1
-
-sanity_check_paths = {
- 'files': ["include/libhmsbeagle-1/libhmsbeagle/%s" % includefile
- for includefile in ["beagle.h", "platform.h"]] +
- ["lib/libhmsbeagle%s.so" % libfile
- for libfile in ["-cpu", "-cpu-sse", "-jni", ""]],
- 'dirs': []
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/b/bibtexparser/bibtexparser-0.5-foss-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/__archive__/b/bibtexparser/bibtexparser-0.5-foss-2015a-Python-2.7.9.eb
deleted file mode 100644
index 2ec986e1f9d..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bibtexparser/bibtexparser-0.5-foss-2015a-Python-2.7.9.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = 'PythonPackage'
-
-name = 'bibtexparser'
-version = '0.5'
-
-homepage = 'https://github.com/sciunto-org/python-bibtexparser'
-description = """Bibtex parser in Python 2.7 and 3.x"""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-python = 'Python'
-pyver = '2.7.9'
-versionsuffix = '-%s-%s' % (python, pyver)
-
-dependencies = [(python, pyver)]
-
-pyshortver = '.'.join(pyver.split('.')[:2])
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['lib/python%s/site-packages/bibtexparser' % pyshortver],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bibtexparser/bibtexparser-0.5-intel-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/__archive__/b/bibtexparser/bibtexparser-0.5-intel-2015a-Python-2.7.9.eb
deleted file mode 100644
index 43af690ca6d..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bibtexparser/bibtexparser-0.5-intel-2015a-Python-2.7.9.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = 'PythonPackage'
-
-name = 'bibtexparser'
-version = '0.5'
-
-homepage = 'https://github.com/sciunto-org/python-bibtexparser'
-description = """Bibtex parser in Python 2.7 and 3.x"""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-python = 'Python'
-pyver = '2.7.9'
-versionsuffix = '-%s-%s' % (python, pyver)
-
-dependencies = [(python, pyver)]
-
-pyshortver = '.'.join(pyver.split('.')[:2])
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['lib/python%s/site-packages/bibtexparser' % pyshortver],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bibtexparser/bibtexparser-0.6.0-foss-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/__archive__/b/bibtexparser/bibtexparser-0.6.0-foss-2015a-Python-2.7.9.eb
deleted file mode 100644
index 0473d2694fe..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bibtexparser/bibtexparser-0.6.0-foss-2015a-Python-2.7.9.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = 'PythonPackage'
-
-name = 'bibtexparser'
-version = '0.6.0'
-
-homepage = 'https://github.com/sciunto-org/python-bibtexparser'
-description = """Bibtex parser in Python 2.7 and 3.x"""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-python = 'Python'
-pyver = '2.7.9'
-versionsuffix = '-%s-%s' % (python, pyver)
-
-dependencies = [(python, pyver)]
-
-pyshortver = '.'.join(pyver.split('.')[:2])
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['lib/python%s/site-packages/bibtexparser' % pyshortver],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bibtexparser/bibtexparser-0.6.0-intel-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/__archive__/b/bibtexparser/bibtexparser-0.6.0-intel-2015a-Python-2.7.9.eb
deleted file mode 100644
index 0cf333f02ab..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bibtexparser/bibtexparser-0.6.0-intel-2015a-Python-2.7.9.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = 'PythonPackage'
-
-name = 'bibtexparser'
-version = '0.6.0'
-
-homepage = 'https://github.com/sciunto-org/python-bibtexparser'
-description = """Bibtex parser in Python 2.7 and 3.x"""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-python = 'Python'
-pyver = '2.7.9'
-versionsuffix = '-%s-%s' % (python, pyver)
-
-dependencies = [(python, pyver)]
-
-pyshortver = '.'.join(pyver.split('.')[:2])
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['lib/python%s/site-packages/bibtexparser' % pyshortver],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/binutils/binutils-2.22-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/binutils/binutils-2.22-goolf-1.4.10.eb
deleted file mode 100644
index 1c728da8c0d..00000000000
--- a/easybuild/easyconfigs/__archive__/b/binutils/binutils-2.22-goolf-1.4.10.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_07-02.html
-##
-name = 'binutils'
-version = '2.22'
-
-homepage = 'http://directory.fsf.org/project/binutils/'
-description = "binutils-2.22: GNU binary utilities"
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = ['binutils-%s.tar.bz2' % version]
-source_urls = [GNU_SOURCE]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/binutils/binutils-2.22-goolf-1.5.14.eb b/easybuild/easyconfigs/__archive__/b/binutils/binutils-2.22-goolf-1.5.14.eb
deleted file mode 100644
index b9f1d711c15..00000000000
--- a/easybuild/easyconfigs/__archive__/b/binutils/binutils-2.22-goolf-1.5.14.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2013 University of Luxembourg/Luxembourg Centre for Systems Biomedicine
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_07-02.html
-##
-name = 'binutils'
-version = '2.22'
-
-homepage = 'http://directory.fsf.org/project/binutils/'
-description = "binutils-2.22: GNU binary utilities"
-
-toolchain = {'name': 'goolf', 'version': '1.5.14'}
-toolchainopts = {'pic': True}
-
-sources = ['binutils-%(version)s.tar.bz2']
-source_urls = [GNU_SOURCE]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/binutils/binutils-2.24-foss-2014b.eb b/easybuild/easyconfigs/__archive__/b/binutils/binutils-2.24-foss-2014b.eb
deleted file mode 100644
index 9683cfc7289..00000000000
--- a/easybuild/easyconfigs/__archive__/b/binutils/binutils-2.24-foss-2014b.eb
+++ /dev/null
@@ -1,16 +0,0 @@
-name = 'binutils'
-version = '2.24'
-
-homepage = 'http://directory.fsf.org/project/binutils/'
-description = "binutils-2.22: GNU binary utilities"
-
-sources = [SOURCE_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-toolchain = {'name': 'foss', 'version': '2014b'}
-
-dependencies = [
- ('zlib', '1.2.8'),
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/binutils/binutils-2.24-intel-2014b.eb b/easybuild/easyconfigs/__archive__/b/binutils/binutils-2.24-intel-2014b.eb
deleted file mode 100644
index 2c7152bf011..00000000000
--- a/easybuild/easyconfigs/__archive__/b/binutils/binutils-2.24-intel-2014b.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-name = 'binutils'
-version = '2.24'
-
-homepage = 'http://directory.fsf.org/project/binutils/'
-description = "binutils-2.22: GNU binary utilities"
-
-sources = [SOURCE_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-dependencies = [
- ('zlib', '1.2.8'),
-]
-
-# libiberty doesn't seem to compile with Intel compilers
-install_libiberty = False
-
-# disable warning/error #175 ("subscript out of range")
-buildopts = 'CFLAGS="$CFLAGS -wd175"'
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/biodeps/biodeps-1.6-goolf-1.4.10-extended.eb b/easybuild/easyconfigs/__archive__/b/biodeps/biodeps-1.6-goolf-1.4.10-extended.eb
deleted file mode 100644
index 847f0357417..00000000000
--- a/easybuild/easyconfigs/__archive__/b/biodeps/biodeps-1.6-goolf-1.4.10-extended.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2013-01.html
-##
-
-easyblock = 'Bundle'
-
-name = 'biodeps'
-version = '1.6'
-versionsuffix = '-extended'
-
-homepage = 'http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2013-01.html'
-description = """The purpose of this collection is to provide common dependencies in a bundle,
- so that software/modules can be mixed and matched easily for composite pipelines in Life Sciences"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.7'),
- ('libreadline', '6.2'),
- ('ncurses', '5.9'),
- ('Boost', '1.51.0', '-Python-2.7.3'),
- ('SAMtools', '0.1.18'),
- ('Perl', '5.16.3', '-bare'),
- ('Java', '1.7.0_10', '', True),
- ('libpng', '1.5.13'),
-]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/biodeps/biodeps-1.6-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/biodeps/biodeps-1.6-goolf-1.4.10.eb
deleted file mode 100644
index c2a6853c157..00000000000
--- a/easybuild/easyconfigs/__archive__/b/biodeps/biodeps-1.6-goolf-1.4.10.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2013-01.html
-##
-
-easyblock = 'Bundle'
-
-name = 'biodeps'
-version = '1.6'
-
-homepage = 'http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2013-01.html'
-description = """The purpose of this collection is to provide common dependencies in a bundle,
- so that software/modules can be mixed and matched easily for composite pipelines in Life Sciences"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.7'),
- ('libreadline', '6.2'),
- ('ncurses', '5.9'),
-]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/biodeps/biodeps-1.6-ictce-5.3.0-extended.eb b/easybuild/easyconfigs/__archive__/b/biodeps/biodeps-1.6-ictce-5.3.0-extended.eb
deleted file mode 100644
index 3354b93931c..00000000000
--- a/easybuild/easyconfigs/__archive__/b/biodeps/biodeps-1.6-ictce-5.3.0-extended.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2013-01.html
-##
-
-easyblock = 'Bundle'
-
-name = 'biodeps'
-version = '1.6'
-versionsuffix = '-extended'
-
-homepage = 'http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2013-01.html'
-description = """The purpose of this collection is to provide common dependencies in a bundle,
- so that software/modules can be mixed and matched easily for composite pipelines in Life Sciences"""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.7'),
- ('libreadline', '6.2'),
- ('ncurses', '5.9'),
- ('Boost', '1.51.0', '-Python-2.7.3'),
- ('SAMtools', '0.1.18'),
- ('Perl', '5.16.3', '-bare'),
- ('Java', '1.7.0_10', '', True),
- ('libpng', '1.5.13'),
-]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/biodeps/biodeps-1.6-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/b/biodeps/biodeps-1.6-ictce-5.3.0.eb
deleted file mode 100644
index 02f177a07b6..00000000000
--- a/easybuild/easyconfigs/__archive__/b/biodeps/biodeps-1.6-ictce-5.3.0.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2013-01.html
-##
-
-easyblock = 'Bundle'
-
-name = 'biodeps'
-version = '1.6'
-
-homepage = 'http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2013-01.html'
-description = """The purpose of this collection is to provide common dependencies in a bundle,
- so that software/modules can be mixed and matched easily for composite pipelines in Life Sciences"""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.7'),
- ('libreadline', '6.2'),
- ('ncurses', '5.9'),
-]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/blasr/blasr-smrtanalysis-2.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/blasr/blasr-smrtanalysis-2.1-goolf-1.4.10.eb
deleted file mode 100644
index d339980b4f2..00000000000
--- a/easybuild/easyconfigs/__archive__/b/blasr/blasr-smrtanalysis-2.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,46 +0,0 @@
-# With <3 for EasyBuild
-#
-# EasyConfig for BLASR:
-# ----------------------------------------------------------------------------
-# Copyright: 2013 - Gregor Mendel Institute of Molecular Plant Biology GmBH
-# License: MIT
-# Authors: Petar Forai
-# ----------------------------------------------------------------------------
-
-easyblock = 'MakeCp'
-
-name = 'blasr'
-version = 'smrtanalysis-2.1'
-
-homepage = 'https://github.com/PacificBiosciences/blasr'
-description = """BLASR (Basic Local Alignment with Successive Refinement) rapidly maps reads to genomes by finding the
- highest scoring local alignment or set of local alignments between the read and the genome. Optimized for PacBio's
- extraordinarily long reads and taking advantage of rich quality values, BLASR maps reads rapidly with high accuracy."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = ['%(version)s.tar.gz']
-source_urls = ['https://github.com/PacificBiosciences/blasr/archive/']
-
-patches = ['blasr-%(version)s_non-static.patch']
-
-dependencies = [('HDF5', '1.8.9')]
-
-buildopts = 'HDF5INCLUDEDIR=${EBROOTHDF5}/include HDF5LIBDIR=${EBROOTHDF5}/lib'
-
-binaries = [
- 'wordCounter', 'printReadWordCount', 'blasr', 'sdpMatcher', 'swMatcher', 'kbandMatcher', 'sawriter',
- 'saquery', 'samodify', 'printTupleCountTable', 'malign', 'cmpPrintTupleCountTable', 'removeAdapters',
- 'tabulateAlignment', 'samatcher', 'sals', 'saprinter', 'buildQualityValueProfile', 'extendAlign',
- 'guidedalign', 'pbmask',
-]
-
-files_to_copy = [(['alignment/bin/%s' % x for x in binaries], 'bin')]
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in binaries],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/b/blasr/blasr-smrtanalysis-2.1_non-static.patch b/easybuild/easyconfigs/__archive__/b/blasr/blasr-smrtanalysis-2.1_non-static.patch
deleted file mode 100644
index 03b7b3f2bbe..00000000000
--- a/easybuild/easyconfigs/__archive__/b/blasr/blasr-smrtanalysis-2.1_non-static.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- common.mk.orig 2013-11-08 15:19:36.848815000 +0100
-+++ common.mk 2013-11-08 15:19:54.854217000 +0100
-@@ -24,6 +24,7 @@
- ifeq ($(shell $(CC) -dumpversion | awk -F '.' '$$1*100+$$2>404{print "yes"}'),yes)
- CPPOPTS += -fpermissive
- endif
--ifneq ($(shell uname -s),Darwin)
-- STATIC = -static
--endif
-+# Why oh why ...
-+#ifneq ($(shell uname -s),Darwin)
-+# STATIC = -static
-+#endif
diff --git a/easybuild/easyconfigs/__archive__/b/buildenv/buildenv-default-intel-2015a.eb b/easybuild/easyconfigs/__archive__/b/buildenv/buildenv-default-intel-2015a.eb
deleted file mode 100644
index 0321acfcc55..00000000000
--- a/easybuild/easyconfigs/__archive__/b/buildenv/buildenv-default-intel-2015a.eb
+++ /dev/null
@@ -1,13 +0,0 @@
-easyblock = 'BuildEnv'
-
-name = 'buildenv'
-version = 'default'
-
-homepage = 'None'
-description = """This module sets a group of environment variables for compilers, linkers, maths libraries, etc., that
- you can use to easily transition between toolchains when building your software. To query the variables being set
- please use: module show """
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/b/byacc/byacc-20120526-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/byacc/byacc-20120526-goolf-1.4.10.eb
deleted file mode 100644
index 9a479b92a1c..00000000000
--- a/easybuild/easyconfigs/__archive__/b/byacc/byacc-20120526-goolf-1.4.10.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'byacc'
-version = '20120526'
-
-homepage = 'http://invisible-island.net/byacc/byacc.html'
-description = """Berkeley Yacc (byacc) is generally conceded to be the best yacc variant available.
-In contrast to bison, it is written to avoid dependencies upon a particular compiler."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = [SOURCELOWER_TGZ]
-source_urls = ['ftp://invisible-island.net/byacc']
-
-sanity_check_paths = {
- 'files': ["bin/yacc"],
- 'dirs': []
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/byacc/byacc-20120526-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/b/byacc/byacc-20120526-ictce-5.3.0.eb
deleted file mode 100644
index 2dcca844dd7..00000000000
--- a/easybuild/easyconfigs/__archive__/b/byacc/byacc-20120526-ictce-5.3.0.eb
+++ /dev/null
@@ -1,21 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'byacc'
-version = '20120526'
-
-homepage = 'http://invisible-island.net/byacc/byacc.html'
-description = """Berkeley Yacc (byacc) is generally conceded to be the best yacc variant available.
- In contrast to bison, it is written to avoid dependencies upon a particular compiler."""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sources = [SOURCELOWER_TGZ]
-source_urls = ['ftp://invisible-island.net/byacc']
-
-sanity_check_paths = {
- 'files': ["bin/yacc"],
- 'dirs': []
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/byacc/byacc-20150711-foss-2015b.eb b/easybuild/easyconfigs/__archive__/b/byacc/byacc-20150711-foss-2015b.eb
deleted file mode 100644
index 6fabc38da75..00000000000
--- a/easybuild/easyconfigs/__archive__/b/byacc/byacc-20150711-foss-2015b.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'byacc'
-version = '20150711'
-
-homepage = 'http://invisible-island.net/byacc/byacc.html'
-description = """Berkeley Yacc (byacc) is generally conceded to be the best yacc variant available.
- In contrast to bison, it is written to avoid dependencies upon a particular compiler."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-sources = [SOURCELOWER_TGZ]
-source_urls = ['ftp://invisible-island.net/byacc']
-
-checksums = ['2700401030583c4e9169ac7ea7d08de8']
-
-sanity_check_paths = {
- 'files': ["bin/yacc"],
- 'dirs': []
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/byacc/byacc-20150711-intel-2015b.eb b/easybuild/easyconfigs/__archive__/b/byacc/byacc-20150711-intel-2015b.eb
deleted file mode 100644
index 1578ff69e4f..00000000000
--- a/easybuild/easyconfigs/__archive__/b/byacc/byacc-20150711-intel-2015b.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'byacc'
-version = '20150711'
-
-homepage = 'http://invisible-island.net/byacc/byacc.html'
-description = """Berkeley Yacc (byacc) is generally conceded to be the best yacc variant available.
- In contrast to bison, it is written to avoid dependencies upon a particular compiler."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-sources = [SOURCELOWER_TGZ]
-source_urls = ['ftp://invisible-island.net/byacc']
-
-checksums = ['2700401030583c4e9169ac7ea7d08de8']
-
-sanity_check_paths = {
- 'files': ["bin/yacc"],
- 'dirs': []
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-CrayGNU-2015.06.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-CrayGNU-2015.06.eb
deleted file mode 100644
index 381771b6342..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-CrayGNU-2015.06.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
- compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
- compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'CrayGNU', 'version': '2015.06'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-CrayGNU-2015.11.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-CrayGNU-2015.11.eb
deleted file mode 100644
index eb7b27cac38..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-CrayGNU-2015.11.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
- compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
- compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'CrayGNU', 'version': '2015.11'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-CrayGNU-2016.03.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-CrayGNU-2016.03.eb
deleted file mode 100644
index b3eef964c28..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-CrayGNU-2016.03.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
- compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
- compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'CrayGNU', 'version': '2016.03'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-foss-2014b.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-foss-2014b.eb
deleted file mode 100644
index 602708ff98f..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-foss-2014b.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
-compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
-compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'foss', 'version': '2014b'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-foss-2015.05.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-foss-2015.05.eb
deleted file mode 100644
index e0bb9fdda44..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-foss-2015.05.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
- compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
- compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'foss', 'version': '2015.05'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-foss-2015a.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-foss-2015a.eb
deleted file mode 100644
index 04e93c9ae72..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-foss-2015a.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
- compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
- compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-foss-2015b.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-foss-2015b.eb
deleted file mode 100644
index 132b257e1ad..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-foss-2015b.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
- compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
- compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-gompi-1.5.16.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-gompi-1.5.16.eb
deleted file mode 100644
index fc5befab45b..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-gompi-1.5.16.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
-compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
-compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'gompi', 'version': '1.5.16'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-goolf-1.4.10.eb
deleted file mode 100644
index 5b790826325..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-goolf-1.4.10.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
-compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
-compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-goolf-1.5.14.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-goolf-1.5.14.eb
deleted file mode 100644
index 786ce98e1f1..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-goolf-1.5.14.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
-compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
-compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'goolf', 'version': '1.5.14'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-goolf-1.5.16.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-goolf-1.5.16.eb
deleted file mode 100644
index 6cf7f7d51c2..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-goolf-1.5.16.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
-compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
-compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'goolf', 'version': '1.5.16'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-goolf-1.7.20.eb
deleted file mode 100644
index 5c8227d00ae..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-goolf-1.7.20.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
-compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
-compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-ictce-5.2.0.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-ictce-5.2.0.eb
deleted file mode 100644
index f6364357500..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-ictce-5.2.0.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
-compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
-compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'ictce', 'version': '5.2.0'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-ictce-5.3.0.eb
deleted file mode 100644
index 559fb1d8107..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-ictce-5.3.0.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
- compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
- compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-ictce-5.4.0.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-ictce-5.4.0.eb
deleted file mode 100644
index 95ac5e76ec3..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-ictce-5.4.0.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
- compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
- compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'ictce', 'version': '5.4.0'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-ictce-5.5.0.eb
deleted file mode 100644
index 5ee0da4ef32..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-ictce-5.5.0.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
- compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
- compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-ictce-6.2.5.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-ictce-6.2.5.eb
deleted file mode 100644
index d8c9b15340a..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-ictce-6.2.5.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
- compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
- compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'ictce', 'version': '6.2.5'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-ictce-7.1.2.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-ictce-7.1.2.eb
deleted file mode 100644
index 05431948350..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-ictce-7.1.2.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
- compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
- compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'ictce', 'version': '7.1.2'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-intel-2014.06.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-intel-2014.06.eb
deleted file mode 100644
index adb1d63dcb6..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-intel-2014.06.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
- compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
- compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'intel', 'version': '2014.06'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-intel-2014b.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-intel-2014b.eb
deleted file mode 100644
index b6c4e907e12..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-intel-2014b.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
- compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
- compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-intel-2015a.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-intel-2015a.eb
deleted file mode 100644
index 0d1a117699b..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-intel-2015a.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
- compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
- compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-intel-2015b.eb b/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-intel-2015b.eb
deleted file mode 100644
index de396a8c106..00000000000
--- a/easybuild/easyconfigs/__archive__/b/bzip2/bzip2-1.0.6-intel-2015b.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'bzip2'
-version = '1.0.6'
-
-homepage = 'https://sourceware.org/bzip2'
-description = """bzip2 is a freely available, patent free, high-quality data compressor. It typically
- compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical
- compressors), whilst being around twice as fast at compression and six times faster at decompression."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://sourceware.org/pub/bzip2/']
-sources = [SOURCE_TAR_GZ]
-patches = ['bzip2-%(version)s-pkgconfig.patch']
-checksums = [
- 'a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd', # bzip2-1.0.6.tar.gz
- '5a823e820b332eca3684416894f58edc125ac3dace9f46e62f98e45362aa8a6d', # bzip2-1.0.6-pkgconfig.patch
-]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/CCfits/CCfits-2.4-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/CCfits/CCfits-2.4-goolf-1.4.10.eb
deleted file mode 100644
index 587da5f4ecd..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CCfits/CCfits-2.4-goolf-1.4.10.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CCfits'
-version = '2.4'
-
-homepage = 'http://heasarc.gsfc.nasa.gov/fitsio/CCfits/'
-description = """CCfits is an object oriented interface to the cfitsio library. It is designed to make
-the capabilities of cfitsio available to programmers working in C++."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-source_urls = ['http://heasarc.gsfc.nasa.gov/fitsio/CCfits/']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('CFITSIO', '3.34')]
-
-sanity_check_paths = {
- 'files': ['bin/cookbook', 'lib/libCCfits.%s' % SHLIB_EXT, 'lib/pkgconfig/CCfits.pc'],
- 'dirs': ['include/CCfits'],
-}
-
-moduleclass = 'lib'
diff --git a/easybuild/easyconfigs/__archive__/c/CCfits/CCfits-2.4-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/c/CCfits/CCfits-2.4-ictce-5.3.0.eb
deleted file mode 100644
index 15a5ec31e97..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CCfits/CCfits-2.4-ictce-5.3.0.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CCfits'
-version = '2.4'
-
-homepage = 'http://heasarc.gsfc.nasa.gov/fitsio/CCfits/'
-description = """CCfits is an object oriented interface to the cfitsio library. It is designed to make
-the capabilities of cfitsio available to programmers working in C++."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-source_urls = ['http://heasarc.gsfc.nasa.gov/fitsio/CCfits/']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('CFITSIO', '3.34')]
-
-sanity_check_paths = {
- 'files': ['bin/cookbook', 'lib/libCCfits.%s' % SHLIB_EXT, 'lib/pkgconfig/CCfits.pc'],
- 'dirs': ['include/CCfits'],
-}
-
-moduleclass = 'lib'
diff --git a/easybuild/easyconfigs/__archive__/c/CD-HIT/CD-HIT-4.5.4-ictce-5.3.0-2011-03-07.eb b/easybuild/easyconfigs/__archive__/c/CD-HIT/CD-HIT-4.5.4-ictce-5.3.0-2011-03-07.eb
deleted file mode 100644
index 98790631352..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CD-HIT/CD-HIT-4.5.4-ictce-5.3.0-2011-03-07.eb
+++ /dev/null
@@ -1,49 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2013 The Cyprus Institute
-# Authors:: Andreas Panteli , George Tsouloupas
-# License:: MIT/GPL
-#
-##
-
-easyblock = "MakeCp"
-
-name = 'CD-HIT'
-version = '4.5.4'
-versionsuffix = '-2011-03-07'
-
-homepage = 'http://www.bioinformatics.org/cd-hit/'
-description = """CD-HIT stands for Cluster Database at High Identity with Tolerance. The program
-takes a fasta format sequence database as input and produces a set of 'non-redundant' (nr)
-representative sequences as output. In addition cd-hit outputs a cluster file, documenting the
-sequence 'groupies' for each nr sequence representative. """
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'openmp': True}
-
-# eg. http://www.bioinformatics.org/downloads/index.php/cd-hit/cd-hit-v4.5.4-2011-03-07.tgz
-sources = ['%(namelower)s-v%(version)s%(versionsuffix)s.tgz']
-source_urls = ['http://www.bioinformatics.org/downloads/index.php/cd-hit/']
-
-# make sure compilation flags are passed down (e.g. to enable OpenMP)
-buildopts = ' CC="$CXX" CCFLAGS="$CPPFLAGS $CXXFLAGS"'
-
-binfiles = [
- "cd-hit", "cd-hit-est", "cd-hit-2d", "cd-hit-est-2d", "cd-hit-div", "cd-hit-%s" % ''.join(version.split('.')),
- "cd-hit-2d-para.pl", "cd-hit-div.pl", "cd-hit-para.pl", "clstr2tree.pl", "clstr_merge_noorder.pl",
- "clstr_merge.pl", "clstr_reduce.pl", "clstr_renumber.pl", "clstr_rev.pl", "clstr_sort_by.pl",
- "clstr_sort_prot_by.pl", "make_multi_seq.pl", "plot_2d.pl", "plot_len1.pl", "psi-cd-hit-2d-g1.pl",
- "psi-cd-hit-2d.pl", "psi-cd-hit-local.pl", "psi-cd-hit.pl",
-]
-files_to_copy = [
- (binfiles, 'bin'),
- "cdhit-user-guide.pdf"
-]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in binfiles] + ["cdhit-user-guide.pdf"],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/CD-HIT/CD-HIT-4.6.1-foss-2015b-2012-08-27.eb b/easybuild/easyconfigs/__archive__/c/CD-HIT/CD-HIT-4.6.1-foss-2015b-2012-08-27.eb
deleted file mode 100644
index 6304e114409..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CD-HIT/CD-HIT-4.6.1-foss-2015b-2012-08-27.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = "CD-HIT"
-version = "4.6.1"
-versionsuffix = "-2012-08-27"
-
-homepage = 'http://weizhong-lab.ucsd.edu/cd-hit/'
-description = """ CD-HIT is a very widely used program for clustering and
- comparing protein or nucleotide sequences."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-toolchainopts = {'openmp': True}
-
-source_urls = ['https://github.com/weizhongli/cdhit/releases/download/V%(version)s/']
-sources = ['%(namelower)s-v%(version)s%(versionsuffix)s.tgz']
-
-# make sure compilation flags are passed down (e.g. to enable OpenMP)
-buildopts = ' CC="$CXX" CCFLAGS="$CPPFLAGS $CXXFLAGS"'
-
-# put here the list of generated executables when compiling
-list_of_executables = ["cd-hit", "cd-hit-est", "cd-hit-2d", "cd-hit-est-2d", "cd-hit-div", "cd-hit-454"]
-
-# this is the real EasyBuild line to copy all the executables and perl scripts to "bin"
-files_to_copy = [(list_of_executables, "bin"), (["*.pl"], 'bin'), "README", "doc", "license.txt"]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in list_of_executables],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/CD-HIT/CD-HIT-4.6.1-goolf-1.4.10-2012-08-27.eb b/easybuild/easyconfigs/__archive__/c/CD-HIT/CD-HIT-4.6.1-goolf-1.4.10-2012-08-27.eb
deleted file mode 100644
index 1d1c993287f..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CD-HIT/CD-HIT-4.6.1-goolf-1.4.10-2012-08-27.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = "CD-HIT"
-version = "4.6.1"
-versionsuffix = "-2012-08-27"
-
-homepage = 'http://weizhong-lab.ucsd.edu/cd-hit/'
-description = """ CD-HIT is a very widely used program for clustering and
- comparing protein or nucleotide sequences."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'openmp': True}
-
-source_urls = ['https://cdhit.googlecode.com/files/']
-sources = ['%(namelower)s-v%(version)s%(versionsuffix)s.tgz']
-
-# make sure compilation flags are passed down (e.g. to enable OpenMP)
-buildopts = ' CC="$CXX" CCFLAGS="$CPPFLAGS $CXXFLAGS"'
-
-# put here the list of generated executables when compiling
-list_of_executables = ["cd-hit", "cd-hit-est", "cd-hit-2d", "cd-hit-est-2d", "cd-hit-div", "cd-hit-454"]
-
-# this is the real EasyBuild line to copy all the executables and perl scripts to "bin"
-files_to_copy = [(list_of_executables, "bin"), (["*.pl"], 'bin'), "README", "doc", "license.txt"]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in list_of_executables],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/CD-HIT/CD-HIT-4.6.1-ictce-5.5.0-2012-08-27.eb b/easybuild/easyconfigs/__archive__/c/CD-HIT/CD-HIT-4.6.1-ictce-5.5.0-2012-08-27.eb
deleted file mode 100644
index 81ac44439d9..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CD-HIT/CD-HIT-4.6.1-ictce-5.5.0-2012-08-27.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = "CD-HIT"
-version = "4.6.1"
-versionsuffix = "-2012-08-27"
-
-homepage = 'http://weizhong-lab.ucsd.edu/cd-hit/'
-description = """ CD-HIT is a very widely used program for clustering and
- comparing protein or nucleotide sequences."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'openmp': True}
-
-source_urls = ['https://cdhit.googlecode.com/files/']
-sources = ['%(namelower)s-v%(version)s%(versionsuffix)s.tgz']
-
-# make sure compilation flags are passed down (e.g. to enable OpenMP)
-buildopts = ' CC="$CXX" CCFLAGS="$CPPFLAGS $CXXFLAGS"'
-
-# put here the list of generated executables when compiling
-list_of_executables = ["cd-hit", "cd-hit-est", "cd-hit-2d", "cd-hit-est-2d", "cd-hit-div", "cd-hit-454"]
-
-# this is the real EasyBuild line to copy all the executables and perl scripts to "bin"
-files_to_copy = [(list_of_executables, "bin"), (["*.pl"], 'bin'), "README", "doc", "license.txt"]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in list_of_executables],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/CD-HIT/CD-HIT-4.6.4-foss-2015b-2015-0603.eb b/easybuild/easyconfigs/__archive__/c/CD-HIT/CD-HIT-4.6.4-foss-2015b-2015-0603.eb
deleted file mode 100644
index a251b7271ba..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CD-HIT/CD-HIT-4.6.4-foss-2015b-2015-0603.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = "CD-HIT"
-version = "4.6.4"
-versionsuffix = "-2015-0603"
-
-homepage = 'http://weizhong-lab.ucsd.edu/cd-hit/'
-description = """ CD-HIT is a very widely used program for clustering and
- comparing protein or nucleotide sequences."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-toolchainopts = {'openmp': True}
-
-source_urls = ['https://github.com/weizhongli/cdhit/releases/download/V%(version)s/']
-sources = ['%(namelower)s-v%(version)s%(versionsuffix)s.tar.gz']
-
-# make sure compilation flags are passed down (e.g. to enable OpenMP)
-buildopts = ' CC="$CXX" CCFLAGS="$CPPFLAGS $CXXFLAGS"'
-
-# put here the list of generated executables when compiling
-list_of_executables = ["cd-hit", "cd-hit-est", "cd-hit-2d", "cd-hit-est-2d", "cd-hit-div", "cd-hit-454"]
-
-# this is the real EasyBuild line to copy all the executables and perl scripts to "bin"
-files_to_copy = [(list_of_executables, "bin"), (["*.pl"], 'bin'), "README", "doc", "license.txt"]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in list_of_executables],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/CDO/CDO-1.6.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/CDO/CDO-1.6.0-goolf-1.4.10.eb
deleted file mode 100644
index cdb73d31aba..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CDO/CDO-1.6.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CDO'
-version = '1.6.0'
-
-homepage = 'https://code.zmaw.de/projects/cdo'
-description = """CDO is a collection of command line Operators to manipulate and analyse Climate and NWP model Data."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'opt': True, 'pic': True, 'usempi': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['https://code.zmaw.de/attachments/download/5287/']
-
-dependencies = [
- ('HDF5', '1.8.10-patch1'),
- ('netCDF', '4.2.1.1'),
-]
-
-configopts = "--with-hdf5=$EBROOTHDF5 --with-netcdf=$EBROOTNETCDF"
-
-sanity_check_paths = {
- 'files': ["bin/cdo"],
- 'dirs': [],
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/c/CDO/CDO-1.6.2-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/c/CDO/CDO-1.6.2-ictce-5.5.0.eb
deleted file mode 100644
index 39193c40701..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CDO/CDO-1.6.2-ictce-5.5.0.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CDO'
-version = '1.6.2'
-
-homepage = 'https://code.zmaw.de/projects/cdo'
-description = """CDO is a collection of command line Operators to manipulate and analyse Climate and NWP model Data."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'opt': True, 'pic': True, 'usempi': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['https://code.zmaw.de/attachments/download/6764/']
-
-dependencies = [
- ('HDF5', '1.8.10', '-gpfs'),
- ('netCDF', '4.2.1.1'),
- ('YAXT', '0.2.1'),
-]
-
-configopts = "--with-hdf5=$EBROOTHDF5 --with-netcdf=$EBROOTNETCDF"
-
-sanity_check_paths = {
- 'files': ["bin/cdo"],
- 'dirs': [],
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/c/CDO/CDO-1.7.1-foss-2015a.eb b/easybuild/easyconfigs/__archive__/c/CDO/CDO-1.7.1-foss-2015a.eb
deleted file mode 100644
index 0f0ccdc3733..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CDO/CDO-1.7.1-foss-2015a.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CDO'
-version = '1.7.1'
-
-homepage = 'https://code.zmaw.de/projects/cdo'
-description = """CDO is a collection of command line Operators to manipulate and analyse Climate and NWP model Data."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-toolchainopts = {'opt': True, 'pic': True, 'usempi': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['https://code.zmaw.de/attachments/download/12070/']
-
-dependencies = [
- ('HDF5', '1.8.13'),
- ('netCDF', '4.3.2'),
- ('YAXT', '0.4.4'),
-]
-
-configopts = "--with-hdf5=$EBROOTHDF5 --with-netcdf=$EBROOTNETCDF"
-
-sanity_check_paths = {
- 'files': ["bin/cdo"],
- 'dirs': [],
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/c/CEM/CEM-0.9.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/CEM/CEM-0.9.1-goolf-1.4.10.eb
deleted file mode 100644
index 3a724109748..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CEM/CEM-0.9.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = "CEM"
-version = "0.9.1"
-
-homepage = 'http://alumni.cs.ucr.edu/~liw/cem.html'
-description = """ CEM: Transcriptome Assembly and Isoform Expression Level Estimation
- from Biased RNA-Seq Reads. CEM is an algorithm to assemble transcripts and estimate
- their expression levels from RNA-Seq reads. """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://alumni.cs.ucr.edu/~liw/']
-sources = ['%(namelower)s.%(version)s.tar.gz']
-
-dependencies = [
- ('GSL', '1.16')
-]
-
-start_dir = "src"
-
-files_to_copy = ["../bin", "../demo"]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['bed2sam', 'bed2gtf', 'comparegtf',
- 'gtf2pred', 'isolassocem', 'pred2gtf',
- 'processsam', 'sortgtf']],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/CFITSIO/CFITSIO-3.300-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/c/CFITSIO/CFITSIO-3.300-ictce-5.5.0.eb
deleted file mode 100755
index df0d72298b0..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CFITSIO/CFITSIO-3.300-ictce-5.5.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CFITSIO'
-version = '3.300'
-
-homepage = 'http://heasarc.gsfc.nasa.gov/fitsio/'
-description = """CFITSIO is a library of C and Fortran subroutines for reading and writing data files in
-FITS (Flexible Image Transport System) data format."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'pic': True}
-
-srcversion = version.replace('.', '')
-source_urls = ['http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/']
-sources = ['%%(namelower)s%s.tar.gz' % srcversion]
-
-sanity_check_paths = {
- 'files': ['lib/libcfitsio.a'],
- 'dirs': ['include'],
-}
-
-moduleclass = 'lib'
diff --git a/easybuild/easyconfigs/__archive__/c/CFITSIO/CFITSIO-3.34-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/CFITSIO/CFITSIO-3.34-goolf-1.4.10.eb
deleted file mode 100644
index 79b1be118dd..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CFITSIO/CFITSIO-3.34-goolf-1.4.10.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CFITSIO'
-version = '3.34'
-
-homepage = 'http://heasarc.gsfc.nasa.gov/fitsio/'
-description = """CFITSIO is a library of C and Fortran subroutines for reading and writing data files in
-FITS (Flexible Image Transport System) data format."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-srcversion = '%s0' % version.replace('.', '')
-source_urls = ['http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/']
-sources = ['%%(namelower)s%s.tar.gz' % srcversion]
-
-sanity_check_paths = {
- 'files': ["lib/libcfitsio.a"],
- 'dirs': ["include"],
-}
-
-moduleclass = 'lib'
diff --git a/easybuild/easyconfigs/__archive__/c/CFITSIO/CFITSIO-3.34-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/c/CFITSIO/CFITSIO-3.34-ictce-5.3.0.eb
deleted file mode 100644
index a6a8529f92a..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CFITSIO/CFITSIO-3.34-ictce-5.3.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CFITSIO'
-version = '3.34'
-
-homepage = 'http://heasarc.gsfc.nasa.gov/fitsio/'
-description = """CFITSIO is a library of C and Fortran subroutines for reading and writing data files in
-FITS (Flexible Image Transport System) data format."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-srcversion = '%s0' % version.replace('.', '')
-source_urls = ['http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/']
-sources = ['%%(namelower)s%s.tar.gz' % srcversion]
-
-sanity_check_paths = {
- 'files': ["lib/libcfitsio.a"],
- 'dirs': ["include"],
-}
-
-moduleclass = 'lib'
diff --git a/easybuild/easyconfigs/__archive__/c/CFITSIO/CFITSIO-3.34-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/c/CFITSIO/CFITSIO-3.34-ictce-5.5.0.eb
deleted file mode 100644
index b205f7fd1fb..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CFITSIO/CFITSIO-3.34-ictce-5.5.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CFITSIO'
-version = '3.34'
-
-homepage = 'http://heasarc.gsfc.nasa.gov/fitsio/'
-description = """CFITSIO is a library of C and Fortran subroutines for reading and writing data files in
-FITS (Flexible Image Transport System) data format."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-srcversion = '%s0' % version.replace('.', '')
-source_urls = ['http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/']
-sources = ['%%(namelower)s%s.tar.gz' % srcversion]
-
-sanity_check_paths = {
- 'files': ["lib/libcfitsio.a"],
- 'dirs': ["include"],
-}
-
-moduleclass = 'lib'
diff --git a/easybuild/easyconfigs/__archive__/c/CFITSIO/CFITSIO-3.350-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/c/CFITSIO/CFITSIO-3.350-ictce-5.5.0.eb
deleted file mode 100644
index 32bbb18488e..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CFITSIO/CFITSIO-3.350-ictce-5.5.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CFITSIO'
-version = '3.350'
-
-homepage = 'http://heasarc.gsfc.nasa.gov/fitsio/'
-description = """CFITSIO is a library of C and Fortran subroutines for reading and writing data files in
-FITS (Flexible Image Transport System) data format."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-srcversion = '%s' % version.replace('.', '')
-source_urls = ['http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/']
-sources = ['%%(namelower)s%s.tar.gz' % srcversion]
-
-sanity_check_paths = {
- 'files': ["lib/libcfitsio.a"],
- 'dirs': ["include"],
-}
-
-moduleclass = 'lib'
diff --git a/easybuild/easyconfigs/__archive__/c/CFITSIO/CFITSIO-3.37-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/CFITSIO/CFITSIO-3.37-intel-2015a.eb
deleted file mode 100644
index 32720c1e1c0..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CFITSIO/CFITSIO-3.37-intel-2015a.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CFITSIO'
-version = '3.37'
-
-homepage = 'http://heasarc.gsfc.nasa.gov/fitsio/'
-description = """CFITSIO is a library of C and Fortran subroutines for reading and writing data files in
-FITS (Flexible Image Transport System) data format."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-srcversion = '%s0' % version.replace('.', '')
-source_urls = ['http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/']
-sources = ['%%(namelower)s%s.tar.gz' % srcversion]
-
-sanity_check_paths = {
- 'files': ["lib/libcfitsio.a"],
- 'dirs': ["include"],
-}
-
-moduleclass = 'lib'
diff --git a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.0-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.0-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index f8fb3992a74..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.0-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-name = 'CGAL'
-version = '4.0'
-
-homepage = 'http://www.cgal.org/'
-description = """The goal of the CGAL Open Source Project is to provide easy access to efficient
-and reliable geometric algorithms in the form of a C++ library."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'strict': True}
-
-sources = [SOURCE_TAR_GZ]
-source_urls = ['http://fenicsproject.org/pub/software/contrib/']
-checksums = ['5e0c11a3f3628f58c5948d6d10271f0c']
-
-pythonversion = '2.7.3'
-versionsuffix = "-Python-%s" % pythonversion
-
-dependencies = [
- ('CMake', '2.8.4'),
- ('GMP', '5.0.5'),
- ('Boost', '1.49.0', versionsuffix),
- ('MPFR', '3.1.0'),
- ('Qt', '4.8.4'),
-]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.0-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.0-ictce-5.3.0-Python-2.7.3.eb
deleted file mode 100644
index c407409f323..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.0-ictce-5.3.0-Python-2.7.3.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-name = 'CGAL'
-version = '4.0'
-
-homepage = 'http://www.cgal.org/'
-description = """The goal of the CGAL Open Source Project is to provide easy access to efficient
- and reliable geometric algorithms in the form of a C++ library."""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'strict': True}
-
-sources = [SOURCE_TAR_GZ]
-source_urls = ['http://fenicsproject.org/pub/software/contrib/']
-checksums = ['5e0c11a3f3628f58c5948d6d10271f0c']
-
-pythonversion = '2.7.3'
-versionsuffix = "-Python-%s" % pythonversion
-
-dependencies = [
- ('CMake', '2.8.4'),
- ('GMP', '5.0.5'),
- ('Boost', '1.49.0', versionsuffix),
- ('MPFR', '3.1.0'),
- ('Qt', '4.8.4'),
-]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.6-foss-2015a-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.6-foss-2015a-Python-2.7.10.eb
deleted file mode 100644
index a42a2566d31..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.6-foss-2015a-Python-2.7.10.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-name = 'CGAL'
-version = '4.6'
-
-homepage = 'http://www.cgal.org/'
-description = """The goal of the CGAL Open Source Project is to provide easy access to efficient
- and reliable geometric algorithms in the form of a C++ library."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-toolchainopts = {'strict': True}
-
-# note: source URL needs to be updated for a new version (checksums too)!
-source_urls = ['https://gforge.inria.fr/frs/download.php/file/34703/']
-sources = [SOURCE_TAR_BZ2]
-checksums = ['fd85f93b2d666970bccda2c55d20a231']
-
-pythonversion = '2.7.10'
-versionsuffix = "-Python-%s" % pythonversion
-
-dependencies = [
- ('GMP', '6.0.0a', '', ('GCC', '4.9.2')),
- ('Boost', '1.58.0', versionsuffix),
- ('MPFR', '3.1.2', '-GMP-6.0.0a'),
- ('Qt', '4.8.6', '-GLib-2.44.0'),
-]
-
-builddependencies = [
- ('CMake', '3.1.3'),
-]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.6-foss-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.6-foss-2015a-Python-2.7.9.eb
deleted file mode 100644
index 3aa0ec62412..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.6-foss-2015a-Python-2.7.9.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-name = 'CGAL'
-version = '4.6'
-
-homepage = 'http://www.cgal.org/'
-description = """The goal of the CGAL Open Source Project is to provide easy access to efficient
- and reliable geometric algorithms in the form of a C++ library."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-toolchainopts = {'strict': True}
-
-# note: source URL needs to be updated for a new version (checksums too)!
-source_urls = ['https://gforge.inria.fr/frs/download.php/file/34703/']
-sources = [SOURCE_TAR_BZ2]
-checksums = ['fd85f93b2d666970bccda2c55d20a231']
-
-pythonversion = '2.7.9'
-versionsuffix = "-Python-%s" % pythonversion
-
-dependencies = [
- ('GMP', '6.0.0a', '', ('GCC', '4.9.2')),
- ('Boost', '1.58.0', versionsuffix),
- ('MPFR', '3.1.2', '-GMP-6.0.0a'),
- ('Qt', '4.8.6', '-GLib-2.44.0'),
-]
-
-builddependencies = [
- ('CMake', '3.1.3'),
-]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.6-intel-2015a-GLib-2.44.1-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.6-intel-2015a-GLib-2.44.1-Python-2.7.10.eb
deleted file mode 100644
index 566b71d5c59..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.6-intel-2015a-GLib-2.44.1-Python-2.7.10.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-name = 'CGAL'
-version = '4.6'
-
-homepage = 'http://www.cgal.org/'
-description = """The goal of the CGAL Open Source Project is to provide easy access to efficient
- and reliable geometric algorithms in the form of a C++ library."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'strict': True}
-
-# note: source URL needs to be updated for a new version (checksums too)!
-source_urls = ['https://gforge.inria.fr/frs/download.php/file/34703/']
-sources = [SOURCE_TAR_BZ2]
-checksums = ['fd85f93b2d666970bccda2c55d20a231']
-
-pysuff = '-Python-2.7.10'
-versionsuffix = '%s%s' % ('-GLib-2.44.1', pysuff)
-
-dependencies = [
- # GMP does not compile correctly with ICC on Haswell architecture using pre 2015b toolchain
- ('GMP', '6.0.0a', '', ('GCC', '4.9.2')),
- ('Boost', '1.58.0', pysuff),
- ('MPFR', '3.1.2', '-GMP-6.0.0a'),
- ('Qt', '4.8.6', versionsuffix),
-]
-
-builddependencies = [
- ('CMake', '3.1.3'),
-]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.6-intel-2015a-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.6-intel-2015a-Python-2.7.10.eb
deleted file mode 100644
index ff84775666e..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.6-intel-2015a-Python-2.7.10.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-name = 'CGAL'
-version = '4.6'
-
-homepage = 'http://www.cgal.org/'
-description = """The goal of the CGAL Open Source Project is to provide easy access to efficient
- and reliable geometric algorithms in the form of a C++ library."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'strict': True}
-
-# note: source URL needs to be updated for a new version (checksums too)!
-source_urls = ['https://gforge.inria.fr/frs/download.php/file/34703/']
-sources = [SOURCE_TAR_BZ2]
-checksums = ['fd85f93b2d666970bccda2c55d20a231']
-
-pythonversion = '2.7.10'
-versionsuffix = "-Python-%s" % pythonversion
-
-dependencies = [
- # GMP does not compile correctly with ICC on Haswell architecture
- ('GMP', '6.0.0a', '', ('GCC', '4.9.2')),
- ('Boost', '1.58.0', versionsuffix),
- ('MPFR', '3.1.2', '-GMP-6.0.0a'),
- ('Qt', '4.8.6', '-GLib-2.44.0'),
-]
-
-builddependencies = [
- ('CMake', '3.1.3'),
-]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.6-intel-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.6-intel-2015a-Python-2.7.9.eb
deleted file mode 100644
index 59646f1f0f5..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.6-intel-2015a-Python-2.7.9.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-name = 'CGAL'
-version = '4.6'
-
-homepage = 'http://www.cgal.org/'
-description = """The goal of the CGAL Open Source Project is to provide easy access to efficient
- and reliable geometric algorithms in the form of a C++ library."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'strict': True}
-
-# note: source URL needs to be updated for a new version (checksums too)!
-source_urls = ['https://gforge.inria.fr/frs/download.php/file/34703/']
-sources = [SOURCE_TAR_BZ2]
-checksums = ['fd85f93b2d666970bccda2c55d20a231']
-
-pythonversion = '2.7.9'
-versionsuffix = "-Python-%s" % pythonversion
-
-dependencies = [
- # GMP does not compile correctly with ICC on Haswell architecture
- ('GMP', '6.0.0a', '', ('GCC', '4.9.2')),
- ('Boost', '1.58.0', versionsuffix),
- ('MPFR', '3.1.2', '-GMP-6.0.0a'),
- ('Qt', '4.8.6', '-GLib-2.44.0'),
-]
-
-builddependencies = [
- ('CMake', '3.1.3'),
-]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.6.3-intel-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.6.3-intel-2015b-Python-2.7.10.eb
deleted file mode 100644
index 40ba6d07e7f..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.6.3-intel-2015b-Python-2.7.10.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-name = 'CGAL'
-version = '4.6.3'
-
-homepage = 'http://www.cgal.org/'
-description = """The goal of the CGAL Open Source Project is to provide easy access to efficient
- and reliable geometric algorithms in the form of a C++ library."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'strict': True}
-
-# note: source URL needs to be updated for a new version (checksums too)!
-source_urls = ['https://gforge.inria.fr/frs/download.php/file/35136/']
-sources = [SOURCE_TAR_BZ2]
-checksums = ['51a86bd60c7390679b303d2925e94048']
-
-pythonversion = '2.7.10'
-versionsuffix = "-Python-%s" % pythonversion
-
-dependencies = [
- ('GMP', '6.0.0a'),
- ('Boost', '1.59.0', versionsuffix),
- ('MPFR', '3.1.3'),
- ('Qt', '4.8.7'),
-]
-
-builddependencies = [
- # CGAL 4.6.3 does not build with CMake 3.3.2!
- ('CMake', '3.2.3'),
-]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.7-intel-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.7-intel-2015b-Python-2.7.10.eb
deleted file mode 100644
index 6c35becc3d5..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.7-intel-2015b-Python-2.7.10.eb
+++ /dev/null
@@ -1,35 +0,0 @@
-name = 'CGAL'
-version = '4.7'
-
-homepage = 'http://www.cgal.org/'
-description = """The goal of the CGAL Open Source Project is to provide easy access to efficient
- and reliable geometric algorithms in the form of a C++ library."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'strict': True}
-
-# note: source URL needs to be updated for a new version (checksums too)!
-source_urls = ['https://github.com/CGAL/cgal/releases/download/releases%2FCGAL-%(version)s']
-sources = [SOURCE_TAR_XZ]
-checksums = ['623d91fb2ab0a35049dc6098a0f235cc']
-
-pythonversion = '2.7.10'
-versionsuffix = "-Python-%s" % pythonversion
-
-dependencies = [
- ('GMP', '6.0.0a'),
- ('Boost', '1.59.0', versionsuffix),
- ('MPFR', '3.1.3'),
- ('Qt5', '5.5.1'),
- ('Mesa', '11.0.2', versionsuffix),
- ('libGLU', '9.0.0'),
-]
-
-configopts = r"-DOPENGL_INCLUDE_DIR=$EBROOTMESA/include\;$EBROOTLIBGLU/include "
-configopts += "-DOPENGL_gl_LIBRARY=$EBROOTMESA/lib/libGL.so -DOPENGL_glu_LIBRARY=$EBROOTLIBGLU/lib/libGLU.so "
-
-builddependencies = [
- ('CMake', '3.4.1'),
-]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.7-intel-2015b-Python-2.7.11.eb b/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.7-intel-2015b-Python-2.7.11.eb
deleted file mode 100644
index b7b9e93e9f4..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.7-intel-2015b-Python-2.7.11.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-name = 'CGAL'
-version = '4.7'
-
-homepage = 'http://www.cgal.org/'
-description = """The goal of the CGAL Open Source Project is to provide easy access to efficient
- and reliable geometric algorithms in the form of a C++ library."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'strict': True}
-
-# note: source URL needs to be updated for a new version (checksums too)!
-source_urls = ['https://github.com/CGAL/cgal/releases/download/releases%2FCGAL-%(version)s']
-sources = [SOURCE_TAR_XZ]
-checksums = ['623d91fb2ab0a35049dc6098a0f235cc']
-
-pythonversion = '2.7.11'
-versionsuffix = "-Python-%s" % pythonversion
-
-mesaver = '11.0.8'
-dependencies = [
- ('Boost', '1.59.0', versionsuffix),
- ('MPFR', '3.1.3', '-GMP-6.1.0'),
- ('Qt5', '5.5.1', '-Mesa-%s' % mesaver),
- ('Mesa', '11.0.8', versionsuffix),
- ('libGLU', '9.0.0', '-Mesa-%s' % mesaver),
-]
-
-configopts = r"-DOPENGL_INCLUDE_DIR=$EBROOTMESA/include\;$EBROOTLIBGLU/include "
-configopts += "-DOPENGL_gl_LIBRARY=$EBROOTMESA/lib/libGL.%s " % SHLIB_EXT
-configopts += "-DOPENGL_glu_LIBRARY=$EBROOTLIBGLU/lib/libGLU.%s " % SHLIB_EXT
-
-builddependencies = [
- ('CMake', '3.4.1'),
-]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb b/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb
deleted file mode 100644
index b1f420ddcbb..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CGAL/CGAL-4.8.1-foss-2015a-GLib-2.48.2-Python-2.7.11.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-name = 'CGAL'
-version = '4.8.1'
-gmpver = '6.0.0a'
-pyver = '2.7.11'
-glibver = '2.48.2'
-versionsuffix = '-GLib-%s-Python-%s' % (glibver, pyver)
-
-homepage = 'http://www.cgal.org/'
-description = """The goal of the CGAL Open Source Project is to provide easy access to efficient
- and reliable geometric algorithms in the form of a C++ library."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-toolchainopts = {'strict': True}
-
-source_urls = ['https://github.com/%(name)s/%(namelower)s/releases/download/releases%2F%(name)s-%(version)s']
-sources = [SOURCE_TAR_XZ]
-checksums = ['1cbcb3f251822766ed3d744f923c782d']
-
-dependencies = [
- ('Boost', '1.60.0'),
- ('GLib', glibver),
- ('GMP', gmpver, '', ('GCC', '4.9.2')),
- ('libGLU', '9.0.0', '-Mesa-11.2.1'),
- ('MPFR', '3.1.2', '-GMP-%s' % gmpver),
- ('Qt', '4.8.7', versionsuffix),
-]
-
-configopts = "-DCMAKE_VERBOSE_MAKEFILE=ON "
-configopts += r"-DOPENGL_INCLUDE_DIR=$EBROOTMESA/include\;$EBROOTLIBGLU/include "
-configopts += "-DOPENGL_gl_LIBRARY=$EBROOTMESA/lib/libGL.%s " % SHLIB_EXT
-configopts += "-DOPENGL_glu_LIBRARY=$EBROOTLIBGLU/lib/libGLU.%s " % SHLIB_EXT
-
-builddependencies = [
- ('CMake', '3.4.1'),
- ('Eigen', '3.2.9'),
-]
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2-foss-2016a.eb b/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2-foss-2016a.eb
deleted file mode 100644
index c24eb87f858..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2-foss-2016a.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-# Authors:: Ward Poelmans
-
-name = 'CHARMM'
-version = '37b2'
-
-homepage = "http://www.charmm.org"
-description = """CHARMM (Chemistry at HARvard Macromolecular Mechanics) is a versatile
-and widely used molecular simulation program with broad application to many-particle systems."""
-
-toolchain = {'name': 'foss', 'version': '2016a'}
-toolchainopts = {'usempi': True}
-
-sources = ["c%(version)s.tar.gz"]
-
-patches = [
- "qmmm-pme-%(version)s.patch",
- "use-xhost-%(version)s.patch",
- "main-case-fix-%(version)s.patch",
- 'CHARMM-%(version)s_fix-qgas-double-declared.patch',
-]
-
-# MKL activated automatically when the intel toolchain is used
-build_options = "FULL COLFFT PIPF +DOMDEC -CMPI"
-
-# Choose from: huge, xxlarge, xlarge, large, medium (the default), small, xsmall, reduce
-system_size = "medium"
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2-ictce-5.5.0-mt.eb b/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2-ictce-5.5.0-mt.eb
deleted file mode 100644
index 18d4e7d4ab6..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2-ictce-5.5.0-mt.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-# Authors:: Ward Poelmans
-
-name = "CHARMM"
-version = "37b2"
-versionsuffix = "-mt"
-
-homepage = "http://www.charmm.org"
-description = """CHARMM (Chemistry at HARvard Macromolecular Mechanics) is a versatile
-and widely used molecular simulation program with broad application to many-particle systems."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'optarch': True, 'usempi': False}
-
-sources = ["c%(version)s.tar.gz"]
-
-patches = [
- "qmmm-pme-%(version)s.patch",
- "use-xhost-%(version)s.patch",
- "main-case-fix-%(version)s.patch",
-]
-
-# MKL activated automatically when the MKL is found, same for g09
-build_options = "FULL COLFFT PIPF"
-
-# Choose from: huge, xxlarge, xlarge, large, medium (the default), small, xsmall, reduce
-system_size = "medium"
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2-ictce-5.5.0.eb
deleted file mode 100644
index d7cd0f51f6f..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2-ictce-5.5.0.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-# Authors:: Ward Poelmans
-
-name = "CHARMM"
-version = "37b2"
-
-homepage = "http://www.charmm.org"
-description = """CHARMM (Chemistry at HARvard Macromolecular Mechanics) is a versatile
-and widely used molecular simulation program with broad application to many-particle systems."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'optarch': True, 'usempi': True}
-
-sources = ["c%(version)s.tar.gz"]
-
-patches = [
- "qmmm-pme-%(version)s.patch",
- "use-xhost-%(version)s.patch",
- "main-case-fix-%(version)s.patch",
-]
-
-# MKL activated automatically when the ictce toolchain is used
-build_options = "FULL COLFFT PIPF +DOMDEC -CMPI"
-
-# Choose from: huge, xxlarge, xlarge, large, medium (the default), small, xsmall, reduce
-system_size = "medium"
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2-intel-2015a.eb
deleted file mode 100644
index 894f7b22975..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2-intel-2015a.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-# Authors:: Ward Poelmans
-
-name = "CHARMM"
-version = "37b2"
-
-homepage = "http://www.charmm.org"
-description = """CHARMM (Chemistry at HARvard Macromolecular Mechanics) is a versatile
-and widely used molecular simulation program with broad application to many-particle systems."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'optarch': True, 'usempi': True}
-
-sources = ["c%(version)s.tar.gz"]
-
-patches = [
- "qmmm-pme-%(version)s.patch",
- "use-xhost-%(version)s.patch",
- "main-case-fix-%(version)s.patch",
- 'CHARMM-%(version)s_fix-qgas-double-declared.patch',
-]
-
-# MKL activated automatically when the intel toolchain is used
-build_options = "FULL COLFFT PIPF +DOMDEC -CMPI"
-
-# Choose from: huge, xxlarge, xlarge, large, medium (the default), small, xsmall, reduce
-system_size = "medium"
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2-intel-2015b.eb b/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2-intel-2015b.eb
deleted file mode 100644
index de51fe23be5..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2-intel-2015b.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-# Authors:: Ward Poelmans
-
-name = 'CHARMM'
-version = '37b2'
-
-homepage = "http://www.charmm.org"
-description = """CHARMM (Chemistry at HARvard Macromolecular Mechanics) is a versatile
-and widely used molecular simulation program with broad application to many-particle systems."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'optarch': True, 'usempi': True}
-
-sources = ["c%(version)s.tar.gz"]
-
-patches = [
- "qmmm-pme-%(version)s.patch",
- "use-xhost-%(version)s.patch",
- "main-case-fix-%(version)s.patch",
- 'CHARMM-%(version)s_fix-qgas-double-declared.patch',
-]
-
-# MKL activated automatically when the intel toolchain is used
-build_options = "FULL COLFFT PIPF +DOMDEC -CMPI"
-
-# Choose from: huge, xxlarge, xlarge, large, medium (the default), small, xsmall, reduce
-system_size = "medium"
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2-intel-2016a.eb b/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2-intel-2016a.eb
deleted file mode 100644
index 100fe610032..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2-intel-2016a.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-# Authors:: Ward Poelmans
-
-name = 'CHARMM'
-version = '37b2'
-
-homepage = "http://www.charmm.org"
-description = """CHARMM (Chemistry at HARvard Macromolecular Mechanics) is a versatile
-and widely used molecular simulation program with broad application to many-particle systems."""
-
-toolchain = {'name': 'intel', 'version': '2016a'}
-toolchainopts = {'optarch': True, 'usempi': True}
-
-sources = ["c%(version)s.tar.gz"]
-
-patches = [
- "qmmm-pme-%(version)s.patch",
- "use-xhost-%(version)s.patch",
- "main-case-fix-%(version)s.patch",
- 'CHARMM-%(version)s_fix-qgas-double-declared.patch',
-]
-
-# MKL activated automatically when the intel toolchain is used
-build_options = "FULL COLFFT PIPF +DOMDEC -CMPI"
-
-# Choose from: huge, xxlarge, xlarge, large, medium (the default), small, xsmall, reduce
-system_size = "medium"
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2_fix-qgas-double-declared.patch b/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2_fix-qgas-double-declared.patch
deleted file mode 100644
index 2c8d36a45f3..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CHARMM/CHARMM-37b2_fix-qgas-double-declared.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-reproduction of CHARMM SVN revision 272 (Check-in: http:/charmm.hanyang.ac.kr/6187)
-renamed qgas variable in pbeq to qgas1 and updated references in energy
-diff -ru c37b2.orig/source/energy/energy.src c37b2/source/energy/energy.src
---- c37b2.orig/source/energy/energy.src 2012-09-29 08:01:42.000000000 +0200
-+++ c37b2/source/energy/energy.src 2015-05-21 16:57:43.951197202 +0200
-@@ -266,7 +266,7 @@
- use param
- use pathm
- use mpathint, only: qpint, epint !##PATHINT
-- use pbeq, only: qpbeq,qpbf,npbeq,qgsbp,pbforce,gsbp0,qgas,qsmbp,smbp0 !##PBEQ
-+ use pbeq, only: qpbeq,qpbf,npbeq,qgsbp,pbforce,gsbp0,qgas1,qsmbp,smbp0 !##PBEQ
- use pbound
- use pert
- use polarm, only: qpolar, polar1 !##POLAR
-@@ -3203,7 +3203,7 @@
-
- CALL PBFORCE(NATOM,X,Y,Z,CG,ETERM(PBELEC),ETERM(PBNP), &
- DX,DY,DZ,NPBEQ,ecalls,.false. &
-- ,QETERM(QMEL),ETERM(QMEL),QGAS & !##SCCDFTB
-+ ,QETERM(QMEL),ETERM(QMEL),QGAS1 & !##SCCDFTB
- )
- IF (TIMER.GT.1) &
- CALL WRTTIM('Poisson Boltzmann Solvation energy times:')
-diff -ru c37b2.orig/source/misc/pbeq.src c37b2/source/misc/pbeq.src
---- c37b2.orig/source/misc/pbeq.src 2012-08-08 20:08:30.000000000 +0200
-+++ c37b2/source/misc/pbeq.src 2015-05-21 16:55:47.871787533 +0200
-@@ -19,7 +19,7 @@
- !public :: pbeq0,pbforce,gsbp0,srdist
- !QC: export more
- public :: pbeq0,pbforce,gsbp0,srdist,m3,dm3,rpowerl2,cosmphi2,sinmphi2,&
-- alpol2,dalpol2,lpol2,dlpol2,pbeq1,oldpbeq1,mayer,pbeq2,qgas, &
-+ alpol2,dalpol2,lpol2,dlpol2,pbeq1,oldpbeq1,mayer,pbeq2,qgas1, &
- pbeq_iniall,smbp0
-
- !variables
-@@ -115,7 +115,7 @@
-
- ! The following is related to QM/MM implementation of gsbp and pb
- ! Xiao_QC_UW0609
-- LOGICAL QPSC,QGAS
-+ LOGICAL QPSC,QGAS1
- ##IF SCCDFTB
- !
- ! COEFX -----> heap index for COEFX(NTPOL)
-@@ -2734,7 +2734,7 @@
- ! XIAO_QC_UW0609 keyword for SCC/PB
- MXTPSC = GTRMI(COMLYN,COMLEN,'MXPS',5000)
- PSCTOL = GTRMF(COMLYN,COMLEN,'PSTL',1.0D-2)
-- QGAS = INDXA(COMLYN,COMLEN,'IGAS').GT.0
-+ QGAS1 = INDXA(COMLYN,COMLEN,'IGAS').GT.0
- ! XIAO_QC_UW0609 add charge dependant radii
- QCHDRAD = INDXA(COMLYN,COMLEN,'CHDR').GT.0
- IF (QCHDRAD) THEN
diff --git a/easybuild/easyconfigs/__archive__/c/CHARMM/main-case-fix-37b2.patch b/easybuild/easyconfigs/__archive__/c/CHARMM/main-case-fix-37b2.patch
deleted file mode 100644
index e2261c31732..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CHARMM/main-case-fix-37b2.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-# fix a error in the main
-# By Ward Poelmans
-diff -ur c37b2.orig/source/charmm/charmm_main.src c37b2/source/charmm/charmm_main.src
---- c37b2.orig/source/charmm/charmm_main.src 2013-02-11 06:27:24.000000000 +0100
-+++ c37b2/source/charmm/charmm_main.src 2013-12-03 16:30:45.539579132 +0100
-@@ -1267,7 +1267,7 @@
-
- case('PIPF','PFBA') cmds
- ##IF PIPF
-- if (wrd == 'PIPF') cmds
-+ if (wrd == 'PIPF') then
- call pfprep(comlyn,comlen)
- else if (wrd == 'PFBA') then
- call nosepf(comlyn,comlen)
diff --git a/easybuild/easyconfigs/__archive__/c/CHARMM/qmmm-pme-37b2.patch b/easybuild/easyconfigs/__archive__/c/CHARMM/qmmm-pme-37b2.patch
deleted file mode 100644
index 291948be887..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CHARMM/qmmm-pme-37b2.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-# fixes compile error: for some reason, ifort fails on this (possibly compiler bug)
-# As a solution, we always display the warning
-# By Ward Poelmans
-diff -ur c37b2.orig/source/squantm/sqnt_qm2_ewald.src c37b2/source/squantm/sqnt_qm2_ewald.src
---- c37b2.orig/source/squantm/sqnt_qm2_ewald.src 2012-07-17 01:08:32.000000000 +0200
-+++ c37b2/source/squantm/sqnt_qm2_ewald.src 2013-12-03 14:11:46.945196858 +0100
-@@ -1876,7 +1878,7 @@
- ##IF COLFFT (colfft)
- !==================COLUMN FFT METHOD ==============================
- ##IF QUANTUM MNDO97 SQUANTM GAMESS GAMESSUK QCHEM QTURBO G09
-- if(LQMEWD) call wrndie(-5,'','QM/MM-PME do not support COLFFT.')
-+ call wrndie(1,'','QM/MM-PME do not support COLFFT.')
- ##ENDIF
- ##ELSE (colfft)
- !.ab.Fix: xnsymm should be set (not 0 !).
-@@ -2146,7 +2148,7 @@
- ##IF COLFFT (colfft)
- !==================COLUMN FFT METHOD ==============================
- ##IF QUANTUM MNDO97 SQUANTM GAMESS GAMESSUK QCHEM QTURBO G09
-- if(LQMEWD) call wrndie(-5,'','QM/MM-PME do not support COLFFT.')
-+ call wrndie(1,'','QM/MM-PME do not support COLFFT.')
- ##ENDIF
- ##ELSE (colfft)
-
diff --git a/easybuild/easyconfigs/__archive__/c/CHARMM/use-xhost-37b2.patch b/easybuild/easyconfigs/__archive__/c/CHARMM/use-xhost-37b2.patch
deleted file mode 100644
index 1bfab91ec4b..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CHARMM/use-xhost-37b2.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-# lets use the flags the EB sets for us
-# By Ward Poelmans
-diff -ur c37b2.orig/build/UNX/Makefile_em64t c37b2/build/UNX/Makefile_em64t
---- c37b2.orig/build/UNX/Makefile_em64t 2012-07-10 14:06:18.000000000 +0200
-+++ c37b2/build/UNX/Makefile_em64t 2013-12-03 15:35:18.997245768 +0100
-@@ -39,8 +39,8 @@
-
- FC0 = $(FC) -c -O0 -free
- FC1 = $(FC) -c -O1 -free
-- FC2 = $(FC) -c -O3 -mp1 -axSSE4.1 -free
-- FC3 = $(FC) -c -O3 -mp1 -axSSE4.1 -free
-+ FC2 = $(FC) -c -O3 -mp1 -free $(F90FLAGS)
-+ FC3 = $(FC) -c -O3 -mp1 -free $(F90FLAGS)
- FCR = $(FC) -c -u -V -free
- FCD = $(FC) -c -g -O0 -u -traceback -free
- ifdef DEBUG
diff --git a/easybuild/easyconfigs/__archive__/c/CLHEP/CLHEP-2.1.1.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/CLHEP/CLHEP-2.1.1.0-goolf-1.4.10.eb
deleted file mode 100644
index 44f5feeb1c5..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CLHEP/CLHEP-2.1.1.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,17 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CLHEP'
-version = '2.1.1.0'
-
-homepage = 'http://proj-clhep.web.cern.ch/proj-clhep/'
-description = """The CLHEP project is intended to be a set of HEP-specific foundation and
- utility classes such as random generators, physics vectors, geometry and linear algebra.
- CLHEP is structured in a set of packages independent of any external package."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TGZ]
-source_urls = ['http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/']
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/c/CLHEP/CLHEP-2.1.1.0-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/c/CLHEP/CLHEP-2.1.1.0-ictce-5.3.0.eb
deleted file mode 100644
index eef62765741..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CLHEP/CLHEP-2.1.1.0-ictce-5.3.0.eb
+++ /dev/null
@@ -1,21 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CLHEP'
-version = '2.1.1.0'
-
-homepage = 'http://proj-clhep.web.cern.ch/proj-clhep/'
-description = """The CLHEP project is intended to be a set of HEP-specific foundation and
- utility classes such as random generators, physics vectors, geometry and linear algebra.
- CLHEP is structured in a set of packages independent of any external package."""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TGZ]
-source_urls = ['http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/']
-
-# CLHEP compiles with icc instead of icpc
-configopts = 'CXX="$CC" CXXFLAGS="$CXXFLAGS -gcc"'
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/c/CLHEP/CLHEP-2.1.1.0-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/CLHEP/CLHEP-2.1.1.0-intel-2015a.eb
deleted file mode 100644
index fb3888c0b0c..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CLHEP/CLHEP-2.1.1.0-intel-2015a.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CLHEP'
-version = '2.1.1.0'
-
-homepage = 'http://proj-clhep.web.cern.ch/proj-clhep/'
-description = """The CLHEP project is intended to be a set of HEP-specific foundation and
- utility classes such as random generators, physics vectors, geometry and linear algebra.
- CLHEP is structured in a set of packages independent of any external package."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TGZ]
-source_urls = ['http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/']
-
-# CLHEP compiles with icc instead of icpc
-configopts = 'CXX="$CC" CXXFLAGS="$CXXFLAGS -gcc"'
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/c/CLHEP/CLHEP-2.1.3.1-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/c/CLHEP/CLHEP-2.1.3.1-ictce-5.5.0.eb
deleted file mode 100644
index 380b94f6c7c..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CLHEP/CLHEP-2.1.3.1-ictce-5.5.0.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-easyblock = 'CMakeMake'
-
-name = 'CLHEP'
-version = '2.1.3.1'
-
-homepage = 'http://proj-clhep.web.cern.ch/proj-clhep/'
-description = """The CLHEP project is intended to be a set of HEP-specific foundation and
- utility classes such as random generators, physics vectors, geometry and linear algebra.
- CLHEP is structured in a set of packages independent of any external package."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TGZ]
-source_urls = ['http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/']
-
-builddependencies = [('CMake', '2.8.12')]
-
-separate_build_dir = True
-
-configopts = '-DCMAKE_BUILD_TYPE=Release'
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/c/CLHEP/CLHEP-2.1.3.1-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/CLHEP/CLHEP-2.1.3.1-intel-2015a.eb
deleted file mode 100644
index 0e9493dbb41..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CLHEP/CLHEP-2.1.3.1-intel-2015a.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-easyblock = 'CMakeMake'
-
-name = 'CLHEP'
-version = '2.1.3.1'
-
-homepage = 'http://proj-clhep.web.cern.ch/proj-clhep/'
-description = """The CLHEP project is intended to be a set of HEP-specific foundation and
- utility classes such as random generators, physics vectors, geometry and linear algebra.
- CLHEP is structured in a set of packages independent of any external package."""
-
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TGZ]
-source_urls = ['http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/']
-
-builddependencies = [('CMake', '3.1.3')]
-
-separate_build_dir = True
-
-configopts = '-DCMAKE_BUILD_TYPE=Release'
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/c/CLHEP/CLHEP-2.2.0.5-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/CLHEP/CLHEP-2.2.0.5-intel-2015a.eb
deleted file mode 100644
index cf96d8d47a2..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CLHEP/CLHEP-2.2.0.5-intel-2015a.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-easyblock = 'CMakeMake'
-
-name = 'CLHEP'
-version = '2.2.0.5'
-
-homepage = 'http://proj-clhep.web.cern.ch/proj-clhep/'
-description = """The CLHEP project is intended to be a set of HEP-specific foundation and
- utility classes such as random generators, physics vectors, geometry and linear algebra.
- CLHEP is structured in a set of packages independent of any external package."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TGZ]
-source_urls = ['http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/']
-
-builddependencies = [('CMake', '3.2.2')]
-
-separate_build_dir = True
-
-configopts = '-DCMAKE_BUILD_TYPE=Release'
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.10.2-goolf-1.5.14.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.10.2-goolf-1.5.14.eb
deleted file mode 100644
index feb561d760a..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.10.2-goolf-1.5.14.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = "2.8.10.2"
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'goolf', 'version': '1.5.14'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.10.2-ictce-5.2.0.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.10.2-ictce-5.2.0.eb
deleted file mode 100644
index fecbbb8212a..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.10.2-ictce-5.2.0.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = "2.8.10.2"
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'ictce', 'version': '5.2.0'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.10.2-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.10.2-ictce-5.3.0.eb
deleted file mode 100644
index 0981e4bfde3..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.10.2-ictce-5.3.0.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = "2.8.10.2"
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.11-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.11-goolf-1.4.10.eb
deleted file mode 100644
index 52b7ad5a1d7..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.11-goolf-1.4.10.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = "2.8.11"
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.11-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.11-ictce-5.3.0.eb
deleted file mode 100644
index 6d95f925309..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.11-ictce-5.3.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '2.8.11'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-foss-2014b.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-foss-2014b.eb
deleted file mode 100644
index 08b9903802b..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-foss-2014b.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '2.8.12'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'foss', 'version': '2014b'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-goolf-1.4.10.eb
deleted file mode 100644
index ea127d1f6f4..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-goolf-1.4.10.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '2.8.12'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-goolf-1.7.20.eb
deleted file mode 100644
index 189d7035822..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-goolf-1.7.20.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '2.8.12'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-ictce-5.3.0.eb
deleted file mode 100644
index add27004897..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-ictce-5.3.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '2.8.12'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-ictce-5.4.0.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-ictce-5.4.0.eb
deleted file mode 100644
index fe7302f0ac5..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-ictce-5.4.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '2.8.12'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'ictce', 'version': '5.4.0'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-ictce-5.5.0.eb
deleted file mode 100644
index 65989c3d415..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-ictce-5.5.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '2.8.12'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-ictce-6.2.5.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-ictce-6.2.5.eb
deleted file mode 100644
index 3478f86d65e..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-ictce-6.2.5.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '2.8.12'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'ictce', 'version': '6.2.5'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-ictce-7.1.2.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-ictce-7.1.2.eb
deleted file mode 100644
index 97f1c880539..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-ictce-7.1.2.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '2.8.12'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'ictce', 'version': '7.1.2'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-intel-2014b.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-intel-2014b.eb
deleted file mode 100644
index 93127430ded..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.12-intel-2014b.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '2.8.12'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.4-GCC-4.7.2.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.4-GCC-4.7.2.eb
deleted file mode 100644
index a1685498a15..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.4-GCC-4.7.2.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '2.8.4'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'GCC', 'version': '4.7.2'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.4-GCC-4.7.3.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.4-GCC-4.7.3.eb
deleted file mode 100644
index 40dd8432c28..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.4-GCC-4.7.3.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '2.8.4'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'GCC', 'version': '4.7.3'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.4-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.4-goolf-1.4.10.eb
deleted file mode 100644
index b3ef140ae54..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.4-goolf-1.4.10.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '2.8.4'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.4-ictce-5.2.0.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.4-ictce-5.2.0.eb
deleted file mode 100644
index 4357a674cf8..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.4-ictce-5.2.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '2.8.4'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'ictce', 'version': '5.2.0'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.4-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.4-ictce-5.3.0.eb
deleted file mode 100644
index 3fcf409cdaf..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.4-ictce-5.3.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '2.8.4'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.4-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.4-intel-2015a.eb
deleted file mode 100644
index c08d8d2cfd6..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-2.8.4-intel-2015a.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '2.8.4'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.0.0-foss-2014b.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.0.0-foss-2014b.eb
deleted file mode 100644
index 872f8b4d7da..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.0.0-foss-2014b.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.0.0'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'foss', 'version': '2014b'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.0.0-foss-2015a.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.0.0-foss-2015a.eb
deleted file mode 100644
index c55a48656c2..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.0.0-foss-2015a.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.0.0'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.0.0-intel-2014.06.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.0.0-intel-2014.06.eb
deleted file mode 100644
index 447079089d9..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.0.0-intel-2014.06.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.0.0'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'intel', 'version': '2014.06'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.0.0-intel-2014b.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.0.0-intel-2014b.eb
deleted file mode 100644
index fa4cdee8bff..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.0.0-intel-2014b.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.0.0'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.0.0-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.0.0-intel-2015a.eb
deleted file mode 100644
index 82fcafc057a..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.0.0-intel-2015a.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.0.0'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.0.2-goolf-1.5.14.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.0.2-goolf-1.5.14.eb
deleted file mode 100644
index 86c6c208691..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.0.2-goolf-1.5.14.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.0.2'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'goolf', 'version': '1.5.14'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.1.0-intel-2014b.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.1.0-intel-2014b.eb
deleted file mode 100644
index 40eb55b4f38..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.1.0-intel-2014b.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.1.0'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.1.3-foss-2015a.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.1.3-foss-2015a.eb
deleted file mode 100644
index 543c9cc79f8..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.1.3-foss-2015a.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.1.3'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.1.3-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.1.3-intel-2015a.eb
deleted file mode 100644
index be08430cf49..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.1.3-intel-2015a.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.1.3'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.1-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.1-intel-2015a.eb
deleted file mode 100644
index 4982739fa2a..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.1-intel-2015a.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.2.1'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.2-CrayGNU-2015.06.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.2-CrayGNU-2015.06.eb
deleted file mode 100644
index 3de7ff42c38..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.2-CrayGNU-2015.06.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.2.2'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'CrayGNU', 'version': '2015.06'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.2-CrayGNU-2015.11.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.2-CrayGNU-2015.11.eb
deleted file mode 100644
index 1f3739c57ee..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.2-CrayGNU-2015.11.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.2.2'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'CrayGNU', 'version': '2015.11'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.2-CrayIntel-2015.11.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.2-CrayIntel-2015.11.eb
deleted file mode 100644
index 7c87dffeabb..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.2-CrayIntel-2015.11.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.2.2'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'CrayIntel', 'version': '2015.11'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.2-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.2-intel-2015a.eb
deleted file mode 100644
index d971d9f7a0a..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.2-intel-2015a.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.2.2'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.3-foss-2015a.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.3-foss-2015a.eb
deleted file mode 100644
index b5f1d052ce6..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.3-foss-2015a.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.2.3'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-configopts = '-- -DCMAKE_USE_OPENSSL=1'
-
-dependencies = [
- ('ncurses', '5.9'),
- # OS dependency should be preferred if the os version is more recent then this version,
- # it's nice to have an up to date openssl for security reasons
- # ('OpenSSL', '1.0.1k'),
-]
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.3-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.3-goolf-1.4.10.eb
deleted file mode 100644
index bbe947dc70d..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.3-goolf-1.4.10.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.2.3'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-configopts = '-- -DCMAKE_USE_OPENSSL=1'
-
-dependencies = [
- ('ncurses', '5.9'),
- # OS dependency should be preferred if the os version is more recent then this version,
- # it's nice to have an up to date openssl for security reasons
- # ('OpenSSL', '1.0.1k'),
-]
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.3-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.3-intel-2015a.eb
deleted file mode 100644
index e4ebb6e7110..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.3-intel-2015a.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.2.3'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-configopts = '-- -DCMAKE_USE_OPENSSL=1'
-
-dependencies = [
- ('ncurses', '5.9'),
- # OS dependency should be preferred if the os version is more recent then this version,
- # it's nice to have an up to date openssl for security reasons
- # ('OpenSSL', '1.0.1k'),
-]
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.3-intel-2015b.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.3-intel-2015b.eb
deleted file mode 100644
index c20cd926c3e..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.2.3-intel-2015b.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.2.3'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-configopts = '-- -DCMAKE_USE_OPENSSL=1'
-
-dependencies = [
- ('ncurses', '5.9'),
- # OS dependency should be preferred if the os version is more recent then this version,
- # it's nice to have an up to date openssl for security reasons
- # ('OpenSSL', '1.0.1k'),
-]
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.3.1-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.3.1-intel-2015a.eb
deleted file mode 100644
index 86657cbc548..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.3.1-intel-2015a.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.3.1'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-configopts = '-- -DCMAKE_USE_OPENSSL=1'
-
-dependencies = [
- ('ncurses', '5.9'),
- # OS dependency should be preferred if the os version is more recent then this version,
- # it's nice to have an up to date openssl for security reasons
- # ('OpenSSL', '1.0.1p'),
-]
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.3.2-intel-2015b.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.3.2-intel-2015b.eb
deleted file mode 100644
index 4e830d782c9..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.3.2-intel-2015b.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.3.2'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-configopts = '-- -DCMAKE_USE_OPENSSL=1'
-
-dependencies = [
- ('ncurses', '5.9'),
- # OS dependency should be preferred if the os version is more recent then this version,
- # it's nice to have an up to date openssl for security reasons
- # ('OpenSSL', '1.0.1p'),
-]
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.4.0-intel-2015b.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.4.0-intel-2015b.eb
deleted file mode 100644
index db836864c08..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.4.0-intel-2015b.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.4.0'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-configopts = '-- -DCMAKE_USE_OPENSSL=1 -DCMAKE_PREFIX_PATH=$EBROOTNCURSES'
-
-dependencies = [
- ('ncurses', '5.9'),
- # OS dependency should be preferred if the os version is more recent then this version,
- # it's nice to have an up to date openssl for security reasons
- # ('OpenSSL', '1.0.1p'),
-]
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['ccmake', 'cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.4.1-foss-2015a.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.4.1-foss-2015a.eb
deleted file mode 100644
index f268f237cd2..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.4.1-foss-2015a.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.4.1'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-configopts = '-- -DCMAKE_USE_OPENSSL=1 -DCMAKE_PREFIX_PATH=$EBROOTNCURSES'
-
-dependencies = [
- ('ncurses', '5.9'),
-]
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['ccmake', 'cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.4.1-foss-2015b.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.4.1-foss-2015b.eb
deleted file mode 100644
index ffff7b421bc..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.4.1-foss-2015b.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.4.1'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-configopts = '-- -DCMAKE_USE_OPENSSL=1 -DCMAKE_PREFIX_PATH=$EBROOTNCURSES'
-
-dependencies = [
- ('ncurses', '5.9'),
- # OS dependency should be preferred if the os version is more recent then this version,
- # it's nice to have an up to date openssl for security reasons
- # ('OpenSSL', '1.0.1p'),
-]
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['ccmake', 'cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.4.1-intel-2015b.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.4.1-intel-2015b.eb
deleted file mode 100644
index 3b85329fd7b..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.4.1-intel-2015b.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.4.1'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-configopts = '-- -DCMAKE_USE_OPENSSL=1 -DCMAKE_PREFIX_PATH=$EBROOTNCURSES'
-
-dependencies = [
- ('ncurses', '5.9'),
- # OS dependency should be preferred if the os version is more recent then this version,
- # it's nice to have an up to date openssl for security reasons
- # ('OpenSSL', '1.0.1p'),
-]
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['ccmake', 'cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.4.3-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.4.3-goolf-1.7.20.eb
deleted file mode 100644
index 7ff969cd255..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.4.3-goolf-1.7.20.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.4.3'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-configopts = '-- -DCMAKE_USE_OPENSSL=1 -DCMAKE_PREFIX_PATH=$EBROOTNCURSES'
-
-dependencies = [
- ('ncurses', '5.9'),
- # OS dependency should be preferred if the os version is more recent then this version,
- # it's nice to have an up to date openssl for security reasons
- # ('OpenSSL', '1.0.1p'),
-]
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['ccmake', 'cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.4.3-ictce-7.3.5.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.4.3-ictce-7.3.5.eb
deleted file mode 100644
index 4c6f13f16c5..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.4.3-ictce-7.3.5.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.4.3'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'ictce', 'version': '7.3.5'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-configopts = '-- -DCMAKE_USE_OPENSSL=1 -DCMAKE_PREFIX_PATH=$EBROOTNCURSES'
-
-dependencies = [
- ('ncurses', '5.9'),
- # OS dependency should be preferred if the os version is more recent then this version,
- # it's nice to have an up to date openssl for security reasons
- # ('OpenSSL', '1.0.1k'),
-]
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['ccmake', 'cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.5.0-CrayGNU-2015.11.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.5.0-CrayGNU-2015.11.eb
deleted file mode 100644
index 9ffba8c3ebe..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.5.0-CrayGNU-2015.11.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-# Contributed by Luca Marsella (CSCS)
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.5.0'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'CrayGNU', 'version': '2015.11'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-configopts = '-- -DCMAKE_PREFIX_PATH=$EBROOTNCURSES'
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['ccmake', 'cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.5.0-CrayGNU-2016.03.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.5.0-CrayGNU-2016.03.eb
deleted file mode 100644
index 38d4964aee3..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.5.0-CrayGNU-2016.03.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-# Contributed by Luca Marsella (CSCS)
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.5.0'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'CrayGNU', 'version': '2016.03'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-configopts = '-- -DCMAKE_PREFIX_PATH=$EBROOTNCURSES'
-
-dependencies = [('ncurses', '6.0')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['ccmake', 'cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.5.2-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.5.2-goolf-1.7.20.eb
deleted file mode 100644
index d8e716c6e8c..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CMake/CMake-3.5.2-goolf-1.7.20.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CMake'
-version = '3.5.2'
-
-homepage = 'http://www.cmake.org'
-description = """CMake, the cross-platform, open-source build system.
- CMake is a family of tools designed to build, test and package software."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = ['http://www.cmake.org/files/v%(version_major_minor)s']
-sources = [SOURCELOWER_TAR_GZ]
-
-configopts = '-- -DCMAKE_USE_OPENSSL=1 -DCMAKE_PREFIX_PATH=$EBROOTNCURSES'
-
-dependencies = [
- ('ncurses', '5.9'),
- # OS dependency should be preferred if the os version is more recent then this version,
- # it's nice to have an up to date openssl for security reasons
- # ('OpenSSL', '1.0.1s'),
-]
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['ccmake', 'cmake', 'cpack', 'ctest']],
- 'dirs': [],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/CONTRAfold/CONTRAfold-2.02-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/CONTRAfold/CONTRAfold-2.02-goolf-1.4.10.eb
deleted file mode 100644
index 0ede673dd5d..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CONTRAfold/CONTRAfold-2.02-goolf-1.4.10.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = 'CONTRAfold'
-version = '2.02'
-
-homepage = 'http://contra.stanford.edu/contrafold/'
-description = ''' CONditional TRAining for RNA Secondary Structure Prediction '''
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [homepage]
-sources = ['%%(namelower)s_v%s.tar.gz' % version.replace('.', '_')]
-
-patches = ['contrafold-gcc47.patch']
-
-start_dir = 'src'
-
-binaries = ['score_prediction', 'contrafold', 'score_directory.pl', 'roc_area.pl', 'MakeDefaults.pl']
-files_to_copy = [(binaries, 'bin'), '../doc']
-
-sanity_check_paths = {
- 'files': ['bin/score_prediction', 'bin/contrafold'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/CONTRAlign/CONTRAlign-2.01-goolf-1.4.10-proteins.eb b/easybuild/easyconfigs/__archive__/c/CONTRAlign/CONTRAlign-2.01-goolf-1.4.10-proteins.eb
deleted file mode 100644
index b276c15679f..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CONTRAlign/CONTRAlign-2.01-goolf-1.4.10-proteins.eb
+++ /dev/null
@@ -1,35 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-easyblock = 'MakeCp'
-
-name = 'CONTRAlign'
-version = '2.01'
-versionsuffix = '-proteins'
-
-homepage = 'http://contra.stanford.edu/contralign/'
-description = """CONditional TRAining for Protein Sequence Alignment"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [homepage]
-sources = ['%%(namelower)s_v%s.tar.gz' % version.replace('.', '_')]
-
-patches = ['CONTRAlign-%(version)s_gcc47.patch']
-
-start_dir = 'src'
-
-# this option determines whether the program is being compiled for protein or RNA sequence input.
-# Here we are compiling for protein input. Check docs for details
-buildopts = 'MODEL_TYPE="-DRNA=0"'
-
-files_to_copy = [(['contralign', 'score_directory.pl', 'roc_area.pl', 'MakeDefaults.pl'], 'bin'), '../doc']
-
-sanity_check_paths = {
- 'files': ['bin/contralign'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/CONTRAlign/CONTRAlign-2.01-goolf-1.4.10-rna.eb b/easybuild/easyconfigs/__archive__/c/CONTRAlign/CONTRAlign-2.01-goolf-1.4.10-rna.eb
deleted file mode 100644
index 67bfcf476e8..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CONTRAlign/CONTRAlign-2.01-goolf-1.4.10-rna.eb
+++ /dev/null
@@ -1,35 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-easyblock = 'MakeCp'
-
-name = 'CONTRAlign'
-version = '2.01'
-versionsuffix = '-rna'
-
-homepage = 'http://contra.stanford.edu/contralign/'
-description = """CONditional TRAining for Protein Sequence Alignment"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [homepage]
-sources = ['%%(namelower)s_v%s.tar.gz' % version.replace('.', '_')]
-
-patches = ['CONTRAlign-%(version)s_gcc47.patch']
-
-start_dir = 'src'
-
-# this option determines whether the program is being compiled for protein or RNA sequence input.
-# Here we are compiling for RNA input. Check docs for details
-buildopts = 'MODEL_TYPE="-DRNA=1"'
-
-files_to_copy = [(['contralign', 'score_directory.pl', 'roc_area.pl', 'MakeDefaults.pl'], 'bin'), '../doc']
-
-sanity_check_paths = {
- 'files': ['bin/contralign'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.4.0-goolf-1.4.10-ipi.eb b/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.4.0-goolf-1.4.10-ipi.eb
deleted file mode 100644
index 6646e432f18..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.4.0-goolf-1.4.10-ipi.eb
+++ /dev/null
@@ -1,41 +0,0 @@
-name = 'CP2K'
-version = '2.4.0'
-versionsuffix = '-ipi'
-
-homepage = 'http://www.cp2k.org'
-description = """CP2K is a freely available (GPL) program, written in Fortran 95,
- to perform atomistic and molecular simulations of solid state, liquid, molecular and biological systems.
- It provides a general framework for different methods such as e.g. density functional theory (DFT)
- using a mixed Gaussian and plane waves approach (GPW), and classical pair and many-body potentials. """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['https://github.com/cp2k/cp2k/releases/download/v%(version)s/']
-sources = [SOURCELOWER_TAR_BZ2]
-patches = [
- 'CP2K-%(version)s_ipi.patch',
- 'CP2K-%(version)s-fix_compile_date_lastsvn.patch',
- 'do_regtest_nocompile.patch'
-]
-checksums = [
- '9208af877b0854456ec4b550d75d96bdff087406dfed8b38f95028a1f108392d', # cp2k-2.4.0.tar.bz2
- 'bef229e946555f90b8adcba96f19adbbc86a94665059895cf9668fc7a42525d1', # CP2K-2.4.0_ipi.patch
- '02475cbe24c8d4ba27037c826adf8a534cad634c3c4e02c21d743f5284516bda', # CP2K-2.4.0-fix_compile_date_lastsvn.patch
- 'b34bf3116c2564bba037cbee89d7ad29ebecaea8b8ea01f83d1718881c6e3475', # do_regtest_nocompile.patch
-]
-
-builddependencies = [
- ('flex', '2.5.35'),
- ('Bison', '2.5')
-]
-
-dependencies = [('Libint', '1.1.4')]
-
-# don't use parallel make, results in compilation failure
-# because Fortran module files aren't created before they are needed
-parallel = 1
-
-# about 100 tests fail
-ignore_regtest_fails = True
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.4.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.4.0-goolf-1.4.10.eb
deleted file mode 100644
index df7589da9a1..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.4.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-name = 'CP2K'
-version = '2.4.0'
-
-homepage = 'http://www.cp2k.org'
-description = """CP2K is a freely available (GPL) program, written in Fortran 95,
- to perform atomistic and molecular simulations of solid state, liquid, molecular and biological systems.
- It provides a general framework for different methods such as e.g. density functional theory (DFT)
- using a mixed Gaussian and plane waves approach (GPW), and classical pair and many-body potentials. """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['https://github.com/cp2k/cp2k/releases/download/v%(version)s/']
-sources = [SOURCELOWER_TAR_BZ2]
-patches = [
- 'CP2K-%(version)s-fix_compile_date_lastsvn.patch',
- 'do_regtest_nocompile.patch'
-]
-checksums = [
- '9208af877b0854456ec4b550d75d96bdff087406dfed8b38f95028a1f108392d', # cp2k-2.4.0.tar.bz2
- '02475cbe24c8d4ba27037c826adf8a534cad634c3c4e02c21d743f5284516bda', # CP2K-2.4.0-fix_compile_date_lastsvn.patch
- 'b34bf3116c2564bba037cbee89d7ad29ebecaea8b8ea01f83d1718881c6e3475', # do_regtest_nocompile.patch
-]
-
-builddependencies = [
- ('flex', '2.5.35'),
- ('Bison', '2.5')
-]
-
-dependencies = [('Libint', '1.1.4')]
-
-# don't use parallel make, results in compilation failure
-# because Fortran module files aren't created before they are needed
-parallel = 1
-
-# about 100 tests fail
-ignore_regtest_fails = True
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.4.0-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.4.0-ictce-5.5.0.eb
deleted file mode 100644
index 52e84489c18..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.4.0-ictce-5.5.0.eb
+++ /dev/null
@@ -1,44 +0,0 @@
-name = 'CP2K'
-version = '2.4.0'
-
-homepage = 'http://cp2k.berlios.de/index.html'
-description = """CP2K is a freely available (GPL) program, written in Fortran 95, to perform atomistic and molecular
-simulations of solid state, liquid, molecular and biological systems. It provides a general framework for different
-methods such as e.g. density functional theory (DFT) using a mixed Gaussian and plane waves approach (GPW), and
-classical pair and many-body potentials. """
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://github.com/cp2k/cp2k/releases/download/v%(version)s/']
-sources = [SOURCELOWER_TAR_BZ2]
-patches = [
- 'do_regtest_nocompile.patch',
- 'CP2K-20131211-ifort-compiler-bug-fix.patch',
- 'CP2K-2.4.0-fix_compile_date_lastsvn.patch',
-]
-checksums = [
- '9208af877b0854456ec4b550d75d96bdff087406dfed8b38f95028a1f108392d', # cp2k-2.4.0.tar.bz2
- 'b34bf3116c2564bba037cbee89d7ad29ebecaea8b8ea01f83d1718881c6e3475', # do_regtest_nocompile.patch
- 'decf3208e9ae96e2f9d22d0c964608ac40540ddfb3e381175cb3be6ce94d2882', # CP2K-20131211-ifort-compiler-bug-fix.patch
- '02475cbe24c8d4ba27037c826adf8a534cad634c3c4e02c21d743f5284516bda', # CP2K-2.4.0-fix_compile_date_lastsvn.patch
-]
-
-dependencies = [
- ('Libint', '1.1.4'),
- ('libxc', '2.0.1'),
-]
-
-builddependencies = [
- ('flex', '2.5.37'),
- ('Bison', '2.7'),
-]
-
-# don't use parallel make, results in compilation failure
-# because Fortran module files aren't created before they are needed
-parallel = 1
-
-# regression test reports failures
-ignore_regtest_fails = True
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.5.1-intel-2014b.eb b/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.5.1-intel-2014b.eb
deleted file mode 100644
index 9288b092499..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.5.1-intel-2014b.eb
+++ /dev/null
@@ -1,42 +0,0 @@
-name = 'CP2K'
-version = '2.5.1'
-
-homepage = 'http://www.cp2k.org/'
-description = """CP2K is a freely available (GPL) program, written in Fortran 95, to perform atomistic and molecular
- simulations of solid state, liquid, molecular and biological systems. It provides a general framework for different
- methods such as e.g. density functional theory (DFT) using a mixed Gaussian and plane waves approach (GPW), and
- classical pair and many-body potentials. """
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://github.com/cp2k/cp2k/releases/download/v%(version)s/']
-sources = [SOURCELOWER_TAR_BZ2]
-patches = [
- 'CP2K-20131211-ifort-compiler-bug-fix.patch',
- 'CP2K-2.4.0-fix_compile_date_lastsvn.patch',
-]
-checksums = [
- '0e6f12834176feb94b7266b328e61e9c60a2d4c2ea6c5e7d853a648da29ec5b0', # cp2k-2.5.1.tar.bz2
- 'decf3208e9ae96e2f9d22d0c964608ac40540ddfb3e381175cb3be6ce94d2882', # CP2K-20131211-ifort-compiler-bug-fix.patch
- '02475cbe24c8d4ba27037c826adf8a534cad634c3c4e02c21d743f5284516bda', # CP2K-2.4.0-fix_compile_date_lastsvn.patch
-]
-
-dependencies = [
- ('Libint', '1.1.4'),
- ('libxc', '2.2.0'),
-]
-
-builddependencies = [
- ('flex', '2.5.39'),
- ('Bison', '3.0.2'),
-]
-
-# don't use parallel make, results in compilation failure
-# because Fortran module files aren't created before they are needed
-parallel = 1
-
-# regression test reports failures
-ignore_regtest_fails = True
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.6.0-CrayGNU-2015.06.eb b/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.6.0-CrayGNU-2015.06.eb
deleted file mode 100644
index 04b5e7f5991..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.6.0-CrayGNU-2015.06.eb
+++ /dev/null
@@ -1,43 +0,0 @@
-name = 'CP2K'
-version = '2.6.0'
-
-homepage = 'http://www.cp2k.org/'
-description = """CP2K is a freely available (GPL) program, written in Fortran 95, to perform atomistic and molecular
- simulations of solid state, liquid, molecular and biological systems. It provides a general framework for different
- methods such as e.g. density functional theory (DFT) using a mixed Gaussian and plane waves approach (GPW), and
- classical pair and many-body potentials. """
-
-toolchain = {'name': 'CrayGNU', 'version': '2015.06'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://github.com/cp2k/cp2k/releases/download/v%(version)s/']
-sources = [SOURCELOWER_TAR_BZ2]
-patches = [
- 'CP2K-2.6.0-ifort-compiler-bug-fix.patch',
- 'CP2K-2.4.0-fix_compile_date_lastsvn.patch',
-]
-checksums = [
- '7d224a92eb8c767c7dcfde54a1b22e2c83b7cabb3ce00633e94bbd4b0d06a784', # cp2k-2.6.0.tar.bz2
- 'b6d4e2ef29de13e93edd18b51d4bca530ad2fd405f730de3b07dafc83853e7f4', # CP2K-2.6.0-ifort-compiler-bug-fix.patch
- '02475cbe24c8d4ba27037c826adf8a534cad634c3c4e02c21d743f5284516bda', # CP2K-2.4.0-fix_compile_date_lastsvn.patch
-]
-
-dependencies = [
- ('Libint', '1.1.4'),
- ('libxc', '2.2.1'),
-]
-
-builddependencies = [
- ('fftw/3.3.4.3', EXTERNAL_MODULE),
- ('flex', '2.5.39'),
- ('Bison', '3.0.2'),
-]
-
-# don't use parallel make, results in compilation failure
-# because Fortran module files aren't created before they are needed
-parallel = 1
-
-# regression test reports failures
-ignore_regtest_fails = True
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.6.0-CrayGNU-2015.11.eb b/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.6.0-CrayGNU-2015.11.eb
deleted file mode 100644
index 1f6cac7b072..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.6.0-CrayGNU-2015.11.eb
+++ /dev/null
@@ -1,43 +0,0 @@
-name = 'CP2K'
-version = '2.6.0'
-
-homepage = 'http://www.cp2k.org/'
-description = """CP2K is a freely available (GPL) program, written in Fortran 95, to perform atomistic and molecular
- simulations of solid state, liquid, molecular and biological systems. It provides a general framework for different
- methods such as e.g. density functional theory (DFT) using a mixed Gaussian and plane waves approach (GPW), and
- classical pair and many-body potentials. """
-
-toolchain = {'name': 'CrayGNU', 'version': '2015.11'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://github.com/cp2k/cp2k/releases/download/v%(version)s/']
-sources = [SOURCELOWER_TAR_BZ2]
-patches = [
- 'CP2K-2.6.0-ifort-compiler-bug-fix.patch',
- 'CP2K-2.4.0-fix_compile_date_lastsvn.patch',
-]
-checksums = [
- '7d224a92eb8c767c7dcfde54a1b22e2c83b7cabb3ce00633e94bbd4b0d06a784', # cp2k-2.6.0.tar.bz2
- 'b6d4e2ef29de13e93edd18b51d4bca530ad2fd405f730de3b07dafc83853e7f4', # CP2K-2.6.0-ifort-compiler-bug-fix.patch
- '02475cbe24c8d4ba27037c826adf8a534cad634c3c4e02c21d743f5284516bda', # CP2K-2.4.0-fix_compile_date_lastsvn.patch
-]
-
-dependencies = [
- ('fftw/3.3.4.3', EXTERNAL_MODULE),
- ('Libint', '1.1.4'),
- ('libxc', '2.2.1'),
-]
-
-builddependencies = [
- ('flex', '2.5.39'),
- ('Bison', '3.0.2'),
-]
-
-# don't use parallel make, results in compilation failure
-# because Fortran module files aren't created before they are needed
-parallel = 1
-
-# regression test reports failures
-ignore_regtest_fails = True
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.6.0-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.6.0-intel-2015a.eb
deleted file mode 100644
index b59f8a1203f..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.6.0-intel-2015a.eb
+++ /dev/null
@@ -1,42 +0,0 @@
-name = 'CP2K'
-version = '2.6.0'
-
-homepage = 'http://www.cp2k.org/'
-description = """CP2K is a freely available (GPL) program, written in Fortran 95, to perform atomistic and molecular
- simulations of solid state, liquid, molecular and biological systems. It provides a general framework for different
- methods such as e.g. density functional theory (DFT) using a mixed Gaussian and plane waves approach (GPW), and
- classical pair and many-body potentials. """
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://github.com/cp2k/cp2k/releases/download/v%(version)s/']
-sources = [SOURCELOWER_TAR_BZ2]
-patches = [
- 'CP2K-2.6.0-ifort-compiler-bug-fix.patch',
- 'CP2K-2.4.0-fix_compile_date_lastsvn.patch',
-]
-checksums = [
- '7d224a92eb8c767c7dcfde54a1b22e2c83b7cabb3ce00633e94bbd4b0d06a784', # cp2k-2.6.0.tar.bz2
- 'b6d4e2ef29de13e93edd18b51d4bca530ad2fd405f730de3b07dafc83853e7f4', # CP2K-2.6.0-ifort-compiler-bug-fix.patch
- '02475cbe24c8d4ba27037c826adf8a534cad634c3c4e02c21d743f5284516bda', # CP2K-2.4.0-fix_compile_date_lastsvn.patch
-]
-
-dependencies = [
- ('Libint', '1.1.4'),
- ('libxc', '2.2.1'),
-]
-
-builddependencies = [
- ('flex', '2.5.39'),
- ('Bison', '3.0.2'),
-]
-
-# don't use parallel make, results in compilation failure
-# because Fortran module files aren't created before they are needed
-parallel = 1
-
-# regression test reports failures
-ignore_regtest_fails = True
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.6.1-foss-2015b.eb b/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.6.1-foss-2015b.eb
deleted file mode 100644
index e70ec91d6da..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.6.1-foss-2015b.eb
+++ /dev/null
@@ -1,42 +0,0 @@
-name = 'CP2K'
-version = '2.6.1'
-
-homepage = 'http://www.cp2k.org/'
-description = """CP2K is a freely available (GPL) program, written in Fortran 95, to perform atomistic and molecular
- simulations of solid state, liquid, molecular and biological systems. It provides a general framework for different
- methods such as e.g. density functional theory (DFT) using a mixed Gaussian and plane waves approach (GPW), and
- classical pair and many-body potentials. """
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://github.com/cp2k/cp2k/releases/download/v%(version)s/']
-sources = [SOURCELOWER_TAR_BZ2]
-patches = [
- 'CP2K-2.6.0-ifort-compiler-bug-fix.patch',
- 'CP2K-2.4.0-fix_compile_date_lastsvn.patch',
-]
-checksums = [
- '26bef0718f84efb5197bb4d13211d2b7ad2103eced413dd2652d9b11a97868f5', # cp2k-2.6.1.tar.bz2
- 'b6d4e2ef29de13e93edd18b51d4bca530ad2fd405f730de3b07dafc83853e7f4', # CP2K-2.6.0-ifort-compiler-bug-fix.patch
- '02475cbe24c8d4ba27037c826adf8a534cad634c3c4e02c21d743f5284516bda', # CP2K-2.4.0-fix_compile_date_lastsvn.patch
-]
-
-dependencies = [
- ('Libint', '1.1.4'),
- ('libxc', '2.2.2'),
-]
-
-builddependencies = [
- ('flex', '2.5.39', '', ('GNU', '4.9.3-2.25')),
- ('Bison', '3.0.4', '', ('GNU', '4.9.3-2.25')),
-]
-
-# don't use parallel make, results in compilation failure
-# because Fortran module files aren't created before they are needed
-parallel = 1
-
-# regression test reports failures
-ignore_regtest_fails = True
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.6.1-intel-2015b.eb b/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.6.1-intel-2015b.eb
deleted file mode 100644
index a22633aeb9c..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-2.6.1-intel-2015b.eb
+++ /dev/null
@@ -1,42 +0,0 @@
-name = 'CP2K'
-version = '2.6.1'
-
-homepage = 'http://www.cp2k.org/'
-description = """CP2K is a freely available (GPL) program, written in Fortran 95, to perform atomistic and molecular
- simulations of solid state, liquid, molecular and biological systems. It provides a general framework for different
- methods such as e.g. density functional theory (DFT) using a mixed Gaussian and plane waves approach (GPW), and
- classical pair and many-body potentials. """
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://github.com/cp2k/cp2k/releases/download/v%(version)s/']
-sources = [SOURCELOWER_TAR_BZ2]
-patches = [
- 'CP2K-2.6.0-ifort-compiler-bug-fix.patch',
- 'CP2K-2.4.0-fix_compile_date_lastsvn.patch',
-]
-checksums = [
- '26bef0718f84efb5197bb4d13211d2b7ad2103eced413dd2652d9b11a97868f5', # cp2k-2.6.1.tar.bz2
- 'b6d4e2ef29de13e93edd18b51d4bca530ad2fd405f730de3b07dafc83853e7f4', # CP2K-2.6.0-ifort-compiler-bug-fix.patch
- '02475cbe24c8d4ba27037c826adf8a534cad634c3c4e02c21d743f5284516bda', # CP2K-2.4.0-fix_compile_date_lastsvn.patch
-]
-
-dependencies = [
- ('Libint', '1.1.4'),
- ('libxc', '2.2.2'),
-]
-
-builddependencies = [
- ('flex', '2.5.39', '', ('GNU', '4.9.3-2.25')),
- ('Bison', '3.0.4', '', ('GNU', '4.9.3-2.25')),
-]
-
-# don't use parallel make, results in compilation failure
-# because Fortran module files aren't created before they are needed
-parallel = 1
-
-# regression test reports failures
-ignore_regtest_fails = True
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20111205-goolf-1.4.10-libsmm.eb b/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20111205-goolf-1.4.10-libsmm.eb
deleted file mode 100644
index 70f7866473f..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20111205-goolf-1.4.10-libsmm.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-name = 'CP2K'
-version = '20111205'
-versionsuffix = '-libsmm'
-
-homepage = 'http://www.cp2k.org'
-description = """CP2K is a freely available (GPL) program, written in Fortran 95,
- to perform atomistic and molecular simulations of solid state, liquid, molecular and biological systems.
- It provides a general framework for different methods such as e.g. density functional theory (DFT)
- using a mixed Gaussian and plane waves approach (GPW), and classical pair and many-body potentials. """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = [SOURCE_TAR_GZ]
-
-patches = [
- 'fix_compile_date_lastcvs.patch',
- 'do_regtest_nocompile.patch'
-]
-
-builddependencies = [
- ('flex', '2.5.35'),
- ('Bison', '2.5')
-]
-
-dependencies = [
- ('Libint', '1.1.4'),
- ('libsmm', '20111205')
-]
-
-# don't use parallel make, results in compilation failure
-# because Fortran module files aren't created before they are needed
-parallel = 1
-
-# about 100 tests fail
-ignore_regtest_fails = True
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20111205-goolf-1.4.10-psmp.eb b/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20111205-goolf-1.4.10-psmp.eb
deleted file mode 100644
index a4e80549b56..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20111205-goolf-1.4.10-psmp.eb
+++ /dev/null
@@ -1,42 +0,0 @@
-name = 'CP2K'
-version = '20111205'
-versionsuffix = '-psmp'
-
-homepage = 'http://www.cp2k.org'
-description = """CP2K is a freely available (GPL) program, written in Fortran 95,
- to perform atomistic and molecular simulations of solid state, liquid, molecular and biological systems.
- It provides a general framework for different methods such as e.g. density functional theory (DFT)
- using a mixed Gaussian and plane waves approach (GPW), and classical pair and many-body potentials. """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = [SOURCE_TAR_GZ]
-
-patches = [
- 'fix_compile_date_lastcvs.patch',
- 'do_regtest_nocompile.patch',
- 'fix_psmp_build.patch'
-]
-
-builddependencies = [
- ('flex', '2.5.35'),
- ('Bison', '2.5')
-]
-
-dependencies = [('Libint', '1.1.4')]
-
-# don't use parallel make, results in compilation failure
-# because Fortran module files aren't created before they are needed
-parallel = 1
-
-# SMP build
-type = 'psmp'
-
-# only run one CP2K instance at a time during regtesting
-maxtasks = 1
-
-# need to set OMP_NUM_THREADS to 1, to avoid failed tests during regression test
-# without this, 32 tests (out of 2196) fail
-omp_num_threads = '1'
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20111205-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20111205-goolf-1.4.10.eb
deleted file mode 100644
index 10f8d7440a7..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20111205-goolf-1.4.10.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-name = 'CP2K'
-version = '20111205'
-
-homepage = 'http://www.cp2k.org'
-description = """CP2K is a freely available (GPL) program, written in Fortran 95,
- to perform atomistic and molecular simulations of solid state, liquid, molecular and biological systems.
- It provides a general framework for different methods such as e.g. density functional theory (DFT)
- using a mixed Gaussian and plane waves approach (GPW), and classical pair and many-body potentials. """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = [SOURCE_TAR_GZ]
-
-patches = [
- 'fix_compile_date_lastcvs.patch',
- 'do_regtest_nocompile.patch'
-]
-
-builddependencies = [
- ('flex', '2.5.35'),
- ('Bison', '2.5')
-]
-
-dependencies = [('Libint', '1.1.4')]
-
-# don't use parallel make, results in compilation failure
-# because Fortran module files aren't created before they are needed
-parallel = 1
-
-# about 100 tests fail
-ignore_regtest_fails = True
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20111205-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20111205-ictce-5.3.0.eb
deleted file mode 100644
index 3e863ab079a..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20111205-ictce-5.3.0.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-name = 'CP2K'
-version = '20111205'
-
-homepage = 'http://www.cp2k.org'
-description = """CP2K is a freely available (GPL) program, written in Fortran 95,
- to perform atomistic and molecular simulations of solid state, liquid, molecular and biological systems.
- It provides a general framework for different methods such as e.g. density functional theory (DFT)
- using a mixed Gaussian and plane waves approach (GPW), and classical pair and many-body potentials. """
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sources = [SOURCE_TAR_GZ]
-
-patches = [
- 'fix_compile_date_lastcvs.patch',
- 'do_regtest_nocompile.patch',
-]
-
-builddependencies = [
- ('flex', '2.5.35'),
- ('Bison', '2.5'),
-]
-
-dependencies = [('Libint', '1.1.4')]
-
-# don't use parallel make, results in compilation failure
-# because Fortran module files aren't created before they are needed
-parallel = 1
-
-# regression test reports failures (120/2196 tests fail with segfault)
-ignore_regtest_fails = True
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20111205-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20111205-ictce-5.5.0.eb
deleted file mode 100644
index 57f859f95c9..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20111205-ictce-5.5.0.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-name = 'CP2K'
-version = '20111205'
-
-homepage = 'http://www.cp2k.org'
-description = """CP2K is a freely available (GPL) program, written in Fortran 95,
- to perform atomistic and molecular simulations of solid state, liquid, molecular and biological systems.
- It provides a general framework for different methods such as e.g. density functional theory (DFT)
- using a mixed Gaussian and plane waves approach (GPW), and classical pair and many-body potentials. """
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-sources = [SOURCE_TAR_GZ]
-
-patches = [
- 'fix_compile_date_lastcvs.patch',
- 'do_regtest_nocompile.patch',
-]
-
-builddependencies = [
- ('flex', '2.5.35'),
- ('Bison', '2.5'),
-]
-
-dependencies = [('Libint', '1.1.4')]
-
-# don't use parallel make, results in compilation failure
-# because Fortran module files aren't created before they are needed
-parallel = 1
-
-# regression test reports failures (120/2196 tests fail with segfault)
-ignore_regtest_fails = True
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20130228-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20130228-intel-2015a.eb
deleted file mode 100644
index fd8d96a13d0..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20130228-intel-2015a.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-name = 'CP2K'
-version = '20130228'
-
-homepage = 'http://cp2k.berlios.de/index.html'
-description = """CP2K is a freely available (GPL) program, written in Fortran 95, to perform atomistic and molecular
-simulations of solid state, liquid, molecular and biological systems. It provides a general framework for different
-methods such as e.g. density functional theory (DFT) using a mixed Gaussian and plane waves approach (GPW), and
-classical pair and many-body potentials. """
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'pic': True}
-
-sources = ['CP2K-%(version)s.tar.gz']
-
-patches = [
- 'CP2K-2013_fix_compile_date_lastcvs.patch',
- 'do_regtest_nocompile.patch',
-]
-
-dependencies = [
- ('FFTW', '3.3.3'),
- ('Libint', '1.1.4'),
-]
-
-builddependencies = [
- ('flex', '2.5.37'),
- ('Bison', '2.7'),
-]
-
-# don't use parallel make, results in compilation failure
-# because Fortran module files aren't created before they are needed
-parallel = 1
-
-ignore_regtest_fails = True
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20131211-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20131211-ictce-5.5.0.eb
deleted file mode 100644
index 1d06d1dfc92..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20131211-ictce-5.5.0.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-name = 'CP2K'
-version = '20131211'
-
-homepage = 'http://cp2k.berlios.de/index.html'
-description = """CP2K is a freely available (GPL) program, written in Fortran 95, to perform atomistic and molecular
-simulations of solid state, liquid, molecular and biological systems. It provides a general framework for different
-methods such as e.g. density functional theory (DFT) using a mixed Gaussian and plane waves approach (GPW), and
-classical pair and many-body potentials. """
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'pic': True}
-
-# Uses a svn checkout from 20131211 (r13439)
-sources = [SOURCE_TAR_BZ2]
-
-patches = [
- 'CP2K-20131211-ifort-compiler-bug-fix.patch',
- 'CP2K-2.4.0-fix_compile_date_lastsvn.patch',
-]
-
-dependencies = [
- ('Libint', '1.1.4'),
- ('libxc', '2.0.1'),
-]
-
-builddependencies = [
- ('flex', '2.5.37'),
- ('Bison', '2.7'),
-]
-
-# don't use parallel make, results in compilation failure
-# because Fortran module files aren't created before they are needed
-parallel = 1
-
-# regression test reports failures: 13/2450 segfault
-ignore_regtest_fails = True
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20131211-intel-2014b.eb b/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20131211-intel-2014b.eb
deleted file mode 100644
index 613ab676794..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20131211-intel-2014b.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-name = 'CP2K'
-version = '20131211'
-
-homepage = 'http://cp2k.berlios.de/index.html'
-description = """CP2K is a freely available (GPL) program, written in Fortran 95, to perform atomistic and molecular
-simulations of solid state, liquid, molecular and biological systems. It provides a general framework for different
-methods such as e.g. density functional theory (DFT) using a mixed Gaussian and plane waves approach (GPW), and
-classical pair and many-body potentials. """
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-toolchainopts = {'pic': True}
-
-# Uses a svn checkout from 20131211 (r13439)
-sources = [SOURCE_TAR_BZ2]
-
-patches = [
- 'CP2K-20131211-ifort-compiler-bug-fix.patch',
- 'CP2K-2.4.0-fix_compile_date_lastsvn.patch',
-]
-
-dependencies = [
- ('Libint', '1.1.4'),
- ('libxc', '2.0.1'),
-]
-
-builddependencies = [
- ('flex', '2.5.37'),
- ('Bison', '2.7'),
-]
-
-# don't use parallel make, results in compilation failure
-# because Fortran module files aren't created before they are needed
-parallel = 1
-
-# regression test reports failures: 13/2450 segfault
-ignore_regtest_fails = True
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20150904-intel-2015a-PLUMED-2.1.3.eb b/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20150904-intel-2015a-PLUMED-2.1.3.eb
deleted file mode 100644
index 1e3ba56c1e0..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-20150904-intel-2015a-PLUMED-2.1.3.eb
+++ /dev/null
@@ -1,42 +0,0 @@
-name = 'CP2K'
-version = '20150904'
-versionsuffix = '-PLUMED-2.1.3'
-
-homepage = 'http://www.cp2k.org/'
-description = """CP2K is a freely available (GPL) program, written in Fortran 95, to perform atomistic and molecular
- simulations of solid state, liquid, molecular and biological systems. It provides a general framework for different
- methods such as e.g. density functional theory (DFT) using a mixed Gaussian and plane waves approach (GPW), and
- classical pair and many-body potentials. """
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'pic': True}
-
-# we use the git mirror: this is r15816 or 68331ef35b7
-sources = ['68331ef35b7.zip']
-source_urls = ['https://github.com/cp2k/cp2k/archive/']
-
-patches = [
- 'CP2K-%(version)s-ifort-compiler-bug-fix.patch',
- 'CP2K-2.4.0-fix_compile_date_lastsvn.patch',
-]
-
-# use short directory names to avoid 'argument list is too long' in build process
-unpack_options = ' && mv cp2k-68331* cp2k'
-
-dependencies = [
- ('Libint', '1.1.4'),
- ('libxc', '2.2.1'),
- ('PLUMED', '2.1.3'),
-]
-
-builddependencies = [
- ('flex', '2.5.39'),
- ('Bison', '3.0.2'),
-]
-
-plumed = True
-
-# regression test reports failures
-ignore_regtest_fails = True
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-3.0-CrayGNU-2015.11-cuda-7.0.eb b/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-3.0-CrayGNU-2015.11-cuda-7.0.eb
deleted file mode 100644
index 63d5651a4d6..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-3.0-CrayGNU-2015.11-cuda-7.0.eb
+++ /dev/null
@@ -1,51 +0,0 @@
-# contributed by Luca Marsella (CSCS)
-name = 'CP2K'
-version = "3.0"
-versionsuffix = '-cuda-7.0'
-
-homepage = 'http://www.cp2k.org/'
-description = """CP2K is a freely available (GPL) program, written in Fortran 95, to perform atomistic and molecular
- simulations of solid state, liquid, molecular and biological systems. It provides a general framework for different
- methods such as e.g. density functional theory (DFT) using a mixed Gaussian and plane waves approach (GPW), and
- classical pair and many-body potentials. """
-
-toolchain = {'name': 'CrayGNU', 'version': '2015.11'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://github.com/cp2k/cp2k/releases/download/v%(version)s.0/']
-sources = [SOURCELOWER_TAR_BZ2]
-patches = [
- 'CP2K-2.6.0-ifort-compiler-bug-fix.patch',
- 'CP2K-2.4.0-fix_compile_date_lastsvn.patch',
-]
-checksums = [
- '1acfacef643141045b7cbade7006f9b7538476d861eeecd9658c9e468dc61151', # cp2k-3.0.tar.bz2
- 'b6d4e2ef29de13e93edd18b51d4bca530ad2fd405f730de3b07dafc83853e7f4', # CP2K-2.6.0-ifort-compiler-bug-fix.patch
- '02475cbe24c8d4ba27037c826adf8a534cad634c3c4e02c21d743f5284516bda', # CP2K-2.4.0-fix_compile_date_lastsvn.patch
-]
-
-dependencies = [
- ('Libint', '1.1.4'),
- ('libxc', '2.2.2'),
-]
-
-builddependencies = [
- ('cudatoolkit/7.0.28-1.0502.10742.5.1', EXTERNAL_MODULE),
- ('fftw/3.3.4.3', EXTERNAL_MODULE),
- ('flex', '2.5.39'),
- ('Bison', '3.0.2'),
-]
-
-# don't use parallel make, results in compilation failure
-# because Fortran module files aren't created before they are needed
-parallel = 1
-
-# regression test
-runtest = False
-# regression test reports failures
-# ignore_regtest_fails = True
-
-# build type
-type = 'psmp'
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-3.0-CrayGNU-2015.11.eb b/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-3.0-CrayGNU-2015.11.eb
deleted file mode 100644
index 6a4ac490c40..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CP2K/CP2K-3.0-CrayGNU-2015.11.eb
+++ /dev/null
@@ -1,49 +0,0 @@
-# contributed by Luca Marsella (CSCS)
-name = 'CP2K'
-version = "3.0"
-
-homepage = 'http://www.cp2k.org/'
-description = """CP2K is a freely available (GPL) program, written in Fortran 95, to perform atomistic and molecular
- simulations of solid state, liquid, molecular and biological systems. It provides a general framework for different
- methods such as e.g. density functional theory (DFT) using a mixed Gaussian and plane waves approach (GPW), and
- classical pair and many-body potentials. """
-
-toolchain = {'name': 'CrayGNU', 'version': '2015.11'}
-toolchainopts = {'pic': True}
-
-source_urls = ['https://github.com/cp2k/cp2k/releases/download/v%(version)s.0/']
-sources = [SOURCELOWER_TAR_BZ2]
-patches = [
- 'CP2K-2.6.0-ifort-compiler-bug-fix.patch',
- 'CP2K-2.4.0-fix_compile_date_lastsvn.patch',
-]
-checksums = [
- '1acfacef643141045b7cbade7006f9b7538476d861eeecd9658c9e468dc61151', # cp2k-3.0.tar.bz2
- 'b6d4e2ef29de13e93edd18b51d4bca530ad2fd405f730de3b07dafc83853e7f4', # CP2K-2.6.0-ifort-compiler-bug-fix.patch
- '02475cbe24c8d4ba27037c826adf8a534cad634c3c4e02c21d743f5284516bda', # CP2K-2.4.0-fix_compile_date_lastsvn.patch
-]
-
-dependencies = [
- ('Libint', '1.1.4'),
- ('libxc', '2.2.2'),
-]
-
-builddependencies = [
- ('fftw/3.3.4.3', EXTERNAL_MODULE),
- ('flex', '2.5.39'),
- ('Bison', '3.0.2'),
-]
-
-# don't use parallel make, results in compilation failure
-# because Fortran module files aren't created before they are needed
-parallel = 1
-
-# regression test
-runtest = False
-# regression test reports failures
-# ignore_regtest_fails = True
-
-# build type
-type = 'psmp'
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/CPLEX/CPLEX-12.4.eb b/easybuild/easyconfigs/__archive__/c/CPLEX/CPLEX-12.4.eb
deleted file mode 100644
index 55ee7e26cc5..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CPLEX/CPLEX-12.4.eb
+++ /dev/null
@@ -1,17 +0,0 @@
-name = 'CPLEX'
-version = '12.4'
-
-homepage = 'http://www-01.ibm.com/software/commerce/optimization/cplex-optimizer/'
-description = """IBM ILOG CPLEX Optimizer's mathematical programming technology enables
- analytical decision support for improving efficiency,
- reducing costs, and increasing profitability."""
-
-toolchain = SYSTEM
-
-# the Academic Initiative version (as used in this file) can be downloaded as described on
-# https://www.ibm.com/developerworks/community/blogs/jfp/entry/cplex_studio_in_ibm_academic_initiative?lang=en
-# a restricted "Community edition" version can be found on
-# https://www-01.ibm.com/software/websphere/products/optimization/cplex-studio-community-edition/
-sources = ['cplex_studio%s.linux-x86-64.bin' % ''.join(version.split('.'))]
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/c/CPLEX/CPLEX-12.6.3-foss-2015b.eb b/easybuild/easyconfigs/__archive__/c/CPLEX/CPLEX-12.6.3-foss-2015b.eb
deleted file mode 100644
index fc4d0275894..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CPLEX/CPLEX-12.6.3-foss-2015b.eb
+++ /dev/null
@@ -1,21 +0,0 @@
-name = 'CPLEX'
-version = '12.6.3'
-
-homepage = 'http://www-01.ibm.com/software/commerce/optimization/cplex-optimizer/'
-description = """IBM ILOG CPLEX Optimizer's mathematical programming technology enables
- analytical decision support for improving efficiency,
- reducing costs, and increasing profitability."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-# the Academic Initiative version (as used in this file) can be downloaded as described on
-# https://www.ibm.com/developerworks/community/blogs/jfp/entry/cplex_studio_in_ibm_academic_initiative?lang=en
-# a restricted "Community edition" version can be found on
-# https://www-01.ibm.com/software/websphere/products/optimization/cplex-studio-community-edition/
-sources = ['cplex_studio%s.linux-x86-64.bin' % ''.join(version.split('.'))]
-
-dependencies = [
- ('Java', '1.8.0_66', '', True),
-]
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/c/CRF++/CRF++-0.57-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/CRF++/CRF++-0.57-goolf-1.4.10.eb
deleted file mode 100644
index 236c1dd6af1..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CRF++/CRF++-0.57-goolf-1.4.10.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CRF++'
-version = '0.57'
-
-homepage = 'https://taku910.github.io/crfpp/'
-description = """CRF++ is a simple, customizable, and open source implementation of
- Conditional Random Fields (CRFs) for segmenting/labeling sequential data. CRF++ is
- designed for generic purpose and will be applied to a variety of NLP tasks, such as
- Named Entity Recognition, Information Extraction and Text Chunking. """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True, 'opt': True}
-
-# manual download from https://taku910.github.io/crfpp/#download (via Google Drive)
-sources = [SOURCE_TAR_GZ]
-checksums = ['efec88b501fecb0a72dd94caffb56294']
-
-configopts = '--with-pic'
-buildopts = 'CXXFLAGS="$CXXFLAGS -Wall -finline"'
-
-sanity_check_paths = {
- 'files': ["bin/crf_learn", "bin/crf_test"],
- 'dirs': []
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/c/CRF++/CRF++-0.57-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/c/CRF++/CRF++-0.57-ictce-5.3.0.eb
deleted file mode 100644
index 241b4be6cac..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CRF++/CRF++-0.57-ictce-5.3.0.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CRF++'
-version = '0.57'
-
-homepage = 'https://taku910.github.io/crfpp/'
-description = """CRF++ is a simple, customizable, and open source implementation of
- Conditional Random Fields (CRFs) for segmenting/labeling sequential data. CRF++ is
- designed for generic purpose and will be applied to a variety of NLP tasks, such as
- Named Entity Recognition, Information Extraction and Text Chunking. """
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'optarch': True, 'pic': True, 'opt': True}
-
-# manual download from https://taku910.github.io/crfpp/#download (via Google Drive)
-sources = [SOURCE_TAR_GZ]
-checksums = ['efec88b501fecb0a72dd94caffb56294']
-
-configopts = '--with-pic'
-buildopts = 'CXXFLAGS="$CXXFLAGS -Wall -finline"'
-
-sanity_check_paths = {
- 'files': ["bin/crf_learn", "bin/crf_test"],
- 'dirs': []
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/c/CRF++/CRF++-0.58-intel-2015b.eb b/easybuild/easyconfigs/__archive__/c/CRF++/CRF++-0.58-intel-2015b.eb
deleted file mode 100644
index 45f9620034c..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CRF++/CRF++-0.58-intel-2015b.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CRF++'
-version = '0.58'
-
-homepage = 'https://taku910.github.io/crfpp/'
-description = """CRF++ is a simple, customizable, and open source implementation of
- Conditional Random Fields (CRFs) for segmenting/labeling sequential data. CRF++ is
- designed for generic purpose and will be applied to a variety of NLP tasks, such as
- Named Entity Recognition, Information Extraction and Text Chunking. """
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'optarch': True, 'pic': True, 'opt': True}
-
-# manual download from https://taku910.github.io/crfpp/#download (via Google Drive)
-sources = [SOURCE_TAR_GZ]
-checksums = ['c8ffd456ab1a6815ba916c1083194a99']
-
-configopts = '--with-pic'
-buildopts = 'CXXFLAGS="$CXXFLAGS -Wall -finline"'
-
-sanity_check_paths = {
- 'files': ["bin/crf_learn", "bin/crf_test"],
- 'dirs': []
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/c/CRPropa/CRPropa-2.0.3-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/c/CRPropa/CRPropa-2.0.3-ictce-5.5.0.eb
deleted file mode 100644
index 7d9e8352918..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CRPropa/CRPropa-2.0.3-ictce-5.5.0.eb
+++ /dev/null
@@ -1,39 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CRPropa'
-version = '2.0.3'
-
-homepage = 'https://crpropa.desy.de'
-description = """CRPropa is a publicly available code to study the propagation of ultra high energy nuclei up to iron
- on their voyage through an extra galactic environment."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = ['https://github.com/CRPropa/CRPropa2/archive/']
-sources = ['v%(version)s.tar.gz']
-
-patches = ['CRPropa-%(version)s_no-docs.patch']
-
-dependencies = [
- ('CLHEP', '2.1.3.1'),
- ('CFITSIO', '3.350'),
- ('ROOT', 'v5.34.13'),
- ('FFTW', '3.3.3'),
-]
-builddependencies = [('Doxygen', '1.8.5')]
-
-configopts = '--with-clhep-path=$EBROOTCLHEP/bin'
-configopts += '--with-cfitsio-include=$EBROOTCFITSIO/include --with-cfitsio-library=$EBROOTCFITSIO/lib '
-configopts += '--with-root=$EBROOTROOT/lib'
-
-# download and install the photo disintegration data package
-prebuildopts = './GetPDCrossSections.sh && '
-
-runtest = 'check'
-
-sanity_check_paths = {
- 'files': ["bin/CRPropa"],
- 'dirs': ["lib", "share"],
-}
-
-moduleclass = 'phys'
diff --git a/easybuild/easyconfigs/__archive__/c/CUDA/CUDA-5.5.22-GCC-4.7.2.eb b/easybuild/easyconfigs/__archive__/c/CUDA/CUDA-5.5.22-GCC-4.7.2.eb
deleted file mode 100644
index 3213a317321..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CUDA/CUDA-5.5.22-GCC-4.7.2.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Cyprus Institute / CaSToRC, Uni.Lu/LCSB, NTUA, Ghent University
-# Authors:: George Tsouloupas , Fotis Georgatos , Kenneth Hoste
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-99.html
-##
-
-name = 'CUDA'
-version = '5.5.22'
-
-homepage = 'https://developer.nvidia.com/cuda-toolkit'
-description = """CUDA (formerly Compute Unified Device Architecture) is a parallel
- computing platform and programming model created by NVIDIA and implemented by the
- graphics processing units (GPUs) that they produce. CUDA gives developers access
- to the virtual instruction set and memory of the parallel computational elements in CUDA GPUs."""
-
-toolchain = {'name': 'GCC', 'version': '4.7.2'}
-
-# eg. http://developer.download.nvidia.com/compute/cuda/5_5/rel/installers/cuda_5.5.22_linux_64.run
-source_urls = ['http://developer.download.nvidia.com/compute/cuda/5_5/rel/installers/']
-
-sources = ['%(namelower)s_%(version)s_linux_64.run']
-
-moduleclass = 'system'
diff --git a/easybuild/easyconfigs/__archive__/c/CUDA/CUDA-7.5.18-iccifort-2015.3.187-GNU-4.9.3-2.25.eb b/easybuild/easyconfigs/__archive__/c/CUDA/CUDA-7.5.18-iccifort-2015.3.187-GNU-4.9.3-2.25.eb
deleted file mode 100644
index b9b41e5dca4..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CUDA/CUDA-7.5.18-iccifort-2015.3.187-GNU-4.9.3-2.25.eb
+++ /dev/null
@@ -1,41 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2013 Cyprus Institute / CaSToRC, University of Luxembourg / LCSB, Ghent University,
-# Forschungszentrum Juelich
-# Authors:: George Tsouloupas , Fotis Georgatos , Kenneth Hoste
-# Authors:: Damian Alvarez
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-99.html
-##
-
-name = 'CUDA'
-version = '7.5.18'
-
-homepage = 'https://developer.nvidia.com/cuda-toolkit'
-description = """CUDA (formerly Compute Unified Device Architecture) is a parallel
- computing platform and programming model created by NVIDIA and implemented by the
- graphics processing units (GPUs) that they produce. CUDA gives developers access
- to the virtual instruction set and memory of the parallel computational elements in CUDA GPUs."""
-
-toolchain = {'name': 'iccifort', 'version': '2015.3.187-GNU-4.9.3-2.25'}
-
-source_urls = ['http://developer.download.nvidia.com/compute/cuda/%(version_major_minor)s/Prod/local_installers/']
-
-sources = ['%(namelower)s_%(version)s_linux.run']
-checksums = ['4b3bcecf0dfc35928a0898793cf3e4c6']
-
-# Necessary to allow to use a GCC 4.9.3 toolchain, as CUDA by default just supports up to 4.9.2.
-# Tested, but not throughly, so it is not guaranteed to don't cause problems
-installopts = '-override compiler'
-
-host_compilers = ["icpc", "g++"]
-
-# Be careful and have a message consistent with the generated wrappers
-modloadmsg = "nvcc uses g++ as the default host compiler. If you want to use icpc as a host compiler you can use"
-modloadmsg += " nvcc_icpc, or nvcc -ccbin=icpc. Likewise, a g++ wrapper called nvcc_g++ has been also created.\n"
-
-moduleclass = 'system'
diff --git a/easybuild/easyconfigs/__archive__/c/CVXOPT/CVXOPT-1.1.5-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/c/CVXOPT/CVXOPT-1.1.5-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index e06141ece53..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CVXOPT/CVXOPT-1.1.5-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,35 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'CVXOPT'
-version = '1.1.5'
-
-homepage = 'http://abel.ee.ucla.edu/cvxopt/'
-description = """CVXOPT is a free software package for convex optimization based on the Python programming language.
- Its main purpose is to make the development of software for convex optimization applications straightforward by
- building on Python's extensive standard library and on the strengths of Python as a high-level programming language.
-"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://abel.ee.ucla.edu/src/']
-sources = [SOURCELOWER_TAR_GZ]
-
-patches = ['CVXOPT-blas-lapack.patch']
-
-python = 'Python'
-pythonver = '2.7.3'
-pythonshortver = '.'.join(pythonver.split('.')[0:2])
-versionsuffix = '-%s-%s' % (python, pythonver)
-
-dependencies = [
- (python, pythonver),
-]
-
-start_dir = 'src'
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['lib/python%s/site-packages/%%(namelower)s' % pythonshortver],
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/c/CVXOPT/CVXOPT-1.1.5-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/c/CVXOPT/CVXOPT-1.1.5-ictce-5.3.0-Python-2.7.3.eb
deleted file mode 100644
index 795f2f03604..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CVXOPT/CVXOPT-1.1.5-ictce-5.3.0-Python-2.7.3.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'CVXOPT'
-version = '1.1.5'
-
-homepage = 'http://abel.ee.ucla.edu/cvxopt/'
-description = """CVXOPT is a free software package for convex optimization based on the Python programming language.
- Its main purpose is to make the development of software for convex optimization applications straightforward by
- building on Python's extensive standard library and on the strengths of Python as a high-level programming language.
-"""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['http://abel.ee.ucla.edu/src/']
-sources = [SOURCELOWER_TAR_GZ]
-
-patches = ['CVXOPT-blas-lapack.patch']
-
-python = 'Python'
-pythonver = '2.7.3'
-pythonshortver = '.'.join(pythonver.split('.')[0:2])
-versionsuffix = '-%s-%s' % (python, pythonver)
-
-dependencies = [
- (python, pythonver),
-]
-
-start_dir = 'src'
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['lib/python%s/site-packages/%%(namelower)s' % pythonshortver],
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/c/ChIP-Seq/ChIP-Seq-1.5-1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/ChIP-Seq/ChIP-Seq-1.5-1-goolf-1.4.10.eb
deleted file mode 100644
index df09a737a13..00000000000
--- a/easybuild/easyconfigs/__archive__/c/ChIP-Seq/ChIP-Seq-1.5-1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,50 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-easyblock = 'ConfigureMake'
-
-name = 'ChIP-Seq'
-version = '1.5-1'
-
-homepage = 'http://chip-seq.sourceforge.net/'
-description = """The ChIP-Seq software provides methods for the analysis of ChIP-seq data and
- other types of mass genome annotation data. The most common analysis tasks include positional
- correlation analysis, peak detection, and genome partitioning into signal-rich and signal-depleted regions."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://downloads.sourceforge.net/project/chip-seq/chip-seq/%s/' % '.'.join(version.split('-'))]
-sources = ['%(namelower)s.%(version)s.tar.gz']
-
-checksums = ['e36736c5151c872d9fc7afa54e3e8ccb']
-
-skipsteps = ['configure']
-
-buildopts = ' CC=$CC'
-
-preinstallopts = 'mkdir -p %(installdir)s/bin && '
-
-installopts = ' binDir=%(installdir)s/bin && '
-installopts += 'mkdir -p %(installdir)s/man/man1 && '
-installopts += 'make man manDir=%(installdir)s/man/man1/ && '
-installopts += 'cp -a tools/ %(installdir)s && '
-installopts += 'cp -a README doc/ %(installdir)s'
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["chipcenter", "chipcor", "chipextract", "chippart", "chippeak",
- "chipscore", "compactsga", "counts_filter", "countsga", "featreplace"]],
- 'dirs': []
-}
-
-# add tools dir to PATH
-modextrapaths = {
- 'PATH': "tools",
-}
-
-# fix shebang line in all provided perl scripts in tools folder
-postinstallcmds = ["sed -i -e 's|/usr/bin/perl|/usr/bin/env perl|' %(installdir)s/tools/*.pl",
- "sed -i -e 's|/usr/local/bin/perl|/usr/bin/env perl|' %(installdir)s/tools/*.pl"]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/ChIP-Seq/ChIP-Seq-1.5-1-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/c/ChIP-Seq/ChIP-Seq-1.5-1-goolf-1.7.20.eb
deleted file mode 100644
index 0044012c7fe..00000000000
--- a/easybuild/easyconfigs/__archive__/c/ChIP-Seq/ChIP-Seq-1.5-1-goolf-1.7.20.eb
+++ /dev/null
@@ -1,50 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-easyblock = 'ConfigureMake'
-
-name = 'ChIP-Seq'
-version = '1.5-1'
-
-homepage = 'http://chip-seq.sourceforge.net/'
-description = """The ChIP-Seq software provides methods for the analysis of ChIP-seq data and
- other types of mass genome annotation data. The most common analysis tasks include positional
- correlation analysis, peak detection, and genome partitioning into signal-rich and signal-depleted regions."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = ['http://downloads.sourceforge.net/project/chip-seq/chip-seq/%s/' % '.'.join(version.split('-'))]
-sources = ['%(namelower)s.%(version)s.tar.gz']
-
-checksums = ['e36736c5151c872d9fc7afa54e3e8ccb']
-
-skipsteps = ['configure']
-
-buildopts = ' CC=$CC'
-
-preinstallopts = 'mkdir -p %(installdir)s/bin && '
-
-installopts = ' binDir=%(installdir)s/bin && '
-installopts += 'mkdir -p %(installdir)s/man/man1 && '
-installopts += 'make man manDir=%(installdir)s/man/man1/ && '
-installopts += 'cp -a tools/ %(installdir)s && '
-installopts += 'cp -a README doc/ %(installdir)s'
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["chipcenter", "chipcor", "chipextract", "chippart", "chippeak",
- "chipscore", "compactsga", "counts_filter", "countsga", "featreplace"]],
- 'dirs': []
-}
-
-# add tools dir to PATH
-modextrapaths = {
- 'PATH': "tools",
-}
-
-# fix shebang line in all provided perl scripts in tools folder
-postinstallcmds = [r"sed -i -e 's|/usr/bin/perl|/usr/bin/env\ perl|' %(installdir)s/tools/*.pl",
- r"sed -i -e 's|/usr/local/bin/perl|/usr/bin/env\ perl|' %(installdir)s/tools/*.pl"]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.10.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.10.0-goolf-1.4.10.eb
deleted file mode 100644
index 2131f933b49..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.10.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,48 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2014, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-name = 'Chapel'
-version = "1.10.0"
-
-homepage = 'http://chapel.cray.com'
-description = """ Chapel is an emerging parallel programming language whose design and development
- is being led by Cray Inc. Chapel is designed to improve the productivity of high-end computer users
- while also serving as a portable parallel programming model that can be used on commodity clusters
- or desktop multicore systems. Chapel strives to vastly improve the programmability of large-scale
- parallel computers while matching or beating the performance and portability of current programming
- models like MPI."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [SOURCEFORGE_SOURCE]
-
-unpack_options = '--strip-components=1'
-
-# parallel build fails
-parallel = 1
-
-installopts = ' && make check'
-
-libpath = 'lib/linux64.gnu.arch-native.loc-flat.comm-none.tasks-qthreads.'
-libpath += 'tmr-generic.mem-cstdlib.atomics-intrinsics.'
-libpath += 'gmp.hwloc.re2.wide-struct.fs-none'
-
-sanity_check_paths = {
- 'files': ['bin/linux64/chpl', 'bin/linux64/chpldoc', '%s/libchpl.a' % libpath, '%s/main.o' % libpath],
- 'dirs': [],
-}
-
-modextrapaths = {
- 'PATH': 'util',
- 'CHPL_HOME': '',
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.10.0-goolf-1.6.10.eb b/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.10.0-goolf-1.6.10.eb
deleted file mode 100644
index e1386c970bc..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.10.0-goolf-1.6.10.eb
+++ /dev/null
@@ -1,48 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2014, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-name = 'Chapel'
-version = "1.10.0"
-
-homepage = 'http://chapel.cray.com'
-description = """ Chapel is an emerging parallel programming language whose design and development
- is being led by Cray Inc. Chapel is designed to improve the productivity of high-end computer users
- while also serving as a portable parallel programming model that can be used on commodity clusters
- or desktop multicore systems. Chapel strives to vastly improve the programmability of large-scale
- parallel computers while matching or beating the performance and portability of current programming
- models like MPI."""
-
-toolchain = {'name': 'goolf', 'version': '1.6.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [SOURCEFORGE_SOURCE]
-
-unpack_options = '--strip-components=1'
-
-# parallel build fails
-parallel = 1
-
-installopts = ' && make check'
-
-libpath = 'lib/linux64.gnu.arch-native.loc-flat.comm-none.tasks-qthreads.'
-libpath += 'tmr-generic.mem-cstdlib.atomics-intrinsics.'
-libpath += 'gmp.hwloc.re2.wide-struct.fs-none'
-
-sanity_check_paths = {
- 'files': ['bin/linux64/chpl', 'bin/linux64/chpldoc', '%s/libchpl.a' % libpath, '%s/main.o' % libpath],
- 'dirs': [],
-}
-
-modextrapaths = {
- 'PATH': 'util',
- 'CHPL_HOME': '',
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.6.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.6.0-goolf-1.4.10.eb
deleted file mode 100644
index a5282bdd2a8..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.6.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,45 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-name = 'Chapel'
-version = '1.6.0'
-
-homepage = 'http://chapel.cray.com'
-description = """ Chapel is an emerging parallel programming language whose design and development
- is being led by Cray Inc. Chapel is designed to improve the productivity of high-end computer users
- while also serving as a portable parallel programming model that can be used on commodity clusters
- or desktop multicore systems. Chapel strives to vastly improve the programmability of large-scale
- parallel computers while matching or beating the performance and portability of current programming
- models like MPI."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [('http://sourceforge.net/projects/%(namelower)s/files/%(namelower)s/%(version)s/', 'download')]
-
-unpack_options = '--strip-components=1'
-
-# parallel build fails
-parallel = 1
-
-libpath = 'lib/linux64/gnu/comm-none/substrate-none/seg-none/'
-libpath += 'mem-default/tasks-fifo/threads-pthreads/atomics-intrinsics/'
-
-sanity_check_paths = {
- 'files': ['bin/linux64/chpl', 'bin/linux64/chpldoc', '%s/libchpl.a' % libpath, '%s/main.o' % libpath],
- 'dirs': [],
-}
-
-modextrapaths = {
- 'PATH': 'util',
- 'CHPL_HOME': '',
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.7.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.7.0-goolf-1.4.10.eb
deleted file mode 100644
index a293117d133..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.7.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,45 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-name = 'Chapel'
-version = '1.7.0'
-
-homepage = 'http://chapel.cray.com'
-description = """ Chapel is an emerging parallel programming language whose design and development
- is being led by Cray Inc. Chapel is designed to improve the productivity of high-end computer users
- while also serving as a portable parallel programming model that can be used on commodity clusters
- or desktop multicore systems. Chapel strives to vastly improve the programmability of large-scale
- parallel computers while matching or beating the performance and portability of current programming
- models like MPI."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [('http://sourceforge.net/projects/%(namelower)s/files/%(namelower)s/%(version)s/', 'download')]
-
-unpack_options = '--strip-components=1'
-
-# parallel build fails
-parallel = 1
-
-libpath = 'lib/linux64/gnu/comm-none/substrate-none/seg-none/'
-libpath += 'mem-default/tasks-fifo/threads-pthreads/atomics-intrinsics/'
-
-sanity_check_paths = {
- 'files': ['bin/linux64/chpl', 'bin/linux64/chpldoc', '%s/libchpl.a' % libpath, '%s/main.o' % libpath],
- 'dirs': [],
-}
-
-modextrapaths = {
- 'PATH': 'util',
- 'CHPL_HOME': '',
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.8.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.8.0-goolf-1.4.10.eb
deleted file mode 100644
index b85bbceaf91..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.8.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,46 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-name = 'Chapel'
-version = '1.8.0'
-
-homepage = 'http://chapel.cray.com'
-description = """ Chapel is an emerging parallel programming language whose design and development
- is being led by Cray Inc. Chapel is designed to improve the productivity of high-end computer users
- while also serving as a portable parallel programming model that can be used on commodity clusters
- or desktop multicore systems. Chapel strives to vastly improve the programmability of large-scale
- parallel computers while matching or beating the performance and portability of current programming
- models like MPI."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [SOURCEFORGE_SOURCE]
-
-unpack_options = '--strip-components=1'
-
-# parallel build fails
-parallel = 1
-
-libpath = 'lib/linux64.gnu.loc-flat.tasks-fifo.'
-libpath += 'pthreads.tmr-generic.mem-default.atomics-intrinsics.'
-libpath += 'gmp-none.re-none.wide-struct.fs-none'
-
-sanity_check_paths = {
- 'files': ['bin/linux64/chpl', 'bin/linux64/chpldoc', '%s/libchpl.a' % libpath, '%s/main.o' % libpath],
- 'dirs': [],
-}
-
-modextrapaths = {
- 'PATH': 'util',
- 'CHPL_HOME': '',
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.8.0-goolf-1.6.10.eb b/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.8.0-goolf-1.6.10.eb
deleted file mode 100644
index e6d5a956d78..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.8.0-goolf-1.6.10.eb
+++ /dev/null
@@ -1,46 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-name = 'Chapel'
-version = '1.8.0'
-
-homepage = 'http://chapel.cray.com'
-description = """ Chapel is an emerging parallel programming language whose design and development
- is being led by Cray Inc. Chapel is designed to improve the productivity of high-end computer users
- while also serving as a portable parallel programming model that can be used on commodity clusters
- or desktop multicore systems. Chapel strives to vastly improve the programmability of large-scale
- parallel computers while matching or beating the performance and portability of current programming
- models like MPI."""
-
-toolchain = {'name': 'goolf', 'version': '1.6.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [SOURCEFORGE_SOURCE]
-
-unpack_options = '--strip-components=1'
-
-# parallel build fails
-parallel = 1
-
-libpath = 'lib/linux64.gnu.loc-flat.tasks-fifo.'
-libpath += 'pthreads.tmr-generic.mem-default.atomics-intrinsics.'
-libpath += 'gmp-none.re-none.wide-struct.fs-none'
-
-sanity_check_paths = {
- 'files': ['bin/linux64/chpl', 'bin/linux64/chpldoc', '%s/libchpl.a' % libpath, '%s/main.o' % libpath],
- 'dirs': [],
-}
-
-modextrapaths = {
- 'PATH': 'util',
- 'CHPL_HOME': '',
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.9.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.9.0-goolf-1.4.10.eb
deleted file mode 100644
index 9d6afe2d987..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.9.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,48 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2014, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-name = 'Chapel'
-version = '1.9.0'
-
-homepage = 'http://chapel.cray.com'
-description = """ Chapel is an emerging parallel programming language whose design and development
- is being led by Cray Inc. Chapel is designed to improve the productivity of high-end computer users
- while also serving as a portable parallel programming model that can be used on commodity clusters
- or desktop multicore systems. Chapel strives to vastly improve the programmability of large-scale
- parallel computers while matching or beating the performance and portability of current programming
- models like MPI."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [SOURCEFORGE_SOURCE]
-
-unpack_options = '--strip-components=1'
-
-# parallel build fails
-parallel = 1
-
-installopts = ' && make check'
-
-libpath = 'lib/linux64.gnu.loc-flat.tasks-fifo.'
-libpath += 'tmr-generic.mem-default.atomics-intrinsics.'
-libpath += 'gmp-none.hwloc-none.re-none.wide-struct.fs-none'
-
-sanity_check_paths = {
- 'files': ['bin/linux64/chpl', 'bin/linux64/chpldoc', '%s/libchpl.a' % libpath, '%s/main.o' % libpath],
- 'dirs': [],
-}
-
-modextrapaths = {
- 'PATH': 'util',
- 'CHPL_HOME': '',
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.9.0-goolf-1.5.14.eb b/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.9.0-goolf-1.5.14.eb
deleted file mode 100644
index 3f3cf693762..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.9.0-goolf-1.5.14.eb
+++ /dev/null
@@ -1,44 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Authors:: Jordi Blasco (NeSI)
-# License:: MIT/GPL
-# $Id$
-##
-
-name = 'Chapel'
-version = '1.9.0'
-
-homepage = 'http://chapel.cray.com'
-description = """ Chapel is an emerging parallel programming language whose design and development
- is being led by Cray Inc. Chapel is designed to improve the productivity of high-end computer users
- while also serving as a portable parallel programming model that can be used on commodity clusters
- or desktop multicore systems. Chapel strives to vastly improve the programmability of large-scale
- parallel computers while matching or beating the performance and portability of current programming
- models like MPI."""
-
-toolchain = {'name': 'goolf', 'version': '1.5.14'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [SOURCEFORGE_SOURCE]
-
-unpack_options = '--strip-components=1'
-
-# parallel build fails
-parallel = 1
-
-libpath = 'lib/linux64.gnu.loc-flat.tasks-fifo.tmr-generic.mem-default.atomics-intrinsics.'
-libpath += 'gmp-none.hwloc-none.re-none.wide-struct.fs-none'
-
-sanity_check_paths = {
- 'files': ['bin/linux64/chpl', 'bin/linux64/chpldoc', '%s/libchpl.a' % libpath, '%s/main.o' % libpath],
- 'dirs': [],
-}
-
-modextrapaths = {
- 'PATH': 'util',
- 'CHPL_HOME': '',
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.9.0-goolf-1.6.10.eb b/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.9.0-goolf-1.6.10.eb
deleted file mode 100644
index af2eb910369..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Chapel/Chapel-1.9.0-goolf-1.6.10.eb
+++ /dev/null
@@ -1,48 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2014, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-name = 'Chapel'
-version = '1.9.0'
-
-homepage = 'http://chapel.cray.com'
-description = """ Chapel is an emerging parallel programming language whose design and development
- is being led by Cray Inc. Chapel is designed to improve the productivity of high-end computer users
- while also serving as a portable parallel programming model that can be used on commodity clusters
- or desktop multicore systems. Chapel strives to vastly improve the programmability of large-scale
- parallel computers while matching or beating the performance and portability of current programming
- models like MPI."""
-
-toolchain = {'name': 'goolf', 'version': '1.6.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [SOURCEFORGE_SOURCE]
-
-unpack_options = '--strip-components=1'
-
-# parallel build fails
-parallel = 1
-
-installopts = ' && make check'
-
-libpath = 'lib/linux64.gnu.loc-flat.tasks-fifo.'
-libpath += 'tmr-generic.mem-default.atomics-intrinsics.'
-libpath += 'gmp-none.hwloc-none.re-none.wide-struct.fs-none'
-
-sanity_check_paths = {
- 'files': ['bin/linux64/chpl', 'bin/linux64/chpldoc', '%s/libchpl.a' % libpath, '%s/main.o' % libpath],
- 'dirs': [],
-}
-
-modextrapaths = {
- 'PATH': 'util',
- 'CHPL_HOME': '',
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/c/Check/Check-0.9.12-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/Check/Check-0.9.12-goolf-1.4.10.eb
deleted file mode 100644
index 1a131a403bc..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Check/Check-0.9.12-goolf-1.4.10.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'ConfigureMake'
-
-name = "Check"
-version = "0.9.12"
-
-homepage = 'http://check.sourceforge.net'
-description = """ Check is a unit testing framework for C. It features a simple interface
- for defining unit tests, putting little in the way of the developer. Tests are run in a
- separate address space, so both assertion failures and code errors that cause segmentation
- faults or other signals can be caught. Test results are reportable in the following:
- Subunit, TAP, XML, and a generic logging format."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/c/Circos/Circos-0.64-ictce-5.5.0-Perl-5.18.2.eb b/easybuild/easyconfigs/__archive__/c/Circos/Circos-0.64-ictce-5.5.0-Perl-5.18.2.eb
deleted file mode 100644
index 749710dd7a8..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Circos/Circos-0.64-ictce-5.5.0-Perl-5.18.2.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-easyblock = "Tarball"
-
-name = 'Circos'
-version = '0.64'
-
-homepage = 'http://www.circos.ca/'
-description = """Circos is a software package for visualizing data and information. It visualizes data in a circular
- layout — this makes Circos ideal for exploring relationships between objects or positions."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = ['http://www.circos.ca/distribution/']
-sources = [SOURCELOWER_TGZ]
-
-perl = 'Perl'
-perlver = '5.18.2'
-versionsuffix = '-%s-%s' % (perl, perlver)
-dependencies = [
- (perl, perlver),
- ('GD', '2.52', versionsuffix),
-]
-
-sanity_check_paths = {
- 'files': ['bin/%(namelower)s'],
- 'dirs': ['lib/%(name)s'],
-}
-
-modextrapaths = {'PERL5LIB': 'lib'}
-
-sanity_check_commands = [('perl', '-e "use Circos"')]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/Circos/Circos-0.69-2-ictce-5.5.0-Perl-5.18.2.eb b/easybuild/easyconfigs/__archive__/c/Circos/Circos-0.69-2-ictce-5.5.0-Perl-5.18.2.eb
deleted file mode 100644
index 6c93e5f90f0..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Circos/Circos-0.69-2-ictce-5.5.0-Perl-5.18.2.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-easyblock = "Tarball"
-
-name = 'Circos'
-version = '0.69-2'
-
-homepage = 'http://www.circos.ca/'
-description = """Circos is a software package for visualizing data and information.
- It visualizes data in a circular layout - this makes Circos ideal for exploring
- relationships between objects or positions."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = ['http://circos.ca/distribution/']
-sources = [SOURCELOWER_TGZ]
-
-perl = 'Perl'
-perlver = '5.18.2'
-versionsuffix = '-%s-%s' % (perl, perlver)
-dependencies = [
- (perl, perlver),
- ('GD', '2.52', versionsuffix),
-]
-
-sanity_check_paths = {
- 'files': ['bin/%(namelower)s'],
- 'dirs': ['lib/%(name)s'],
-}
-
-modextrapaths = {'PERL5LIB': 'lib'}
-
-sanity_check_commands = [('perl', '-e "use Circos"')]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/Circuitscape/Circuitscape-4.0.5-intel-2014b-Python-2.7.8.eb b/easybuild/easyconfigs/__archive__/c/Circuitscape/Circuitscape-4.0.5-intel-2014b-Python-2.7.8.eb
deleted file mode 100644
index b2653a86750..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Circuitscape/Circuitscape-4.0.5-intel-2014b-Python-2.7.8.eb
+++ /dev/null
@@ -1,35 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'Circuitscape'
-version = '4.0.5'
-
-homepage = 'http://www.circuitscape.org/'
-description = """Circuitscape is a free, open-source program which borrows algorithms
- from electronic circuit theory to predict patterns of movement, gene flow,
- and genetic differentiation among plant and animal populations in
- heterogeneous landscapes. Circuit theory complements least-cost path
- approaches because it considers effects of all possible pathways
- across a landscape simultaneously."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-python = 'Python'
-pythonver = '2.7.8'
-pyshortver = '.'.join(pythonver.split('.')[0:2])
-versionsuffix = '-%s-%s' % (python, pythonver)
-
-dependencies = [
- (python, pythonver),
- ('PyAMG', '2.2.1', versionsuffix),
-]
-
-sanity_check_paths = {
- 'files': ['lib/python%s/site-packages/%%(namelower)s/__init__.py' % pyshortver] +
- ['bin/cs%s.py' % x for x in ['run', 'verify']],
- 'dirs': ['lib/python%s/site-packages/%%(namelower)s' % pyshortver],
-}
-
-moduleclass = 'cae'
diff --git a/easybuild/easyconfigs/__archive__/c/Clang/Clang-3.2-GCC-4.7.3.eb b/easybuild/easyconfigs/__archive__/c/Clang/Clang-3.2-GCC-4.7.3.eb
deleted file mode 100644
index 183e2860f5a..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Clang/Clang-3.2-GCC-4.7.3.eb
+++ /dev/null
@@ -1,47 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2013 Dmitri Gribenko
-# Authors:: Dmitri Gribenko
-# License:: GPLv2 or later, MIT, three-clause BSD.
-# $Id$
-##
-
-name = "Clang"
-version = "3.2"
-
-homepage = "http://clang.llvm.org/"
-description = """C, C++, Objective-C compiler, based on LLVM. Does not
-include C++ standard library -- use libstdc++ from GCC."""
-
-# Clang also depends on libstdc++ during runtime, but this dependency is
-# already specified as the toolchain.
-toolchain = {'name': 'GCC', 'version': '4.7.3'}
-
-source_urls = ["http://llvm.org/releases/%(version)s"]
-sources = [
- "llvm-%(version)s.src.tar.gz",
- "clang-%(version)s.src.tar.gz",
- "compiler-rt-%(version)s.src.tar.gz",
-]
-
-# Remove some tests that fail because of -DGCC_INSTALL_PREFIX. The issue is
-# that hardcoded GCC_INSTALL_PREFIX overrides -sysroot. This probably breaks
-# cross-compilation.
-# http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20130401/077539.html
-patches = ['Clang-3.2-failing-tests-due-to-gcc-installation-prefix.patch']
-
-builddependencies = [('CMake', '2.8.4')]
-
-sanity_check_paths = {
- 'files': ['bin/clang', 'bin/clang++', 'lib/libclang.%s' % SHLIB_EXT, 'lib/clang/3.2/include/stddef.h'],
- 'dirs': []
-}
-
-languages = ['c', 'c++']
-
-moduleclass = 'compiler'
-
-assertions = False
-
-usepolly = False
diff --git a/easybuild/easyconfigs/__archive__/c/Clustal-Omega/Clustal-Omega-1.2.0-foss-2015b.eb b/easybuild/easyconfigs/__archive__/c/Clustal-Omega/Clustal-Omega-1.2.0-foss-2015b.eb
deleted file mode 100644
index 444a7149323..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Clustal-Omega/Clustal-Omega-1.2.0-foss-2015b.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'ConfigureMake'
-
-name = 'Clustal-Omega'
-version = '1.2.0'
-
-homepage = 'http://www.clustal.org/omega/'
-description = """ Clustal Omega is a multiple sequence alignment
- program for proteins. It produces biologically meaningful multiple
- sequence alignments of divergent sequences. Evolutionary relationships
- can be seen via viewing Cladograms or Phylograms """
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = [homepage]
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('argtable', '2.13')]
-
-sanity_check_paths = {
- 'files': ['bin/clustalo'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/Clustal-Omega/Clustal-Omega-1.2.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/Clustal-Omega/Clustal-Omega-1.2.0-goolf-1.4.10.eb
deleted file mode 100644
index 333cd834837..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Clustal-Omega/Clustal-Omega-1.2.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'ConfigureMake'
-
-name = 'Clustal-Omega'
-version = '1.2.0'
-
-homepage = 'http://www.clustal.org/omega/'
-description = """ Clustal Omega is a multiple sequence alignment
- program for proteins. It produces biologically meaningful multiple
- sequence alignments of divergent sequences. Evolutionary relationships
- can be seen via viewing Cladograms or Phylograms """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-dependencies = [('argtable', '2.13')]
-
-source_urls = [homepage]
-sources = [SOURCELOWER_TAR_GZ]
-
-sanity_check_paths = {
- 'files': ['bin/clustalo'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/ClustalW2/ClustalW2-2.1-foss-2015b.eb b/easybuild/easyconfigs/__archive__/c/ClustalW2/ClustalW2-2.1-foss-2015b.eb
deleted file mode 100644
index d60a1926b66..00000000000
--- a/easybuild/easyconfigs/__archive__/c/ClustalW2/ClustalW2-2.1-foss-2015b.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'ClustalW2'
-version = '2.1'
-
-homepage = 'http://www.ebi.ac.uk/Tools/msa/clustalw2/'
-description = """ClustalW2 is a general purpose multiple sequence alignment program for DNA or proteins."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-source_urls = ['http://www.clustal.org/download/%(version)s']
-sources = ['clustalw-%(version)s.tar.gz']
-
-sanity_check_paths = {
- 'files': ['bin/clustalw2'],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/ClustalW2/ClustalW2-2.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/ClustalW2/ClustalW2-2.1-goolf-1.4.10.eb
deleted file mode 100644
index 2e811364776..00000000000
--- a/easybuild/easyconfigs/__archive__/c/ClustalW2/ClustalW2-2.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'ClustalW2'
-version = '2.1'
-
-homepage = 'http://www.ebi.ac.uk/Tools/msa/clustalw2/'
-description = """ClustalW2 is a general purpose multiple sequence alignment program for DNA or proteins."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = ['%s-%s.tar.gz' % (name[:-1].lower(), version)]
-source_urls = ['ftp://ftp.ebi.ac.uk/pub/software/%s/%s' % (name.lower(), version)]
-
-sanity_check_paths = {
- 'files': ['bin/clustalw2'],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/ClustalW2/ClustalW2-2.1-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/c/ClustalW2/ClustalW2-2.1-ictce-5.3.0.eb
deleted file mode 100644
index 5e25ce08f30..00000000000
--- a/easybuild/easyconfigs/__archive__/c/ClustalW2/ClustalW2-2.1-ictce-5.3.0.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'ClustalW2'
-version = '2.1'
-
-homepage = 'http://www.ebi.ac.uk/Tools/msa/clustalw2/'
-description = """ClustalW2 is a general purpose multiple sequence alignment program for DNA or proteins."""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = ['%s-%s.tar.gz' % (name[:-1].lower(), version)]
-source_urls = ['ftp://ftp.ebi.ac.uk/pub/software/%s/%s' % (name.lower(), version)]
-
-sanity_check_paths = {
- 'files': ['bin/clustalw2'],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/Cookiecutter/Cookiecutter-1.4.0-goolf-1.7.20-Python-2.7.11.eb b/easybuild/easyconfigs/__archive__/c/Cookiecutter/Cookiecutter-1.4.0-goolf-1.7.20-Python-2.7.11.eb
deleted file mode 100644
index 08a619c039d..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cookiecutter/Cookiecutter-1.4.0-goolf-1.7.20-Python-2.7.11.eb
+++ /dev/null
@@ -1,78 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-easyblock = 'Bundle'
-
-name = 'Cookiecutter'
-version = '1.4.0'
-versionsuffix = '-Python-%(pyver)s'
-
-homepage = 'https://github.com/audreyr/cookiecutter'
-description = """Command-line utility that creates projects from cookiecutters (project templates).
- E.g. Python package projects, jQuery plugin projects."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-# this is a bundle of Python packages
-exts_defaultclass = 'PythonPackage'
-
-dependencies = [
- ('Python', '2.7.11'),
-]
-
-# this application also requires numpy, scipy and matplotlib which
-# are provided by the Python module
-exts_list = [
- ('six', '1.10.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/s/six/'],
- }),
- ('python-dateutil', '2.6.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/python-dateutil/'],
- 'modulename': 'dateutil',
- }),
- ('future', '0.16.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/f/future/'],
- }),
- ('whichcraft', '0.4.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/w/whichcraft/'],
- }),
- ('arrow', '0.8.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/a/arrow/'],
- }),
- ('chardet', '2.3.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/c/chardet/'],
- }),
- ('binaryornot', '0.4.0', {
- 'source_urls': ['https://pypi.io/packages/source/b/binaryornot/'],
- }),
- ('Jinja2', '2.8', {
- 'source_urls': ['https://pypi.python.org/packages/source/J/Jinja2/'],
- }),
- ('jinja2-time', '0.2.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/j/jinja2-time/'],
- 'modulename': 'jinja2',
- }),
- ('click', '6.6', {
- 'source_urls': ['https://pypi.python.org/packages/source/c/click/'],
- }),
- ('poyo', '0.4.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/poyo/'],
- }),
- ('MarkupSafe', '0.23', {
- 'source_urls': ['https://pypi.python.org/packages/source/m/MarkupSafe/'],
- }),
- ('cookiecutter', version, {
- 'source_urls': ['https://pypi.python.org/packages/source/c/cookiecutter/'],
- }),
-]
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['chardetect', 'cookiecutter', 'futurize', 'pasteurize']],
- 'dirs': ['lib/python%(pyshortver)s/site-packages'],
-}
-
-modextrapaths = {'PYTHONPATH': ['lib/python%(pyshortver)s/site-packages']}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/Coreutils/Coreutils-8.22-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/Coreutils/Coreutils-8.22-goolf-1.4.10.eb
deleted file mode 100644
index cfe41742aec..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Coreutils/Coreutils-8.22-goolf-1.4.10.eb
+++ /dev/null
@@ -1,21 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = "Coreutils"
-version = "8.22"
-
-homepage = 'http://www.gnu.org/software/coreutils/'
-description = """The GNU Core Utilities are the basic file, shell and text manipulation utilities of the
- GNU operating system. These are the core utilities which are expected to exist on every operating system."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_XZ]
-
-sanity_check_paths = {
- 'files': ['bin/sort', 'bin/echo', 'bin/du', 'bin/date', 'bin/true'],
- 'dirs': []
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/Coreutils/Coreutils-8.22-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/c/Coreutils/Coreutils-8.22-ictce-5.3.0.eb
deleted file mode 100644
index 7e921a133ce..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Coreutils/Coreutils-8.22-ictce-5.3.0.eb
+++ /dev/null
@@ -1,21 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = "Coreutils"
-version = "8.22"
-
-homepage = 'http://www.gnu.org/software/coreutils/'
-description = """The GNU Core Utilities are the basic file, shell and text manipulation utilities of the
- GNU operating system. These are the core utilities which are expected to exist on every operating system."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_XZ]
-
-sanity_check_paths = {
- 'files': ['bin/sort', 'bin/echo', 'bin/du', 'bin/date', 'bin/true'],
- 'dirs': []
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/Corkscrew/Corkscrew-2.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/Corkscrew/Corkscrew-2.0-goolf-1.4.10.eb
deleted file mode 100644
index 82fce2b21b0..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Corkscrew/Corkscrew-2.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'Corkscrew'
-version = '2.0'
-
-homepage = 'http://www.agroman.net/corkscrew/'
-description = """Corkscrew-2.0: Tool for tunneling SSH through HTTP proxies"""
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://www.agroman.net/corkscrew/']
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sanity_check_paths = {
- 'files': ['bin/corkscrew'],
- 'dirs': []
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/Corkscrew/Corkscrew-2.0-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/c/Corkscrew/Corkscrew-2.0-ictce-5.3.0.eb
deleted file mode 100644
index 68607c8fb2d..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Corkscrew/Corkscrew-2.0-ictce-5.3.0.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'Corkscrew'
-version = '2.0'
-
-homepage = 'http://www.agroman.net/corkscrew/'
-description = """Corkscrew-2.0: Tool for tunneling SSH through HTTP proxies"""
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://www.agroman.net/corkscrew/']
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sanity_check_paths = {
- 'files': ['bin/corkscrew'],
- 'dirs': []
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/CosmoloPy/CosmoloPy-0.1.104-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/c/CosmoloPy/CosmoloPy-0.1.104-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index 61bd20053b0..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CosmoloPy/CosmoloPy-0.1.104-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'CosmoloPy'
-version = '0.1.104'
-
-homepage = 'https://github.com/roban/CosmoloPy'
-description = """A cosmology package for Python. CosmoloPy is
-built on and designed for use with NumPy and SciPy."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-python = 'Python'
-pyver = '2.7.3'
-versionsuffix = '-%s-%s' % (python, pyver)
-
-dependencies = [
- (python, pyver),
- ('numpy', '1.7.1', versionsuffix),
-]
-
-pyshortver = '.'.join(pyver.split('.')[:2])
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['lib/python%s/site-packages' % pyshortver],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/CppUnit/CppUnit-1.12.1-intel-2015b.eb b/easybuild/easyconfigs/__archive__/c/CppUnit/CppUnit-1.12.1-intel-2015b.eb
deleted file mode 100644
index 1039b8eda37..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CppUnit/CppUnit-1.12.1-intel-2015b.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'CppUnit'
-version = '1.12.1'
-
-homepage = 'http://sourceforge.net/projects/cppunit/'
-description = """CppUnit is the C++ port of the famous JUnit framework for unit testing."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-
-sanity_check_paths = {
- 'files': ['lib/libcppunit.a', 'lib/libcppunit.%s' % SHLIB_EXT, 'lib/pkgconfig/cppunit.pc'],
- 'dirs': ['bin', 'include/cppunit', 'share'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/CrayCCE/CrayCCE-2015.06.eb b/easybuild/easyconfigs/__archive__/c/CrayCCE/CrayCCE-2015.06.eb
deleted file mode 100644
index 330602eae5f..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CrayCCE/CrayCCE-2015.06.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-easyblock = 'CrayToolchain'
-
-name = 'CrayCCE'
-version = '2015.06'
-
-homepage = 'http://docs.cray.com/books/S-9407-1511'
-description = """Toolchain using Cray compiler wrapper, using PrgEnv-cray module (PE release: November 2015).\n"""
-
-toolchain = SYSTEM
-
-dependencies = [
- # PrgEnv version is not pinned, as Cray recommends to use the latest (default) version
- ('PrgEnv-cray', EXTERNAL_MODULE),
- ('cce/8.3.12', EXTERNAL_MODULE),
- ('cray-libsci/13.0.4', EXTERNAL_MODULE),
- ('cray-mpich/7.2.2', EXTERNAL_MODULE),
-]
-
-moduleclass = 'toolchain'
diff --git a/easybuild/easyconfigs/__archive__/c/CrayCCE/CrayCCE-2015.11.eb b/easybuild/easyconfigs/__archive__/c/CrayCCE/CrayCCE-2015.11.eb
deleted file mode 100644
index a4c09300c3b..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CrayCCE/CrayCCE-2015.11.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-easyblock = 'CrayToolchain'
-
-name = 'CrayCCE'
-version = '2015.11'
-
-homepage = 'http://docs.cray.com/books/S-9407-1511'
-description = """Toolchain using Cray compiler wrapper, using PrgEnv-cray module (PE release: November 2015).\n"""
-
-toolchain = SYSTEM
-
-dependencies = [
- # PrgEnv version is not pinned, as Cray recommends to use the latest (default) version
- ('PrgEnv-cray', EXTERNAL_MODULE),
- ('cce/8.4.1', EXTERNAL_MODULE),
- ('cray-libsci/13.2.0', EXTERNAL_MODULE),
- ('cray-mpich/7.2.6', EXTERNAL_MODULE),
-]
-
-moduleclass = 'toolchain'
diff --git a/easybuild/easyconfigs/__archive__/c/CrayGNU/CrayGNU-2015.06.eb b/easybuild/easyconfigs/__archive__/c/CrayGNU/CrayGNU-2015.06.eb
deleted file mode 100644
index 572ac525360..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CrayGNU/CrayGNU-2015.06.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-easyblock = 'CrayToolchain'
-
-name = 'CrayGNU'
-version = '2015.06'
-
-homepage = 'http://docs.cray.com/books/S-9407-1506'
-description = """Toolchain using Cray compiler wrapper, using PrgEnv-gnu module (PE release: June 2015).\n"""
-
-toolchain = SYSTEM
-
-dependencies = [
- # PrgEnv version is not pinned, as Cray recommends to use the latest (default) version
- ('PrgEnv-gnu', EXTERNAL_MODULE),
- ('gcc/4.8.2', EXTERNAL_MODULE),
- ('cray-libsci/13.0.4', EXTERNAL_MODULE),
- ('cray-mpich/7.2.2', EXTERNAL_MODULE),
-]
-
-moduleclass = 'toolchain'
diff --git a/easybuild/easyconfigs/__archive__/c/CrayGNU/CrayGNU-2015.11.eb b/easybuild/easyconfigs/__archive__/c/CrayGNU/CrayGNU-2015.11.eb
deleted file mode 100644
index 0e6a5c2553f..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CrayGNU/CrayGNU-2015.11.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-easyblock = 'CrayToolchain'
-
-name = 'CrayGNU'
-version = '2015.11'
-
-homepage = 'http://docs.cray.com/books/S-9407-1511'
-description = """Toolchain using Cray compiler wrapper, using PrgEnv-gnu module (PE release: November 2015).\n"""
-
-toolchain = SYSTEM
-
-dependencies = [
- # PrgEnv version is not pinned, as Cray recommends to use the latest (default) version
- ('PrgEnv-gnu', EXTERNAL_MODULE),
- ('gcc/4.9.3', EXTERNAL_MODULE),
- ('cray-libsci/13.2.0', EXTERNAL_MODULE),
- ('cray-mpich/7.2.6', EXTERNAL_MODULE),
-]
-
-moduleclass = 'toolchain'
diff --git a/easybuild/easyconfigs/__archive__/c/CrayGNU/CrayGNU-2016.03.eb b/easybuild/easyconfigs/__archive__/c/CrayGNU/CrayGNU-2016.03.eb
deleted file mode 100644
index 817e5af6722..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CrayGNU/CrayGNU-2016.03.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-easyblock = 'CrayToolchain'
-
-name = 'CrayGNU'
-version = '2016.03'
-
-homepage = 'http://docs.cray.com/books/S-9408-1603/'
-description = """Toolchain using Cray compiler wrapper, using PrgEnv-gnu module (PE release: March 2016)."""
-
-toolchain = SYSTEM
-
-dependencies = [
- # PrgEnv version is not pinned, as Cray recommends to use the latest (default) version
- ('PrgEnv-gnu', EXTERNAL_MODULE),
- ('gcc/4.9.3', EXTERNAL_MODULE),
- ('cray-libsci/16.03.1', EXTERNAL_MODULE),
- ('cray-mpich/7.3.2', EXTERNAL_MODULE),
-]
-
-moduleclass = 'toolchain'
diff --git a/easybuild/easyconfigs/__archive__/c/CrayGNU/CrayGNU-2016.04.eb b/easybuild/easyconfigs/__archive__/c/CrayGNU/CrayGNU-2016.04.eb
deleted file mode 100644
index 3225949472c..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CrayGNU/CrayGNU-2016.04.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-easyblock = 'CrayToolchain'
-
-name = 'CrayGNU'
-version = '2016.04'
-
-homepage = 'http://docs.cray.com/books/S-9408-1604/'
-description = """Toolchain using Cray compiler wrapper, using PrgEnv-gnu module (PE release: April 2016).\n"""
-
-toolchain = SYSTEM
-
-dependencies = [
- # PrgEnv version is not pinned, as Cray recommends to use the latest (default) version
- ('PrgEnv-gnu', EXTERNAL_MODULE),
- ('gcc/4.9.3', EXTERNAL_MODULE),
- ('cray-libsci/16.03.1', EXTERNAL_MODULE),
- ('cray-mpich/7.3.3', EXTERNAL_MODULE),
-]
-
-moduleclass = 'toolchain'
diff --git a/easybuild/easyconfigs/__archive__/c/CrayGNU/CrayGNU-2016.06.eb b/easybuild/easyconfigs/__archive__/c/CrayGNU/CrayGNU-2016.06.eb
deleted file mode 100644
index ac3224eaa1c..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CrayGNU/CrayGNU-2016.06.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-easyblock = 'CrayToolchain'
-
-name = 'CrayGNU'
-version = '2016.06'
-
-homepage = 'http://docs.cray.com/books/S-9408-1606/'
-description = """Toolchain using Cray compiler wrapper, using PrgEnv-gnu module (PE release: June 2016).\n"""
-
-toolchain = SYSTEM
-
-dependencies = [
- # PrgEnv version is not pinned, as Cray recommends to use the latest (default) version
- ('PrgEnv-gnu', EXTERNAL_MODULE),
- ('gcc/4.9.3', EXTERNAL_MODULE),
- ('cray-libsci/16.06.1', EXTERNAL_MODULE),
- ('cray-mpich/7.4.0', EXTERNAL_MODULE),
-]
-
-moduleclass = 'toolchain'
diff --git a/easybuild/easyconfigs/__archive__/c/CrayIntel/CrayIntel-2015.06.eb b/easybuild/easyconfigs/__archive__/c/CrayIntel/CrayIntel-2015.06.eb
deleted file mode 100644
index c16cb736aaa..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CrayIntel/CrayIntel-2015.06.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-easyblock = 'CrayToolchain'
-
-name = 'CrayIntel'
-version = '2015.06'
-
-homepage = 'http://docs.cray.com/books/S-9407-1511'
-description = """Toolchain using Cray compiler wrapper, using PrgEnv-intel module (PE release: November 2015).\n"""
-
-toolchain = SYSTEM
-
-dependencies = [
- # PrgEnv version is not pinned, as Cray recommends to use the latest (default) version
- ('PrgEnv-intel', EXTERNAL_MODULE),
- ('intel/15.0.1.133', EXTERNAL_MODULE),
- ('cray-libsci/13.0.4', EXTERNAL_MODULE),
- ('cray-mpich/7.2.2', EXTERNAL_MODULE),
-]
-
-moduleclass = 'toolchain'
diff --git a/easybuild/easyconfigs/__archive__/c/CrayIntel/CrayIntel-2015.11.eb b/easybuild/easyconfigs/__archive__/c/CrayIntel/CrayIntel-2015.11.eb
deleted file mode 100644
index f293b619e2e..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CrayIntel/CrayIntel-2015.11.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-easyblock = 'CrayToolchain'
-
-name = 'CrayIntel'
-version = '2015.11'
-
-homepage = 'http://docs.cray.com/books/S-9407-1511'
-description = """Toolchain using Cray compiler wrapper, using PrgEnv-intel module (PE release: November 2015).\n"""
-
-toolchain = SYSTEM
-
-dependencies = [
- # PrgEnv version is not pinned, as Cray recommends to use the latest (default) version
- ('PrgEnv-intel', EXTERNAL_MODULE),
- ('intel/15.0.1.133', EXTERNAL_MODULE),
- ('cray-libsci/13.2.0', EXTERNAL_MODULE),
- ('cray-mpich/7.2.6', EXTERNAL_MODULE),
-]
-
-moduleclass = 'toolchain'
diff --git a/easybuild/easyconfigs/__archive__/c/CrayIntel/CrayIntel-2016.06.eb b/easybuild/easyconfigs/__archive__/c/CrayIntel/CrayIntel-2016.06.eb
deleted file mode 100644
index c1b499d5de0..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CrayIntel/CrayIntel-2016.06.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-easyblock = 'CrayToolchain'
-
-name = 'CrayIntel'
-version = '2016.06'
-
-homepage = 'http://docs.cray.com/books/S-9407-1606'
-description = """Toolchain using Cray compiler wrapper, using PrgEnv-intel module (PE release: June 2016).\n"""
-
-toolchain = SYSTEM
-
-dependencies = [
- # PrgEnv version is not pinned, as Cray recommends to use the latest (default) version
- ('PrgEnv-intel', EXTERNAL_MODULE),
- ('intel/16.0.1.150', EXTERNAL_MODULE),
- ('cray-libsci/16.06.1', EXTERNAL_MODULE),
- ('cray-mpich/7.4.0', EXTERNAL_MODULE),
-]
-
-moduleclass = 'toolchain'
diff --git a/easybuild/easyconfigs/__archive__/c/CrayPGI/CrayPGI-2016.04.eb b/easybuild/easyconfigs/__archive__/c/CrayPGI/CrayPGI-2016.04.eb
deleted file mode 100644
index a5e1ba06e50..00000000000
--- a/easybuild/easyconfigs/__archive__/c/CrayPGI/CrayPGI-2016.04.eb
+++ /dev/null
@@ -1,18 +0,0 @@
-easyblock = 'CrayToolchain'
-
-name = 'CrayPGI'
-version = '2016.04'
-
-homepage = 'http://www.pgroup.com/'
-description = """Toolchain using Cray compiler wrapper, using PrgEnv-pgi module."""
-
-toolchain = SYSTEM
-
-dependencies = [
- # PrgEnv version is not pinned, as Cray recommends to use the latest (default) version
- ('PrgEnv-pgi', EXTERNAL_MODULE),
- ('pgi/16.3.0', EXTERNAL_MODULE),
- ('cray-mpich/7.3.2', EXTERNAL_MODULE),
-]
-
-moduleclass = 'toolchain'
diff --git a/easybuild/easyconfigs/__archive__/c/Cube/Cube-4.2-goolf-1.5.14.eb b/easybuild/easyconfigs/__archive__/c/Cube/Cube-4.2-goolf-1.5.14.eb
deleted file mode 100644
index 4ad949c6687..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cube/Cube-4.2-goolf-1.5.14.eb
+++ /dev/null
@@ -1,56 +0,0 @@
-##
-# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2013-2015 Juelich Supercomputing Centre, Germany
-# Authors:: Bernd Mohr
-# Markus Geimer
-# License:: 3-clause BSD
-#
-# This work is based on experiences from the UNITE project
-# http://apps.fz-juelich.de/unite/
-##
-
-easyblock = 'EB_Score_minus_P'
-
-name = 'Cube'
-version = '4.2'
-
-homepage = 'http://www.scalasca.org/software/cube-4.x/download.html'
-description = """Cube, which is used as performance report explorer for Scalasca and
- Score-P, is a generic tool for displaying a multi-dimensional performance space
- consisting of the dimensions (i) performance metric, (ii) call path, and (iii) system
- resource. Each dimension can be represented as a tree, where non-leaf nodes of the tree
- can be collapsed or expanded to achieve the desired level of granularity."""
-
-toolchain = {'name': 'goolf', 'version': '1.5.14'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://apps.fz-juelich.de/scalasca/releases/cube/%(version_major_minor)s/dist']
-
-# Backported fixes included in Cube 4.2.2 and up
-patches = [
- 'Cube-%(version)s_fix-Qt-version-check.patch',
- 'Cube-%(version)s_fix-with-qt-check.patch',
-]
-
-checksums = [
- 'aa1b1594bacddd3a1931f9a9dea23ce8', # cube-4.2.tar.gz
- 'da69fe49d347dc7722c30bb785106d96', # Cube-4.2_fix-Qt-version-check.patch
- '5a746d4f6f4eb5eb8b464ca355b46891', # Cube-4.2_fix-with-qt-check.patch
-]
-
-dependencies = [('Qt', '4.8.6')]
-
-# The Cube Java reader is currently only used by TAU, which ships it's own
-# copy as a jar file. If you really want to enable it, make sure to set
-# 'maxparallel=1', as automake's Java support has difficulties handling
-# parallel builds.
-configopts = '--without-java-reader'
-
-sanity_check_paths = {
- 'files': ['bin/cube', ('lib/libcube4.a', 'lib64/libcube4.a'),
- ('lib/libcube4.%s' % SHLIB_EXT, 'lib64/libcube4.%s' % SHLIB_EXT)],
- 'dirs': ['include/cube', 'include/cubew'],
-}
-
-moduleclass = 'perf'
diff --git a/easybuild/easyconfigs/__archive__/c/Cube/Cube-4.2.3-goolf-1.5.14.eb b/easybuild/easyconfigs/__archive__/c/Cube/Cube-4.2.3-goolf-1.5.14.eb
deleted file mode 100644
index d6ae37f211a..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cube/Cube-4.2.3-goolf-1.5.14.eb
+++ /dev/null
@@ -1,42 +0,0 @@
-# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild
-# Authors:: Jordi Blasco
-# License:: New BSD
-#
-##
-
-easyblock = 'EB_Score_minus_P'
-
-name = "Cube"
-version = "4.2.3"
-
-homepage = 'http://www.scalasca.org/software/cube-4.x/download.html'
-description = """Cube, which is used as performance report explorer for Scalasca and
- Score-P, is a generic tool for displaying a multi-dimensional performance space
- consisting of the dimensions (i) performance metric, (ii) call path, and (iii) system
- resource. Each dimension can be represented as a tree, where non-leaf nodes of the tree
- can be collapsed or expanded to achieve the desired level of granularity."""
-
-toolchain = {'name': 'goolf', 'version': '1.5.14'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://apps.fz-juelich.de/scalasca/releases/cube/%(version_major_minor)s/dist']
-
-checksums = [
- '8f95b9531f5a8f8134f279c2767c9b20', # cube-4.2.3.tar.gz
-]
-
-dependencies = [('Qt', '4.8.4')]
-
-# The Cube Java reader is currently only used by TAU, which ships it's own
-# copy as a jar file. If you really want to enable it, make sure to set
-# 'maxparallel=1', as automake's Java support has difficulties handling
-# parallel builds.
-configopts = "--without-java-reader"
-
-sanity_check_paths = {
- 'files': ["bin/cube", ("lib/libcube4.a", "lib64/libcube4.a"),
- ("lib/libcube4.%s" % SHLIB_EXT, "lib64/libcube4.%s" % SHLIB_EXT)],
- 'dirs': ["include/cube", "include/cubew"],
-}
-
-moduleclass = 'perf'
diff --git a/easybuild/easyconfigs/__archive__/c/Cube/Cube-4.3-foss-2015a.eb b/easybuild/easyconfigs/__archive__/c/Cube/Cube-4.3-foss-2015a.eb
deleted file mode 100644
index b4f629e0718..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cube/Cube-4.3-foss-2015a.eb
+++ /dev/null
@@ -1,48 +0,0 @@
-##
-# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2013-2015 Juelich Supercomputing Centre, Germany
-# Authors:: Bernd Mohr
-# Markus Geimer
-# License:: 3-clause BSD
-#
-# This work is based on experiences from the UNITE project
-# http://apps.fz-juelich.de/unite/
-##
-
-easyblock = 'EB_Score_minus_P'
-
-name = "Cube"
-version = "4.3"
-
-homepage = 'http://www.scalasca.org/software/cube-4.x/download.html'
-description = """Cube, which is used as performance report explorer for Scalasca and
- Score-P, is a generic tool for displaying a multi-dimensional performance space
- consisting of the dimensions (i) performance metric, (ii) call path, and (iii) system
- resource. Each dimension can be represented as a tree, where non-leaf nodes of the tree
- can be collapsed or expanded to achieve the desired level of granularity."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://apps.fz-juelich.de/scalasca/releases/cube/%(version_major_minor)s/dist']
-
-checksums = [
- 'ed4d6f3647eefa65fc194b5d1a5f4ffe', # cube-4.3.tar.gz
-]
-
-dependencies = [('Qt', '4.8.6')]
-
-# The Cube Java reader is currently only used by TAU, which ships it's own
-# copy as a jar file. If you really want to enable it, make sure to set
-# 'maxparallel=1', as automake's Java support has difficulties handling
-# parallel builds.
-configopts = "--without-java-reader"
-
-sanity_check_paths = {
- 'files': ["bin/cube", ("lib/libcube4.a", "lib64/libcube4.a"),
- ("lib/libcube4.%s" % SHLIB_EXT, "lib64/libcube4.%s" % SHLIB_EXT)],
- 'dirs': ["include/cube", "include/cubew"],
-}
-
-moduleclass = 'perf'
diff --git a/easybuild/easyconfigs/__archive__/c/Cube/Cube-4.3.2-foss-2015a.eb b/easybuild/easyconfigs/__archive__/c/Cube/Cube-4.3.2-foss-2015a.eb
deleted file mode 100644
index 259be540875..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cube/Cube-4.3.2-foss-2015a.eb
+++ /dev/null
@@ -1,42 +0,0 @@
-##
-# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2013-2015 Juelich Supercomputing Centre, Germany
-# Authors:: Bernd Mohr
-# Markus Geimer
-# License:: 3-clause BSD
-#
-# This work is based on experiences from the UNITE project
-# http://apps.fz-juelich.de/unite/
-##
-
-easyblock = 'EB_Score_minus_P'
-
-name = "Cube"
-version = "4.3.2"
-
-homepage = 'http://www.scalasca.org/software/cube-4.x/download.html'
-description = """Cube, which is used as performance report explorer for Scalasca and
- Score-P, is a generic tool for displaying a multi-dimensional performance space
- consisting of the dimensions (i) performance metric, (ii) call path, and (iii) system
- resource. Each dimension can be represented as a tree, where non-leaf nodes of the tree
- can be collapsed or expanded to achieve the desired level of granularity."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://apps.fz-juelich.de/scalasca/releases/cube/%(version_major_minor)s/dist']
-
-checksums = [
- 'a9119524df5a39e7a5bf6dee4de62e30', # cube-4.3.2.tar.gz
-]
-
-dependencies = [('Qt', '4.8.6')]
-
-sanity_check_paths = {
- 'files': ["bin/cube", ("lib/libcube4.a", "lib64/libcube4.a"),
- ("lib/libcube4.%s" % SHLIB_EXT, "lib64/libcube4.%s" % SHLIB_EXT)],
- 'dirs': ["include/cube", "include/cubew"],
-}
-
-moduleclass = 'perf'
diff --git a/easybuild/easyconfigs/__archive__/c/Cuby/Cuby-4-intel-2014b.eb b/easybuild/easyconfigs/__archive__/c/Cuby/Cuby-4-intel-2014b.eb
deleted file mode 100644
index f49b28d34f0..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cuby/Cuby-4-intel-2014b.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-easyblock = "PackedBinary"
-
-name = "Cuby"
-version = '4'
-
-homepage = 'http://cuby.molecular.cz/cuby4/'
-description = """Cuby is a computational chemistry framework written in ruby.
- For users, it provides an unified access to various computational
- methods available in difefrent software packages. For developers,
- Cuby is much more - it is a complex framework that provides
- object-oriented access to the data enetering the calculations and
- to their results, making it easy to create new computational
- protocols by combining existing blocks of the framework."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-# Source can be obtained via http://cuby.molecular.cz/?page=Downloads
-sources = ['cuby4.tgz']
-
-dependencies = [('Ruby', '2.1.5')]
-
-sanity_check_paths = {
- 'files': ['cuby4%s' % x for x in ['', '.rb']],
- 'dirs': ['classes'],
-}
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-1.3.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-1.3.0-goolf-1.4.10.eb
deleted file mode 100644
index 7e5d556bb70..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-1.3.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,45 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'Cufflinks'
-version = "1.3.0"
-
-homepage = 'http://cole-trapnell-lab.github.io/cufflinks/'
-description = """Transcript assembly, differential expression, and differential regulation for RNA-Seq"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://cole-trapnell-lab.github.io/cufflinks/assets/downloads/']
-
-dependencies = [
- ('Boost', '1.51.0', '-Python-2.7.3'),
- ('SAMtools', '0.1.18'),
- ('Eigen', '3.1.1'),
- ('zlib', '1.2.7'),
-]
-
-patches = [
- 'Cufflinks_GCC-4.7.patch',
- 'cufflinks-1.x-ldflags.patch'
-]
-
-preconfigopts = 'env CPPFLAGS="-I$EBROOTEIGEN/include $CPPFLAGS" LDFLAGS="-lboost_system $LDFLAGS" '
-configopts = '--with-boost=$EBROOTBOOST --with-bam-libdir=${EBROOTSAMTOOLS}/lib'
-
-sanity_check_paths = {
- 'files': ['bin/cufflinks'],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.0.2-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.0.2-goolf-1.4.10.eb
deleted file mode 100644
index 4c2199c2b29..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.0.2-goolf-1.4.10.eb
+++ /dev/null
@@ -1,42 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'Cufflinks'
-version = '2.0.2'
-
-homepage = 'http://cole-trapnell-lab.github.io/cufflinks/'
-description = """Transcript assembly, differential expression, and differential regulation for RNA-Seq"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://cole-trapnell-lab.github.io/cufflinks/assets/downloads/']
-
-dependencies = [
- ('Boost', '1.51.0', '-Python-2.7.3'),
- ('SAMtools', '0.1.18'),
- ('Eigen', '3.1.1'),
- ('zlib', '1.2.7'),
-]
-
-patches = ['Cufflinks_GCC-4.7.patch']
-
-configopts = '--with-boost=$EBROOTBOOST --with-bam-libdir=${EBROOTSAMTOOLS}/lib'
-preconfigopts = 'env CPPFLAGS="-I$EBROOTEIGEN/include $CPPFLAGS" LDFLAGS="-lboost_system $LDFLAGS" '
-
-sanity_check_paths = {
- 'files': ['bin/cufflinks'],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.0.2-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.0.2-ictce-5.3.0.eb
deleted file mode 100644
index 0aa76e0d7c3..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.0.2-ictce-5.3.0.eb
+++ /dev/null
@@ -1,44 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# Jens Timmerman (Ghent University)
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'Cufflinks'
-version = '2.0.2'
-
-homepage = 'http://cole-trapnell-lab.github.io/cufflinks/'
-description = """Transcript assembly, differential expression, and differential regulation for RNA-Seq"""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://cole-trapnell-lab.github.io/cufflinks/assets/downloads/']
-
-patches = ['Cufflinks-2.1.1_init-error.patch']
-
-dependencies = [
- ('Boost', '1.51.0', '-Python-2.7.3'),
- ('SAMtools', '0.1.18'),
- ('Eigen', '3.1.1'),
- ('zlib', '1.2.7'),
-]
-
-configopts = '--with-boost=$EBROOTBOOST --with-bam-libdir=${EBROOTSAMTOOLS}/lib'
-configopts += ' --enable-intel64 '
-preconfigopts = 'env CPPFLAGS="-I$EBROOTEIGEN/include $CPPFLAGS" LDFLAGS="-lboost_system $LDFLAGS" '
-
-sanity_check_paths = {
- 'files': ['bin/cufflinks'],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.1.1-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.1.1-ictce-5.5.0.eb
deleted file mode 100644
index 0afef46d296..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.1.1-ictce-5.5.0.eb
+++ /dev/null
@@ -1,43 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# Jens Timmerman (Ghent University)
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'Cufflinks'
-version = '2.1.1'
-
-homepage = 'http://cole-trapnell-lab.github.io/cufflinks/'
-description = """Transcript assembly, differential expression, and differential regulation for RNA-Seq"""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://cole-trapnell-lab.github.io/cufflinks/assets/downloads/']
-
-patches = ['Cufflinks-2.1.1_init-error.patch']
-
-dependencies = [
- ('Boost', '1.55.0', '-Python-2.7.6'),
- ('SAMtools', '0.1.19'),
- ('Eigen', '3.2.0'),
- ('zlib', '1.2.7'),
-]
-
-configopts = '--enable-intel64 --with-boost=$EBROOTBOOST --with-bam-libdir=${EBROOTSAMTOOLS}/lib'
-preconfigopts = 'env CPPFLAGS=-I$EBROOTEIGEN/include'
-
-sanity_check_paths = {
- 'files': ['bin/cufflinks'],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.2.1-foss-2015a.eb b/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.2.1-foss-2015a.eb
deleted file mode 100644
index 6ac33d77d41..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.2.1-foss-2015a.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-name = 'Cufflinks'
-version = '2.2.1'
-
-homepage = 'http://cole-trapnell-lab.github.io/cufflinks/'
-description = """Transcript assembly, differential expression, and differential regulation for RNA-Seq"""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://cole-trapnell-lab.github.io/cufflinks/assets/downloads/']
-
-dependencies = [
- # issues with boost > 1.55, see https://github.com/cole-trapnell-lab/cufflinks/issues/3
- ('Boost', '1.55.0', '-Python-2.7.9'),
- ('SAMtools', '0.1.19'),
- ('Eigen', '3.2.3'),
- ('zlib', '1.2.8'),
-]
-
-preconfigopts = 'env CPPFLAGS=-I$EBROOTEIGEN/include'
-configopts = '--with-boost=$EBROOTBOOST --with-bam-libdir=${EBROOTSAMTOOLS}/lib'
-
-sanity_check_paths = {
- 'files': ['bin/cufflinks'],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.2.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.2.1-goolf-1.4.10.eb
deleted file mode 100644
index e368245a6cd..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.2.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-name = 'Cufflinks'
-version = '2.2.1'
-
-homepage = 'http://cole-trapnell-lab.github.io/cufflinks/'
-description = """Transcript assembly, differential expression, and differential regulation for RNA-Seq"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = ['cufflinks-%(version)s.tar.gz']
-source_urls = ['http://cole-trapnell-lab.github.io/cufflinks/assets/downloads/']
-
-dependencies = [
- ('Boost', '1.51.0', '-Python-2.7.3'),
- ('SAMtools', '0.1.19'),
- ('Eigen', '3.1.1'),
- ('zlib', '1.2.7'),
-]
-
-configopts = '--with-boost=$EBROOTBOOST --with-bam-libdir=${EBROOTSAMTOOLS}/lib'
-preconfigopts = 'env CPPFLAGS="-I$EBROOTEIGEN/include $CPPFLAGS" LDFLAGS="-lboost_system $LDFLAGS" '
-
-sanity_check_paths = {
- 'files': ['bin/cufflinks'],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.2.1-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.2.1-goolf-1.7.20.eb
deleted file mode 100644
index fe15c228e17..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.2.1-goolf-1.7.20.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-name = 'Cufflinks'
-version = '2.2.1'
-
-homepage = 'http://cole-trapnell-lab.github.io/cufflinks/'
-description = """Transcript assembly, differential expression, and differential regulation for RNA-Seq"""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = ['cufflinks-%(version)s.tar.gz']
-source_urls = ['http://cole-trapnell-lab.github.io/cufflinks/assets/downloads/']
-
-dependencies = [
- ('Boost', '1.55.0'),
- ('SAMtools', '0.1.19'),
- ('Eigen', '3.2.6'),
- ('zlib', '1.2.8'),
-]
-
-configopts = '--with-boost=$EBROOTBOOST --with-bam-libdir=${EBROOTSAMTOOLS}/lib'
-preconfigopts = 'env CPPFLAGS="-I$EBROOTEIGEN/include $CPPFLAGS" LDFLAGS="-lboost_system $LDFLAGS" '
-
-sanity_check_paths = {
- 'files': ['bin/cufflinks'],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.2.1-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.2.1-intel-2015a.eb
deleted file mode 100644
index 50fce481a6c..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.2.1-intel-2015a.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-name = 'Cufflinks'
-version = '2.2.1'
-
-homepage = 'http://cole-trapnell-lab.github.io/cufflinks/'
-description = """Transcript assembly, differential expression, and differential regulation for RNA-Seq"""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://cole-trapnell-lab.github.io/cufflinks/assets/downloads/']
-
-dependencies = [
- # issues with boost > 1.55, see https://github.com/cole-trapnell-lab/cufflinks/issues/3
- ('Boost', '1.55.0', '-Python-2.7.8'),
- ('SAMtools', '0.1.19'),
- ('Eigen', '3.2.3'),
- ('zlib', '1.2.8'),
-]
-
-configopts = '--enable-intel64 --with-boost=$EBROOTBOOST --with-bam-libdir=${EBROOTSAMTOOLS}/lib'
-preconfigopts = 'env CPPFLAGS=-I$EBROOTEIGEN/include'
-
-sanity_check_paths = {
- 'files': ['bin/cufflinks'],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.2.1-intel-2015b-Python-2.7.10-Boost-1.59.0.eb b/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.2.1-intel-2015b-Python-2.7.10-Boost-1.59.0.eb
deleted file mode 100644
index 8360322002f..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cufflinks/Cufflinks-2.2.1-intel-2015b-Python-2.7.10-Boost-1.59.0.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-name = 'Cufflinks'
-version = '2.2.1'
-
-homepage = 'http://cole-trapnell-lab.github.io/cufflinks/'
-description = """Transcript assembly, differential expression, and differential regulation for RNA-Seq"""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://cole-trapnell-lab.github.io/cufflinks/assets/downloads/']
-
-pyver = '2.7.10'
-boostver = '1.59.0'
-versionsuffix = '-Python-%s-Boost-%s' % (pyver, boostver)
-dependencies = [
- ('Boost', boostver, '-Python-%s' % pyver),
- ('SAMtools', '0.1.20'),
- ('Eigen', '3.2.7'),
- ('zlib', '1.2.8'),
-]
-
-configopts = '--enable-intel64 --with-boost=$EBROOTBOOST --with-bam-libdir=${EBROOTSAMTOOLS}/lib'
-preconfigopts = 'env CPPFLAGS=-I${EBROOTEIGEN}/include'
-
-sanity_check_paths = {
- 'files': ['bin/cufflinks'],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/Cython/Cython-0.16-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/c/Cython/Cython-0.16-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index e22250c9905..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cython/Cython-0.16-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'Cython'
-version = '0.16'
-
-homepage = 'https://pypi.python.org/pypi/Cython/'
-description = """The Cython language makes writing C extensions for the Python language as easy as Python itself.
- Cython is a source code translator based on the well-known Pyrex, but supports more cutting edge functionality and
- optimizations."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-python = 'Python'
-pythonver = '2.7.3'
-pythonshortver = '.'.join(pythonver.split('.')[0:2])
-pylibdir = 'lib/python%s/site-packages' % pythonshortver
-versionsuffix = '-%s-%s' % (python, pythonver)
-
-dependencies = [(python, pythonver)]
-
-sanity_check_paths = {
- 'files': ['bin/cygdb', 'bin/cython', '%s/%%(namelower)s.py' % pylibdir],
- 'dirs': ['%s/%%(name)s' % pylibdir],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/c/Cython/Cython-0.16-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/c/Cython/Cython-0.16-ictce-5.3.0-Python-2.7.3.eb
deleted file mode 100644
index 33b4c1bc5be..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cython/Cython-0.16-ictce-5.3.0-Python-2.7.3.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'Cython'
-version = '0.16'
-
-homepage = 'https://pypi.python.org/pypi/Cython/'
-description = """The Cython language makes writing C extensions for the Python language as easy as Python itself.
- Cython is a source code translator based on the well-known Pyrex, but supports more cutting edge functionality and
- optimizations."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-python = 'Python'
-pythonver = '2.7.3'
-pythonshortver = '.'.join(pythonver.split('.')[0:2])
-pylibdir = 'lib/python%s/site-packages' % pythonshortver
-versionsuffix = '-%s-%s' % (python, pythonver)
-
-dependencies = [(python, pythonver)]
-
-sanity_check_paths = {
- 'files': ['bin/cygdb', 'bin/cython', '%s/%%(namelower)s.py' % pylibdir],
- 'dirs': ['%s/%%(name)s' % pylibdir],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/c/Cython/Cython-0.19.1-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/c/Cython/Cython-0.19.1-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index ec51d696a01..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cython/Cython-0.19.1-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'Cython'
-version = '0.19.1'
-
-homepage = 'https://pypi.python.org/pypi/Cython/'
-description = """The Cython language makes writing C extensions for the Python language as easy as Python itself.
- Cython is a source code translator based on the well-known Pyrex, but supports more cutting edge functionality and
- optimizations."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-python = 'Python'
-pythonver = '2.7.3'
-pythonshortver = '.'.join(pythonver.split('.')[0:2])
-pylibdir = 'lib/python%s/site-packages' % pythonshortver
-versionsuffix = '-%s-%s' % (python, pythonver)
-
-dependencies = [(python, pythonver)]
-
-sanity_check_paths = {
- 'files': ['bin/cygdb', 'bin/cython', '%s/%%(namelower)s.py' % pylibdir],
- 'dirs': ['%s/%%(name)s' % pylibdir],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/c/Cython/Cython-0.19.1-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/c/Cython/Cython-0.19.1-ictce-5.3.0-Python-2.7.3.eb
deleted file mode 100644
index 1cdbf2c1fc7..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cython/Cython-0.19.1-ictce-5.3.0-Python-2.7.3.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'Cython'
-version = '0.19.1'
-
-homepage = 'https://pypi.python.org/pypi/Cython/'
-description = """The Cython language makes writing C extensions for the Python language as easy as Python itself.
- Cython is a source code translator based on the well-known Pyrex, but supports more cutting edge functionality and
- optimizations."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-python = 'Python'
-pythonver = '2.7.3'
-pythonshortver = '.'.join(pythonver.split('.')[0:2])
-pylibdir = 'lib/python%s/site-packages' % pythonshortver
-versionsuffix = '-%s-%s' % (python, pythonver)
-
-dependencies = [(python, pythonver)]
-
-sanity_check_paths = {
- 'files': ['bin/cygdb', 'bin/cython', '%s/%%(namelower)s.py' % pylibdir],
- 'dirs': ['%s/%%(name)s' % pylibdir],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/c/Cython/Cython-0.19.2-ictce-5.5.0-Python-2.7.6.eb b/easybuild/easyconfigs/__archive__/c/Cython/Cython-0.19.2-ictce-5.5.0-Python-2.7.6.eb
deleted file mode 100644
index 8494b353e53..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cython/Cython-0.19.2-ictce-5.5.0-Python-2.7.6.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'Cython'
-version = '0.19.2'
-
-homepage = 'https://pypi.python.org/pypi/Cython/'
-description = """The Cython language makes writing C extensions for the Python language as easy as Python itself.
- Cython is a source code translator based on the well-known Pyrex, but supports more cutting edge functionality and
- optimizations."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-python = 'Python'
-pythonver = '2.7.6'
-pythonshortver = '.'.join(pythonver.split('.')[0:2])
-pylibdir = 'lib/python%s/site-packages' % pythonshortver
-versionsuffix = '-%s-%s' % (python, pythonver)
-
-dependencies = [(python, pythonver)]
-
-sanity_check_paths = {
- 'files': ['bin/cygdb', 'bin/cython', '%s/%%(namelower)s.py' % pylibdir],
- 'dirs': ['%s/%%(name)s' % pylibdir],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/c/Cython/Cython-0.22-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/c/Cython/Cython-0.22-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index 769f55ce72a..00000000000
--- a/easybuild/easyconfigs/__archive__/c/Cython/Cython-0.22-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'Cython'
-version = '0.22'
-
-homepage = 'https://pypi.python.org/pypi/Cython/'
-description = """The Cython language makes writing C extensions for the Python language as easy as Python itself.
-Cython is a source code translator based on the well-known Pyrex, but supports more cutting edge functionality and
- optimizations."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-
-python = 'Python'
-pythonver = '2.7.3'
-versionsuffix = '-%s-%s' % (python, pythonver)
-pyshortver = '.'.join(pythonver.split('.')[0:2])
-cythonlibdir = 'lib/python' + pyshortver + '/site-packages/Cython-%(version)s-py' + pyshortver + '-linux-x86_64.egg'
-
-dependencies = [(python, pythonver)]
-
-sanity_check_paths = {
- 'files': ['bin/cygdb', 'bin/cython', '%s/%%(namelower)s.py' % cythonlibdir],
- 'dirs': ['%s/%%(name)s' % cythonlibdir],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.27.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.27.0-goolf-1.4.10.eb
deleted file mode 100644
index c54c318c31d..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.27.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.27.0'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
-supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
-POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
-SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
-proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
-Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-dependencies = [('OpenSSL', '1.0.1f')]
-
-configopts = "--with-ssl=$EBROOTOPENSSL"
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.27.0-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.27.0-ictce-5.3.0.eb
deleted file mode 100644
index c76a4c33d25..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.27.0-ictce-5.3.0.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.27.0'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-dependencies = [('OpenSSL', '1.0.1f')]
-
-configopts = "--with-ssl=$EBROOTOPENSSL"
-
-sanity_check_paths = {
- 'files': ["bin/curl", "lib/libcurl.a", "lib/libcurl.%s" % SHLIB_EXT],
- 'dirs': ["lib/pkgconfig"],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.28.1-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.28.1-ictce-5.3.0.eb
deleted file mode 100644
index 74e6839e575..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.28.1-ictce-5.3.0.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.28.1'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-dependencies = [('OpenSSL', '1.0.1f')]
-
-configopts = "--with-ssl=$EBROOTOPENSSL"
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.29.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.29.0-goolf-1.4.10.eb
deleted file mode 100644
index 307fbc0b46a..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.29.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.29.0'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
-supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
-POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
-SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
-proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
-Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-dependencies = [('OpenSSL', '1.0.1f')]
-
-configopts = "--with-ssl=$EBROOTOPENSSL"
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.33.0-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.33.0-ictce-5.3.0.eb
deleted file mode 100644
index 237b0c17fd5..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.33.0-ictce-5.3.0.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.33.0'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-dependencies = [('OpenSSL', '1.0.1f')]
-
-configopts = "--with-ssl=$EBROOTOPENSSL"
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.34.0-ictce-5.4.0.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.34.0-ictce-5.4.0.eb
deleted file mode 100644
index b4f8554c2a9..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.34.0-ictce-5.4.0.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.34.0'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'ictce', 'version': '5.4.0'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-dependencies = [('OpenSSL', '1.0.1f')]
-
-configopts = "--with-ssl=$EBROOTOPENSSL"
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.34.0-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.34.0-ictce-5.5.0.eb
deleted file mode 100644
index 5e5a9834c56..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.34.0-ictce-5.5.0.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.34.0'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-dependencies = [('OpenSSL', '1.0.1f')]
-
-configopts = "--with-ssl=$EBROOTOPENSSL"
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.37.1-foss-2014b.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.37.1-foss-2014b.eb
deleted file mode 100644
index 8b024b363bd..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.37.1-foss-2014b.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.37.1'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'foss', 'version': '2014b'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-# dependencies = [('OpenSSL', '1.0.1i')] # OS dependency should be preferred for security reasons
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.37.1-foss-2015a.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.37.1-foss-2015a.eb
deleted file mode 100644
index 6036dce5c2e..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.37.1-foss-2015a.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.37.1'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-# dependencies = [('OpenSSL', '1.0.1i')] # OS dependency should be preferred for security reasons
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.37.1-intel-2014b.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.37.1-intel-2014b.eb
deleted file mode 100644
index 196d06a19d1..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.37.1-intel-2014b.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.37.1'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-# dependencies = [('OpenSSL', '1.0.1i')] # OS dependency should be preferred for security reasons
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.37.1-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.37.1-intel-2015a.eb
deleted file mode 100644
index 119999d59e9..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.37.1-intel-2015a.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.37.1'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-# dependencies = [('OpenSSL', '1.0.1i')] # OS dependency should be preferred for security reasons
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.40.0-foss-2015a.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.40.0-foss-2015a.eb
deleted file mode 100644
index 56b0b57ed69..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.40.0-foss-2015a.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.40.0'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.40.0-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.40.0-intel-2015a.eb
deleted file mode 100644
index 456fa99decd..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.40.0-intel-2015a.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.40.0'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-# dependencies = [('OpenSSL', '1.0.1k')]
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-# configopts = "--with-ssl=$EBROOTOPENSSL"
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.41.0-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.41.0-intel-2015a.eb
deleted file mode 100644
index 6b26369841e..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.41.0-intel-2015a.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.41.0'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-# dependencies = [('OpenSSL', '1.0.1m')]
-# configopts = "--with-ssl=$EBROOTOPENSSL"
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.43.0-foss-2015b.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.43.0-foss-2015b.eb
deleted file mode 100644
index 8268a960ae5..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.43.0-foss-2015b.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.43.0'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-# dependencies = [('OpenSSL', '1.0.1p')]
-# configopts = "--with-ssl=$EBROOTOPENSSL"
-
-modextravars = {'CURL_INCLUDES': '%(installdir)s/include'}
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.43.0-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.43.0-goolf-1.7.20.eb
deleted file mode 100644
index 4d9fde4e6a1..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.43.0-goolf-1.7.20.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.43.0'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-# dependencies = [('OpenSSL', '1.0.1p')]
-# configopts = "--with-ssl=$EBROOTOPENSSL"
-
-modextravars = {'CURL_INCLUDES': '%(installdir)s/include'}
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.43.0-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.43.0-intel-2015a.eb
deleted file mode 100644
index e923765cebf..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.43.0-intel-2015a.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.43.0'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-# dependencies = [('OpenSSL', '1.0.1p')]
-# configopts = "--with-ssl=$EBROOTOPENSSL"
-
-modextravars = {'CURL_INCLUDES': '%(installdir)s/include'}
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.43.0-intel-2015b.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.43.0-intel-2015b.eb
deleted file mode 100644
index 8f64671269f..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.43.0-intel-2015b.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.43.0'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-# dependencies = [('OpenSSL', '1.0.1p')]
-# configopts = "--with-ssl=$EBROOTOPENSSL"
-
-modextravars = {'CURL_INCLUDES': '%(installdir)s/include'}
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.44.0-foss-2015a.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.44.0-foss-2015a.eb
deleted file mode 100644
index 494501aa008..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.44.0-foss-2015a.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.44.0'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-# dependencies = [('OpenSSL', '1.0.1p')]
-# configopts = "--with-ssl=$EBROOTOPENSSL"
-
-modextravars = {'CURL_INCLUDES': '%(installdir)s/include'}
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.44.0-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.44.0-goolf-1.7.20.eb
deleted file mode 100644
index ea4746a629d..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.44.0-goolf-1.7.20.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.44.0'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-# dependencies = [('OpenSSL', '1.0.1p')]
-# configopts = "--with-ssl=$EBROOTOPENSSL"
-
-modextravars = {'CURL_INCLUDES': '%(installdir)s/include'}
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.44.0-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.44.0-intel-2015a.eb
deleted file mode 100644
index 07fc16413e7..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.44.0-intel-2015a.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.44.0'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-# dependencies = [('OpenSSL', '1.0.1p')]
-# configopts = "--with-ssl=$EBROOTOPENSSL"
-
-modextravars = {'CURL_INCLUDES': '%(installdir)s/include'}
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.45.0-foss-2015b.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.45.0-foss-2015b.eb
deleted file mode 100644
index dad17a39447..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.45.0-foss-2015b.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.45.0'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-# dependencies = [('OpenSSL', '1.0.1p')]
-# configopts = "--with-ssl=$EBROOTOPENSSL"
-
-modextravars = {'CURL_INCLUDES': '%(installdir)s/include'}
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.so'],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.45.0-intel-2015b.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.45.0-intel-2015b.eb
deleted file mode 100644
index e8f4cf17fa5..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.45.0-intel-2015b.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.45.0'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-# dependencies = [('OpenSSL', '1.0.1p')]
-# configopts = "--with-ssl=$EBROOTOPENSSL"
-
-modextravars = {'CURL_INCLUDES': '%(installdir)s/include'}
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.46.0-foss-2015a.eb b/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.46.0-foss-2015a.eb
deleted file mode 100644
index db4a8f58260..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cURL/cURL-7.46.0-foss-2015a.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cURL'
-version = '7.46.0'
-
-homepage = 'http://curl.haxx.se'
-description = """libcurl is a free and easy-to-use client-side URL transfer library,
- supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS,
- POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports
- SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,
- proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate,
- Kerberos), file transfer resume, http proxy tunneling and more."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://curl.haxx.se/download/']
-
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-# dependencies = [('OpenSSL', '1.0.1p')]
-# configopts = "--with-ssl=$EBROOTOPENSSL"
-
-modextravars = {'CURL_INCLUDES': '%(installdir)s/include'}
-
-sanity_check_paths = {
- 'files': ['bin/curl', 'lib/libcurl.a', 'lib/libcurl.%s' % SHLIB_EXT],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.12.14-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.12.14-goolf-1.4.10.eb
deleted file mode 100644
index 4d208e316fe..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.12.14-goolf-1.4.10.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = "cairo"
-version = '1.12.14'
-
-homepage = 'http://cairographics.org'
-description = """Cairo is a 2D graphics library with support for multiple output devices.
-Currently supported output targets include the X Window System (via both Xlib and XCB), Quartz, Win32, image buffers,
-PostScript, PDF, and SVG file output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://cairographics.org/releases/']
-sources = [SOURCE_TAR_XZ]
-
-dependencies = [
- ('libpng', '1.5.14'),
- ('freetype', '2.4.11'),
- ('zlib', '1.2.7'),
- ('pixman', '0.28.2'),
- ('fontconfig', '2.10.91'),
- ('expat', '2.1.0'),
- ('bzip2', '1.0.6'),
-]
-
-# disable symbol lookup, which requires -lbfd, to avoid link issues with (non-PIC) libiberty.a provided by GCC
-configopts = "--enable-symbol-lookup=no"
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.12.18-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.12.18-goolf-1.7.20.eb
deleted file mode 100644
index 3638dbedbc6..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.12.18-goolf-1.7.20.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = "cairo"
-version = '1.12.18'
-
-homepage = 'http://cairographics.org'
-description = """Cairo is a 2D graphics library with support for multiple output devices.
- Currently supported output targets include the X Window System (via both Xlib and XCB), Quartz, Win32, image buffers,
- PostScript, PDF, and SVG file output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB"""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = ['http://cairographics.org/releases/']
-sources = [SOURCE_TAR_XZ]
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('libpng', '1.6.12'),
- ('freetype', '2.5.3'),
- ('pixman', '0.32.6'),
- ('fontconfig', '2.11.1'),
- ('expat', '2.1.0'),
-]
-
-# disable symbol lookup, which requires -lbfd, to avoid link issues with (non-PIC) libiberty.a provided by GCC
-configopts = "--enable-symbol-lookup=no"
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.12.18-intel-2014b.eb b/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.12.18-intel-2014b.eb
deleted file mode 100644
index 6f945ad25be..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.12.18-intel-2014b.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = "cairo"
-version = '1.12.18'
-
-homepage = 'http://cairographics.org'
-description = """Cairo is a 2D graphics library with support for multiple output devices.
-Currently supported output targets include the X Window System (via both Xlib and XCB), Quartz, Win32, image buffers,
-PostScript, PDF, and SVG file output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB"""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = ['http://cairographics.org/releases/']
-sources = [SOURCE_TAR_XZ]
-
-dependencies = [
- ('libpng', '1.6.12'),
- ('freetype', '2.5.3'),
- ('zlib', '1.2.8'),
- ('pixman', '0.32.6'),
- ('fontconfig', '2.11.1'),
- ('expat', '2.1.0'),
- ('bzip2', '1.0.6'),
-]
-
-# disable symbol lookup, which requires -lbfd, to avoid link issues with (non-PIC) libiberty.a provided by GCC
-configopts = "--enable-symbol-lookup=no"
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.12.18-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.12.18-intel-2015a.eb
deleted file mode 100644
index c4afd6154b5..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.12.18-intel-2015a.eb
+++ /dev/null
@@ -1,35 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = "cairo"
-version = '1.12.18'
-
-homepage = 'http://cairographics.org'
-description = """Cairo is a 2D graphics library with support for multiple output devices.
-Currently supported output targets include the X Window System (via both Xlib and XCB), Quartz, Win32, image buffers,
-PostScript, PDF, and SVG file output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB"""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://cairographics.org/releases/']
-sources = [SOURCE_TAR_XZ]
-
-dependencies = [
- ('libpng', '1.6.16'),
- ('freetype', '2.5.5'),
- ('zlib', '1.2.8'),
- ('pixman', '0.32.6'),
- ('fontconfig', '2.11.1'),
- ('expat', '2.1.0'),
- ('bzip2', '1.0.6'),
-]
-
-builddependencies = [('Autotools', '20150119', '', ('GCC', '4.9.2'))]
-
-patches = ['cairo-1.12.18-pthread-check.patch']
-
-preconfigopts = " autoconf configure.ac > configure && "
-
-# disable symbol lookup, which requires -lbfd, to avoid link issues with (non-PIC) libiberty.a provided by GCC
-configopts = "--enable-symbol-lookup=no"
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.14.2-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.14.2-goolf-1.7.20.eb
deleted file mode 100644
index 63d09e359a4..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.14.2-goolf-1.7.20.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = "cairo"
-version = '1.14.2'
-
-homepage = 'http://cairographics.org'
-description = """Cairo is a 2D graphics library with support for multiple output devices.
- Currently supported output targets include the X Window System (via both Xlib and XCB), Quartz, Win32, image buffers,
- PostScript, PDF, and SVG file output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB"""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = ['http://cairographics.org/releases/']
-sources = [SOURCE_TAR_XZ]
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('libpng', '1.6.17'),
- ('freetype', '2.6'),
- ('pixman', '0.32.6'),
- ('fontconfig', '2.11.94'),
- ('expat', '2.1.0'),
-]
-
-# disable symbol lookup, which requires -lbfd, to avoid link issues with (non-PIC) libiberty.a provided by GCC
-configopts = "--enable-symbol-lookup=no"
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.14.2-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.14.2-intel-2015a.eb
deleted file mode 100644
index 357e47a331c..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.14.2-intel-2015a.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = "cairo"
-version = '1.14.2'
-
-homepage = 'http://cairographics.org'
-description = """Cairo is a 2D graphics library with support for multiple output devices.
- Currently supported output targets include the X Window System (via both Xlib and XCB), Quartz, Win32, image buffers,
- PostScript, PDF, and SVG file output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB"""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://cairographics.org/releases/']
-sources = [SOURCE_TAR_XZ]
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('libpng', '1.6.17'),
- ('freetype', '2.6'),
- ('pixman', '0.32.6'),
- ('fontconfig', '2.11.94'),
- ('expat', '2.1.0'),
-]
-
-# disable symbol lookup, which requires -lbfd, to avoid link issues with (non-PIC) libiberty.a provided by GCC
-configopts = "--enable-symbol-lookup=no"
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.14.2-intel-2015b.eb b/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.14.2-intel-2015b.eb
deleted file mode 100644
index a9b98a3bc55..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.14.2-intel-2015b.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cairo'
-version = '1.14.2'
-
-homepage = 'http://cairographics.org'
-description = """Cairo is a 2D graphics library with support for multiple output devices.
- Currently supported output targets include the X Window System (via both Xlib and XCB), Quartz, Win32, image buffers,
- PostScript, PDF, and SVG file output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB"""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['http://cairographics.org/releases/']
-sources = [SOURCE_TAR_XZ]
-
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('libpng', '1.6.18'),
- ('freetype', '2.6.1'),
- ('pixman', '0.32.8'),
- ('fontconfig', '2.11.94'),
- ('expat', '2.1.0'),
-]
-
-# disable symbol lookup, which requires -lbfd, to avoid link issues with (non-PIC) libiberty.a provided by GCC
-configopts = "--enable-symbol-lookup=no"
-
-# workaround for "hidden symbol .* in .* is referenced by DSO" and "ld: final link failed: Bad value"
-buildopts = 'LD="$CC" LDFLAGS="$LDFLAGS -shared-intel"'
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.14.4-intel-2015b.eb b/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.14.4-intel-2015b.eb
deleted file mode 100644
index eb215f92b00..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cairo/cairo-1.14.4-intel-2015b.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'cairo'
-version = '1.14.4'
-
-homepage = 'http://cairographics.org'
-description = """Cairo is a 2D graphics library with support for multiple output devices.
- Currently supported output targets include the X Window System (via both Xlib and XCB), Quartz, Win32, image buffers,
- PostScript, PDF, and SVG file output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB"""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['http://cairographics.org/releases/']
-sources = [SOURCE_TAR_XZ]
-
-libpngver = '1.6.19'
-dependencies = [
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.8'),
- ('libpng', libpngver),
- ('freetype', '2.6.1', '-libpng-%s' % libpngver),
- ('pixman', '0.32.8'),
- ('fontconfig', '2.11.94', '-libpng-%s' % libpngver),
- ('expat', '2.1.0'),
-]
-
-# disable symbol lookup, which requires -lbfd, to avoid link issues with (non-PIC) libiberty.a provided by GCC
-configopts = "--enable-symbol-lookup=no"
-
-# workaround for "hidden symbol .* in .* is referenced by DSO" and "ld: final link failed: Bad value"
-buildopts = 'LD="$CC" LDFLAGS="$LDFLAGS -shared-intel"'
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/c/cairomm/cairomm-1.10.0-intel-2015a.eb b/easybuild/easyconfigs/__archive__/c/cairomm/cairomm-1.10.0-intel-2015a.eb
deleted file mode 100644
index c3d9dd1f282..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cairomm/cairomm-1.10.0-intel-2015a.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = "cairomm"
-version = '1.10.0'
-
-homepage = 'http://cairographics.org'
-description = """
- The Cairomm package provides a C++ interface to Cairo.
-"""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://cairographics.org/releases/']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [
- ('cairo', '1.14.2'),
- ('libsigc++', '2.4.1'),
-]
-
-sanity_check_paths = {
- 'files': ['lib/libcairomm-1.0.%s' % SHLIB_EXT],
- 'dirs': [],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/c/cairomm/cairomm-1.10.0-intel-2015b.eb b/easybuild/easyconfigs/__archive__/c/cairomm/cairomm-1.10.0-intel-2015b.eb
deleted file mode 100644
index 8cd26b8a00b..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cairomm/cairomm-1.10.0-intel-2015b.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = "cairomm"
-version = '1.10.0'
-
-homepage = 'http://cairographics.org'
-description = """
- The Cairomm package provides a C++ interface to Cairo.
-"""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['http://cairographics.org/releases/']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [
- ('cairo', '1.14.2'),
- ('libsigc++', '2.4.1'),
-]
-
-sanity_check_paths = {
- 'files': ['lib/libcairomm-1.0.%s' % SHLIB_EXT],
- 'dirs': [],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/c/ccache/ccache-3.1.9-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/ccache/ccache-3.1.9-goolf-1.4.10.eb
deleted file mode 100644
index 97cad490a6c..00000000000
--- a/easybuild/easyconfigs/__archive__/c/ccache/ccache-3.1.9-goolf-1.4.10.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'ccache'
-version = '3.1.9'
-
-homepage = 'http://ccache.samba.org/'
-description = """ccache-3.1.9: Cache for C/C++ compilers"""
-
-sources = [SOURCE_TAR_GZ]
-source_urls = ['http://samba.org/ftp/ccache/']
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sanity_check_paths = {
- 'files': ['bin/ccache'],
- 'dirs': []
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/ccache/ccache-3.1.9-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/c/ccache/ccache-3.1.9-ictce-5.3.0.eb
deleted file mode 100644
index 98555a7a7aa..00000000000
--- a/easybuild/easyconfigs/__archive__/c/ccache/ccache-3.1.9-ictce-5.3.0.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'ccache'
-version = '3.1.9'
-
-homepage = 'http://ccache.samba.org/'
-description = """ccache-3.1.9: Cache for C/C++ compilers"""
-
-sources = [SOURCE_TAR_GZ]
-source_urls = ['http://samba.org/ftp/ccache/']
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sanity_check_paths = {
- 'files': ['bin/ccache'],
- 'dirs': []
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cflow/cflow-1.4-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/cflow/cflow-1.4-goolf-1.4.10.eb
deleted file mode 100644
index a04ee2f9d79..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cflow/cflow-1.4-goolf-1.4.10.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'cflow'
-version = '1.4'
-altversions = ['1.3', '1.4']
-
-homepage = 'http://www.gnu.org/software/cflow/'
-description = """cflow-1.4: Code-path flow analyzer for C"""
-
-sources = [SOURCE_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sanity_check_paths = {
- 'files': ['bin/cflow'],
- 'dirs': []
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cflow/cflow-1.4-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/c/cflow/cflow-1.4-ictce-5.3.0.eb
deleted file mode 100644
index 30c2c7c6154..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cflow/cflow-1.4-ictce-5.3.0.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'cflow'
-version = '1.4'
-altversions = ['1.3', '1.4']
-
-homepage = 'http://www.gnu.org/software/cflow/'
-description = """cflow-1.4: Code-path flow analyzer for C"""
-
-sources = [SOURCE_TAR_GZ]
-source_urls = [GNU_SOURCE]
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sanity_check_paths = {
- 'files': ['bin/cflow'],
- 'dirs': []
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/cgdb/cgdb-0.6.5-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/c/cgdb/cgdb-0.6.5-goolf-1.4.10.eb
deleted file mode 100644
index 2c027621e88..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cgdb/cgdb-0.6.5-goolf-1.4.10.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'cgdb'
-version = '0.6.5'
-
-homepage = 'http://cgdb.sourceforge.net/'
-description = """cgdb-0.6.5: Curses-based interface to the GNU Debugger GDB """
-
-sources = [SOURCE_TAR_GZ]
-source_urls = ['http://sourceforge.net/projects/cgdb/files', 'download']
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-dependencies = [
- ('ncurses', '5.9'),
- ('libreadline', '6.2')
-]
-
-sanity_check_paths = {
- 'files': ['bin/cgdb'],
- 'dirs': []
-}
-
-moduleclass = 'debugger'
diff --git a/easybuild/easyconfigs/__archive__/c/cgdb/cgdb-0.6.5-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/c/cgdb/cgdb-0.6.5-ictce-5.3.0.eb
deleted file mode 100644
index fe9db263243..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cgdb/cgdb-0.6.5-ictce-5.3.0.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'cgdb'
-version = '0.6.5'
-
-homepage = 'http://cgdb.sourceforge.net/'
-description = """cgdb-0.6.5: Curses-based interface to the GNU Debugger GDB """
-
-sources = [SOURCE_TAR_GZ]
-source_urls = ['http://sourceforge.net/projects/cgdb/files', 'download']
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-dependencies = [
- ('ncurses', '5.9'),
- ('libreadline', '6.2')
-]
-
-sanity_check_paths = {
- 'files': ['bin/cgdb'],
- 'dirs': []
-}
-
-moduleclass = 'debugger'
diff --git a/easybuild/easyconfigs/__archive__/c/charmm/charmm-43b2-foss-2017b.eb b/easybuild/easyconfigs/__archive__/c/charmm/charmm-43b2-foss-2017b.eb
deleted file mode 100644
index 082f30332f5..00000000000
--- a/easybuild/easyconfigs/__archive__/c/charmm/charmm-43b2-foss-2017b.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-# This easyconfig files builds charmm, the free version of CHARMM
-# charmm provides all the functionality of CHARMM except its performance enhancements
-# See https://www.charmm.org for naming convention
-
-easyblock = 'EB_CHARMM'
-
-name = 'charmm'
-version = '43b2'
-
-homepage = "http://www.charmm.org"
-description = """CHARMM (Chemistry at HARvard Macromolecular Mechanics) is a versatile
-and widely used molecular simulation program with broad application to many-particle systems.
-charmm provides all the functionality of CHARMM except its performance enhancements."""
-
-toolchain = {'name': 'foss', 'version': '2017b'}
-toolchainopts = {'usempi': True, 'opt': True}
-
-# Request the download link from http://charmm.chemistry.harvard.edu/request_license.php?version=charmm
-# and rename the file with the latest version reported in the ChangeLogs directory
-sources = ["charmm-c%(version)s.tar.gz"]
-patches = ["charmm-43b2_Use_xhost.patch"]
-checksums = [
- 'de0d5e2fa8508c73292355918b2bc43eef44c5b6bcae050848862400b64e51f8', # charmm-c43b2.tar.gz
- '3b1f1ac371578d9bd814bf4ac223b839ac293ae3aa6156611beba26b2dc25163', # charmm-43b2_Use_xhost.patch
-]
-
-# MKL activated automatically when the intel toolchain is used
-# DOMDEC is not supported by (free) charmm
-build_options = "FULL COLFFT PIPF -CMPI"
-
-# Choose from: huge, xxlarge, xlarge, large, medium (the default), small, xsmall, reduce
-system_size = "medium"
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/charmm/charmm-43b2-intel-2017b.eb b/easybuild/easyconfigs/__archive__/c/charmm/charmm-43b2-intel-2017b.eb
deleted file mode 100644
index d305d95e55a..00000000000
--- a/easybuild/easyconfigs/__archive__/c/charmm/charmm-43b2-intel-2017b.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-# This easyconfig files builds charmm, the free version of CHARMM
-# charmm provides all the functionality of CHARMM except its performance enhancements
-# See https://www.charmm.org for naming convention
-
-easyblock = 'EB_CHARMM'
-
-name = 'charmm'
-version = '43b2'
-
-homepage = "http://www.charmm.org"
-description = """CHARMM (Chemistry at HARvard Macromolecular Mechanics) is a versatile
-and widely used molecular simulation program with broad application to many-particle systems.
-charmm provides all the functionality of CHARMM except its performance enhancements."""
-
-toolchain = {'name': 'intel', 'version': '2017b'}
-toolchainopts = {'usempi': True, 'opt': True}
-
-# Request the download link from http://charmm.chemistry.harvard.edu/request_license.php?version=charmm
-# and rename the file with the latest version reported in the ChangeLogs directory
-sources = ["charmm-c%(version)s.tar.gz"]
-patches = ["charmm-43b2_Use_xhost.patch"]
-checksums = [
- 'de0d5e2fa8508c73292355918b2bc43eef44c5b6bcae050848862400b64e51f8', # charmm-c43b2.tar.gz
- '3b1f1ac371578d9bd814bf4ac223b839ac293ae3aa6156611beba26b2dc25163', # charmm-43b2_Use_xhost.patch
-]
-
-# Ensure that mpiifort is used instead of mpif90
-prebuildopts = 'MPIIFORT=YES'
-
-# MKL activated automatically when the intel toolchain is used
-# DOMDEC is not supported by (free) charmm
-build_options = "FULL COLFFT PIPF -CMPI"
-
-# Choose from: huge, xxlarge, xlarge, large, medium (the default), small, xsmall, reduce
-system_size = "medium"
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/c/charmm/charmm-43b2_Use_xhost.patch b/easybuild/easyconfigs/__archive__/c/charmm/charmm-43b2_Use_xhost.patch
deleted file mode 100644
index 77ad335588e..00000000000
--- a/easybuild/easyconfigs/__archive__/c/charmm/charmm-43b2_Use_xhost.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-# Use the optimization options from EasyBuild
-# Davide Vanzo (Vanderbilt University)
-diff -ru charmm.orig/build/UNX/Makefile_em64t charmm/build/UNX/Makefile_em64t
---- charmm.orig/build/UNX/Makefile_em64t 2019-04-16 15:08:16.873426458 -0500
-+++ charmm/build/UNX/Makefile_em64t 2019-04-16 15:09:31.909428534 -0500
-@@ -88,8 +88,8 @@
-
- FC0 = $(FC) -c -O0 -free -fp-model strict
- FC1 = $(FC) -c -O1 -free -fp-model strict
--FC2 = $(FC) -c -O3 -mp1 -axSSE4.1 -free -fp-model strict
--FC3 = $(FC) -c -O3 -mp1 -axSSE4.1 -free -fp-model strict
-+FC2 = $(FC) -c -mp1 -free $(F90FLAGS)
-+FC3 = $(FC) -c -mp1 -free $(F90FLAGS)
- FCR = $(FC) -c -u -V -free -fp-model strict
- FCD = $(FC) -c -g -O0 -u -traceback -free
-
diff --git a/easybuild/easyconfigs/__archive__/c/coevol/coevol-20180201-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/c/coevol/coevol-20180201-goolf-1.7.20.eb
deleted file mode 100644
index f66278bef7a..00000000000
--- a/easybuild/easyconfigs/__archive__/c/coevol/coevol-20180201-goolf-1.7.20.eb
+++ /dev/null
@@ -1,39 +0,0 @@
-# This file is an EasyBuild reciPY as per https://easybuilders.github.io/easybuild/
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-easyblock = 'ConfigureMake'
-
-name = 'coevol'
-commit = '5d7fc52'
-version = '20180201'
-
-homepage = 'https://github.com/bayesiancook/coevol'
-description = 'Correlated evolution of substitution rates and quantitative traits'
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = ['https://github.com/bayesiancook/coevol/archive/']
-sources = [{'download_filename': '%s.tar.gz' % commit, 'filename': SOURCE_TAR_GZ}]
-checksums = ['e2cb1227f452c4f781faf8ec60e483ca27ffd288380bcfa483886f445a775bb6']
-
-unpack_options = '--strip-components=1'
-
-skipsteps = ['configure', 'install']
-
-buildininstalldir = True
-
-start_dir = 'sources'
-
-prebuildopts = 'mkdir -p %(installdir)s/bin && '
-
-buildopts = 'all PROGSDIR=%(installdir)s/bin/'
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['ancov', 'coevol', 'readancov', 'readcoevol',
- 'readtipcoevol', 'tipcoevol']],
- 'dirs': ['data']
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/cppcheck/cppcheck-1.75-intel-2015b.eb b/easybuild/easyconfigs/__archive__/c/cppcheck/cppcheck-1.75-intel-2015b.eb
deleted file mode 100644
index 70ed0f8ae7e..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cppcheck/cppcheck-1.75-intel-2015b.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-name = 'cppcheck'
-version = '1.75'
-
-homepage = 'http://cppcheck.sourceforge.net/'
-description = """Cppcheck is a static analysis tool for C/C++ code"""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'pic': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(name)s-%(version)s.tar.bz2']
-
-dependencies = [
- ('Qt5', '5.5.1'),
- ('PCRE', '8.37'),
-]
-
-have_rules = True
-build_gui = True
-
-buildopts = 'CXXFLAGS="$CXXFLAGS -std=c++11"'
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/c/csvkit/csvkit-0.9.1-foss-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/c/csvkit/csvkit-0.9.1-foss-2015b-Python-2.7.10.eb
deleted file mode 100644
index 87ecf8bccdf..00000000000
--- a/easybuild/easyconfigs/__archive__/c/csvkit/csvkit-0.9.1-foss-2015b-Python-2.7.10.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'csvkit'
-version = '0.9.1'
-
-homepage = 'https://github.com/wireservice/csvkit'
-description = """csvkit is a suite of command-line tools for converting to and working with CSV,
- the king of tabular file formats."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-
-python = 'Python'
-pyver = '2.7.10'
-pyshortver = '.'.join(pyver.split('.')[:2])
-
-versionsuffix = "-%s-%s" % (python, pyver)
-
-dependencies = [
- (python, pyver),
-]
-
-postinstallcmds = ["chmod -R +r %(installdir)s/lib/"]
-
-sanity_check_paths = {
- 'files': ['bin/in2csv', 'bin/sql2csv', 'bin/csvclean', 'bin/csvcut', 'bin/csvgrep', 'bin/csvjoin',
- 'bin/csvsort', 'bin/csvstack', 'bin/csvformat', 'bin/csvjson', 'bin/csvlook', 'bin/csvpy',
- 'bin/csvsql', 'bin/csvstat'],
- 'dirs': [],
-}
-
-sanity_check_commands = [('csvlook', '-h')]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/c/ctffind/ctffind-140609-foss-2014b.eb b/easybuild/easyconfigs/__archive__/c/ctffind/ctffind-140609-foss-2014b.eb
deleted file mode 100644
index 287e08b07e9..00000000000
--- a/easybuild/easyconfigs/__archive__/c/ctffind/ctffind-140609-foss-2014b.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-easyblock = 'MakeCp'
-
-name = 'ctffind'
-version = '140609'
-
-homepage = 'http://grigoriefflab.janelia.org/ctf'
-description = """CTFFIND and CTFTILT are two programs for finding CTFs of electron micrographs."""
-
-toolchain = {'name': 'foss', 'version': '2014b'}
-
-source_urls = ['http://grigoriefflab.janelia.org/sites/default/files/']
-sources = ['ctf_%(version)s.tar.gz']
-
-buildopts = '-f Makefile_linux_mp'
-
-files_to_copy = [(["ctftilt_mp.exe", 'ctffind3_mp.exe'], "bin"), "README.txt"]
-
-sanity_check_paths = {
- 'files': ["bin/ctftilt_mp.exe", 'bin/ctffind3_mp.exe'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/ctffind/ctffind-140609-intel-2014b.eb b/easybuild/easyconfigs/__archive__/c/ctffind/ctffind-140609-intel-2014b.eb
deleted file mode 100644
index eab354f3cc3..00000000000
--- a/easybuild/easyconfigs/__archive__/c/ctffind/ctffind-140609-intel-2014b.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-easyblock = 'MakeCp'
-
-name = 'ctffind'
-version = '140609'
-
-homepage = 'http://grigoriefflab.janelia.org/ctf'
-description = """CTFFIND and CTFTILT are two programs for finding CTFs of electron micrographs."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = ['http://grigoriefflab.janelia.org/sites/default/files/']
-sources = ['ctf_%(version)s.tar.gz']
-
-buildopts = '-f Makefile_linux_mp'
-
-files_to_copy = [(["ctftilt_mp.exe", 'ctffind3_mp.exe'], "bin"), "README.txt"]
-
-sanity_check_paths = {
- 'files': ["bin/ctftilt_mp.exe", 'bin/ctffind3_mp.exe'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/ctffind/ctffind-4.0.17-intel-2015b.eb b/easybuild/easyconfigs/__archive__/c/ctffind/ctffind-4.0.17-intel-2015b.eb
deleted file mode 100644
index f6b9d86aa23..00000000000
--- a/easybuild/easyconfigs/__archive__/c/ctffind/ctffind-4.0.17-intel-2015b.eb
+++ /dev/null
@@ -1,39 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-easyblock = 'MakeCp'
-
-name = 'ctffind'
-version = '4.0.17'
-
-homepage = 'http://grigoriefflab.janelia.org/ctffind4'
-description = """program for finding CTFs of electron micrographs"""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'openmp': True}
-
-source_urls = ['http://grigoriefflab.janelia.org/sites/default/files/']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('GSL', '1.16')]
-
-# when running ./configure in the root folder it fails.
-# application doesn't provide a 'make install'
-prebuildopts = 'mkdir build && cd build && '
-prebuildopts += " ../configure --enable-static --disable-debug --enable-optimisations --enable-openmp "
-prebuildopts += "FC=${FC} F77=${F77} && "
-
-files_to_copy = [(['build/ctffind'], 'bin'), 'doc', 'scripts']
-
-parallel = 1
-
-sanity_check_paths = {
- 'files': ['bin/ctffind'],
- 'dirs': [],
-}
-
-modloadmsg = "Define OMP_NUM_THREADS or use the command line option --omp-num-threads=N when using this application\n"
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/ctffind/ctffind-4.0.8-intel-2014b.eb b/easybuild/easyconfigs/__archive__/c/ctffind/ctffind-4.0.8-intel-2014b.eb
deleted file mode 100644
index 6af0d953602..00000000000
--- a/easybuild/easyconfigs/__archive__/c/ctffind/ctffind-4.0.8-intel-2014b.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-easyblock = 'MakeCp'
-
-name = 'ctffind'
-version = '4.0.8'
-
-homepage = 'http://grigoriefflab.janelia.org/ctf'
-description = """CTFFIND and CTFTILT are two programs for finding CTFs of electron micrographs."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = ['http://grigoriefflab.janelia.org/system/files/private/']
-sources = [SOURCE_TAR_GZ]
-
-patches = ['ctffind-%(version)s_nostd_value.patch']
-
-dependencies = [('GSL', '1.16')]
-
-with_configure = True
-configopts = 'FC="$F77"'
-
-parallel = 1
-
-files_to_copy = [(['ctffind'], "bin")]
-
-sanity_check_paths = {
- 'files': ['bin/ctffind'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/cuDNN/cuDNN-7.0.5.15-goolfc-2017b.eb b/easybuild/easyconfigs/__archive__/c/cuDNN/cuDNN-7.0.5.15-goolfc-2017b.eb
deleted file mode 100644
index a84e3d7ec2f..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cuDNN/cuDNN-7.0.5.15-goolfc-2017b.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Author: Stephane Thiell
-##
-easyblock = 'Tarball'
-
-name = 'cuDNN'
-version = '7.0.5.15'
-
-homepage = 'https://developer.nvidia.com/cudnn'
-description = """The NVIDIA CUDA Deep Neural Network library (cuDNN) is a GPU-accelerated library of primitives for
- deep neural networks."""
-
-toolchain = {'name': 'goolfc', 'version': '2017b'}
-
-# Nvidia developer registration required.
-# Download link: https://developer.nvidia.com/rdp/cudnn-download
-#
-# The version downloaded from Nvidia might be named differently from the name expected by this easyconfig.
-# Compare checksum. If checksum agree with the below, rename your file to the name expected by this easyconfig.
-#
-sources = ['%(namelower)s-9.0-linux-x64-v%(version)s.tgz']
-
-checksums = [
- '1a3e076447d5b9860c73d9bebe7087ffcb7b0c8814fd1e506096435a2ad9ab0e', # cudnn-9.0-linux-x64-v7.0.5.15.tgz
-]
-
-sanity_check_paths = {
- 'files': ['include/cudnn.h', 'lib64/libcudnn_static.a'],
- 'dirs': ['include', 'lib64'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.3-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.3-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index 15b0a97b3bf..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.3-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics (SIB)
-# Biozentrum - University of Basel
-
-easyblock = "PythonPackage"
-
-name = 'cutadapt'
-version = '1.3'
-
-homepage = 'http://code.google.com/p/cutadapt/'
-description = """ cutadapt removes adapter sequences
- from high-throughput sequencing data. This is usually
- necessary when the read length of the sequencing machine
- is longer than the molecule that is sequenced, for
- example when sequencing microRNAs. """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-
-python = 'Python'
-pyver = '2.7.3'
-pyshortver = '.'.join(pyver.split('.')[:2])
-
-versionsuffix = "-%s-%s" % (python, pyver)
-
-dependencies = [
- (python, pyver),
-]
-
-sanity_check_paths = {
- 'files': ['bin/cutadapt', 'lib/python2.7/site-packages/cutadapt/calign.%s' % SHLIB_EXT],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.3-goolf-1.4.10-Python-2.7.5.eb b/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.3-goolf-1.4.10-Python-2.7.5.eb
deleted file mode 100644
index 78181eace37..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.3-goolf-1.4.10-Python-2.7.5.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics (SIB)
-# Biozentrum - University of Basel
-
-easyblock = "PythonPackage"
-
-name = 'cutadapt'
-version = '1.3'
-
-homepage = 'http://code.google.com/p/cutadapt/'
-description = """ cutadapt removes adapter sequences
- from high-throughput sequencing data. This is usually
- necessary when the read length of the sequencing machine
- is longer than the molecule that is sequenced, for
- example when sequencing microRNAs. """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-
-python = 'Python'
-pyver = '2.7.5'
-pyshortver = '.'.join(pyver.split('.')[:2])
-
-versionsuffix = "-%s-%s" % (python, pyver)
-
-dependencies = [
- (python, pyver),
-]
-
-sanity_check_paths = {
- 'files': ['bin/cutadapt', 'lib/python2.7/site-packages/cutadapt/calign.%s' % SHLIB_EXT],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.4.1-foss-2014b-Python-2.7.8.eb b/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.4.1-foss-2014b-Python-2.7.8.eb
deleted file mode 100644
index 2eb271b2cb3..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.4.1-foss-2014b-Python-2.7.8.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics (SIB)
-# Biozentrum - University of Basel
-
-easyblock = "PythonPackage"
-
-name = 'cutadapt'
-version = '1.4.1'
-
-homepage = 'http://code.google.com/p/cutadapt/'
-description = """ cutadapt removes adapter sequences from high-throughput sequencing data.
- This is usually necessary when the read length of the sequencing machine is longer than
- the molecule that is sequenced, for example when sequencing microRNAs. """
-
-toolchain = {'name': 'foss', 'version': '2014b'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-
-python = 'Python'
-pyver = '2.7.8'
-pyshortver = '.'.join(pyver.split('.')[:2])
-
-versionsuffix = "-%s-%s" % (python, pyver)
-
-dependencies = [
- (python, pyver),
-]
-
-sanity_check_paths = {
- 'files': ['bin/cutadapt'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.4.1-goolf-1.4.10-Python-2.7.5.eb b/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.4.1-goolf-1.4.10-Python-2.7.5.eb
deleted file mode 100644
index 0a914d43dd6..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.4.1-goolf-1.4.10-Python-2.7.5.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics (SIB)
-# Biozentrum - University of Basel
-
-easyblock = "PythonPackage"
-
-name = 'cutadapt'
-version = '1.4.1'
-
-homepage = 'http://code.google.com/p/cutadapt/'
-description = """ cutadapt removes adapter sequences
- from high-throughput sequencing data. This is usually
- necessary when the read length of the sequencing machine
- is longer than the molecule that is sequenced, for
- example when sequencing microRNAs. """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-
-python = 'Python'
-pyver = '2.7.5'
-pyshortver = '.'.join(pyver.split('.')[:2])
-
-versionsuffix = "-%s-%s" % (python, pyver)
-
-dependencies = [
- (python, pyver),
-]
-
-sanity_check_paths = {
- 'files': ['bin/cutadapt'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.5-foss-2014b-Python-2.7.8.eb b/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.5-foss-2014b-Python-2.7.8.eb
deleted file mode 100644
index b5fa67bd28a..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.5-foss-2014b-Python-2.7.8.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics (SIB)
-# Biozentrum - University of Basel
-
-easyblock = "PythonPackage"
-
-name = 'cutadapt'
-version = '1.5'
-
-homepage = 'http://code.google.com/p/cutadapt/'
-description = """ cutadapt removes adapter sequences from high-throughput sequencing data.
- This is usually necessary when the read length of the sequencing machine is longer than
- the molecule that is sequenced, for example when sequencing microRNAs. """
-
-toolchain = {'name': 'foss', 'version': '2014b'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-
-python = 'Python'
-pyver = '2.7.8'
-pyshortver = '.'.join(pyver.split('.')[:2])
-
-versionsuffix = "-%s-%s" % (python, pyver)
-
-dependencies = [
- (python, pyver),
-]
-
-sanity_check_paths = {
- 'files': ['bin/cutadapt'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.5-goolf-1.4.10-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.5-goolf-1.4.10-Python-2.7.10.eb
deleted file mode 100644
index 2793fdd3905..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.5-goolf-1.4.10-Python-2.7.10.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'cutadapt'
-version = '1.5'
-
-homepage = 'http://code.google.com/p/cutadapt/'
-description = """ cutadapt removes adapter sequences
- from high-throughput sequencing data. This is usually
- necessary when the read length of the sequencing machine
- is longer than the molecule that is sequenced, for
- example when sequencing microRNAs. """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-checksums = ['639b86826778c14c8b1fe512f074b939']
-
-python = 'Python'
-pyver = '2.7.10'
-pyshortver = '.'.join(pyver.split('.')[:2])
-
-versionsuffix = "-%s-%s" % (python, pyver)
-
-dependencies = [
- (python, pyver),
-]
-
-sanity_check_paths = {
- 'files': ['lib/python%s/site-packages/cutadapt/_align.%s' % (pyshortver, SHLIB_EXT)],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.5-intel-2014b-Python-2.7.8.eb b/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.5-intel-2014b-Python-2.7.8.eb
deleted file mode 100644
index c50c4a1b5f8..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.5-intel-2014b-Python-2.7.8.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'cutadapt'
-version = '1.5'
-
-homepage = 'http://code.google.com/p/cutadapt/'
-description = """ cutadapt removes adapter sequences
- from high-throughput sequencing data. This is usually
- necessary when the read length of the sequencing machine
- is longer than the molecule that is sequenced, for
- example when sequencing microRNAs. """
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-
-python = 'Python'
-pyver = '2.7.8'
-pyshortver = '.'.join(pyver.split('.')[:2])
-
-versionsuffix = "-%s-%s" % (python, pyver)
-
-dependencies = [
- (python, pyver),
-]
-
-sanity_check_paths = {
- 'files': ['bin/cutadapt', 'lib/python%s/site-packages/cutadapt/_align.%s' % (pyshortver, SHLIB_EXT)],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.6-foss-2014b-Python-2.7.8.eb b/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.6-foss-2014b-Python-2.7.8.eb
deleted file mode 100644
index 9fd455ea4e9..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.6-foss-2014b-Python-2.7.8.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics (SIB)
-# Biozentrum - University of Basel
-
-easyblock = "PythonPackage"
-
-name = 'cutadapt'
-version = '1.6'
-
-homepage = 'http://code.google.com/p/cutadapt/'
-description = """ cutadapt removes adapter sequences from high-throughput sequencing data.
- This is usually necessary when the read length of the sequencing machine is longer than
- the molecule that is sequenced, for example when sequencing microRNAs. """
-
-toolchain = {'name': 'foss', 'version': '2014b'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-
-python = 'Python'
-pyver = '2.7.8'
-pyshortver = '.'.join(pyver.split('.')[:2])
-
-versionsuffix = "-%s-%s" % (python, pyver)
-
-dependencies = [
- (python, pyver),
-]
-
-sanity_check_paths = {
- 'files': ['bin/cutadapt'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.7-foss-2014b-Python-2.7.8.eb b/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.7-foss-2014b-Python-2.7.8.eb
deleted file mode 100644
index 8fd82f9c4ca..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.7-foss-2014b-Python-2.7.8.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics (SIB)
-# Biozentrum - University of Basel
-
-easyblock = "PythonPackage"
-
-name = 'cutadapt'
-version = '1.7'
-
-homepage = 'http://code.google.com/p/cutadapt/'
-description = """ cutadapt removes adapter sequences from high-throughput sequencing data.
- This is usually necessary when the read length of the sequencing machine is longer than
- the molecule that is sequenced, for example when sequencing microRNAs. """
-
-toolchain = {'name': 'foss', 'version': '2014b'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-
-python = 'Python'
-pyver = '2.7.8'
-pyshortver = '.'.join(pyver.split('.')[:2])
-
-versionsuffix = "-%s-%s" % (python, pyver)
-
-dependencies = [
- (python, pyver),
-]
-
-sanity_check_paths = {
- 'files': ['bin/cutadapt'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.7.1-foss-2014b-Python-2.7.8.eb b/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.7.1-foss-2014b-Python-2.7.8.eb
deleted file mode 100644
index 4eaa0d8f1e9..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.7.1-foss-2014b-Python-2.7.8.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics (SIB)
-# Biozentrum - University of Basel
-
-easyblock = "PythonPackage"
-
-name = 'cutadapt'
-version = '1.7.1'
-
-homepage = 'http://code.google.com/p/cutadapt/'
-description = """ cutadapt removes adapter sequences from high-throughput sequencing data.
- This is usually necessary when the read length of the sequencing machine is longer than
- the molecule that is sequenced, for example when sequencing microRNAs. """
-
-toolchain = {'name': 'foss', 'version': '2014b'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-
-python = 'Python'
-pyver = '2.7.8'
-pyshortver = '.'.join(pyver.split('.')[:2])
-
-versionsuffix = "-%s-%s" % (python, pyver)
-
-dependencies = [
- (python, pyver),
-]
-
-sanity_check_paths = {
- 'files': ['bin/cutadapt'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.8.1-intel-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.8.1-intel-2015a-Python-2.7.9.eb
deleted file mode 100644
index 1f2a8db354f..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.8.1-intel-2015a-Python-2.7.9.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics (SIB)
-# Biozentrum - University of Basel
-
-easyblock = "PythonPackage"
-
-name = 'cutadapt'
-version = '1.8.1'
-
-homepage = 'http://code.google.com/p/cutadapt/'
-description = """ cutadapt removes adapter sequences from high-throughput sequencing data.
- This is usually necessary when the read length of the sequencing machine is longer than
- the molecule that is sequenced, for example when sequencing microRNAs. """
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-
-python = 'Python'
-pyver = '2.7.9'
-pyshortver = '.'.join(pyver.split('.')[:2])
-
-versionsuffix = "-%s-%s" % (python, pyver)
-
-dependencies = [
- (python, pyver),
-]
-
-sanity_check_paths = {
- 'files': ['bin/cutadapt', 'lib/python%s/site-packages/cutadapt/_align.%s' % (pyshortver, SHLIB_EXT)],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.9.1-foss-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.9.1-foss-2015b-Python-2.7.10.eb
deleted file mode 100644
index 2508964d7f3..00000000000
--- a/easybuild/easyconfigs/__archive__/c/cutadapt/cutadapt-1.9.1-foss-2015b-Python-2.7.10.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics (SIB)
-# Biozentrum - University of Basel
-# Author: Adam Huffman
-# The Francis Crick Institute
-
-easyblock = "PythonPackage"
-
-name = 'cutadapt'
-version = '1.9.1'
-
-homepage = 'http://opensource.scilifelab.se/projects/cutadapt/'
-description = """ Cutadapt finds and removes adapter sequences, primers, poly-A tails and
- other types of unwanted sequence from your high-throughput sequencing reads. """
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-
-python = 'Python'
-pyver = '2.7.10'
-pyshortver = '.'.join(pyver.split('.')[:2])
-
-versionsuffix = "-%s-%s" % (python, pyver)
-
-dependencies = [
- (python, pyver),
-]
-
-sanity_check_paths = {
- 'files': ['bin/cutadapt', 'lib/python%s/site-packages/cutadapt/_align.%s' % (pyshortver, SHLIB_EXT)],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/d/DB/DB-2.7.7-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/d/DB/DB-2.7.7-ictce-5.5.0.eb
deleted file mode 100644
index e2cb4b55ad2..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DB/DB-2.7.7-ictce-5.5.0.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'DB'
-version = '2.7.7'
-
-homepage = 'http://www.oracle.com/technetwork/products/berkeleydb'
-description = """Berkeley DB enables the development of custom data management solutions,
- without the overhead traditionally associated with such custom projects."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = ['http://download.oracle.com/berkeley-db']
-sources = [SOURCELOWER_TAR_GZ]
-
-modextrapaths = {
- 'PATH': ["BerkeleyDB/bin"],
- 'CPATH': ["BerkeleyDB/include"],
- 'LD_LIBRARY_PATH': ["BerkeleyDB/lib"],
- 'LIBRARY_PATH': ["BerkeleyDB/lib"],
-}
-
-sanity_check_paths = {
- 'files': ["BerkeleyDB/include/db.h", "BerkeleyDB/include/db_cxx.h", "BerkeleyDB/lib/libdb.a"],
- 'dirs': ["BerkeleyDB/bin"],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/d/DB/DB-4.7.25-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/d/DB/DB-4.7.25-goolf-1.4.10.eb
deleted file mode 100644
index 2da345f1442..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DB/DB-4.7.25-goolf-1.4.10.eb
+++ /dev/null
@@ -1,18 +0,0 @@
-name = 'DB'
-version = '4.7.25'
-
-homepage = 'http://www.oracle.com/technetwork/products/berkeleydb'
-description = """Berkeley DB enables the development of custom data management solutions,
- without the overhead traditionally associated with such custom projects."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://download.oracle.com/berkeley-db']
-sources = [SOURCELOWER_TAR_GZ]
-
-sanity_check_paths = {
- 'files': ["include/db.h", "include/db_cxx.h", "lib/libdb.a", "lib/libdb.%s" % SHLIB_EXT],
- 'dirs': ["bin"],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/d/DB/DB-4.8.30-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/d/DB/DB-4.8.30-goolf-1.4.10.eb
deleted file mode 100644
index f567e411fb5..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DB/DB-4.8.30-goolf-1.4.10.eb
+++ /dev/null
@@ -1,18 +0,0 @@
-name = 'DB'
-version = '4.8.30'
-
-homepage = 'http://www.oracle.com/technetwork/products/berkeleydb'
-description = """Berkeley DB enables the development of custom data management solutions,
- without the overhead traditionally associated with such custom projects."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://download.oracle.com/berkeley-db/']
-sources = [SOURCELOWER_TAR_GZ]
-
-sanity_check_paths = {
- 'files': ['include/db.h', 'include/db_cxx.h', 'lib/libdb.a', 'lib/libdb.%s' % SHLIB_EXT],
- 'dirs': ['bin'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/d/DB/DB-4.8.30-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/d/DB/DB-4.8.30-ictce-5.5.0.eb
deleted file mode 100644
index 42d43b6f8ef..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DB/DB-4.8.30-ictce-5.5.0.eb
+++ /dev/null
@@ -1,18 +0,0 @@
-name = 'DB'
-version = '4.8.30'
-
-homepage = 'http://www.oracle.com/technetwork/products/berkeleydb'
-description = """Berkeley DB enables the development of custom data management solutions,
- without the overhead traditionally associated with such custom projects."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = ['http://download.oracle.com/berkeley-db/']
-sources = [SOURCELOWER_TAR_GZ]
-
-sanity_check_paths = {
- 'files': ['include/db.h', 'include/db_cxx.h', 'lib/libdb.a', 'lib/libdb.%s' % SHLIB_EXT],
- 'dirs': ['bin'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/d/DB/DB-4.8.30-intel-2015b.eb b/easybuild/easyconfigs/__archive__/d/DB/DB-4.8.30-intel-2015b.eb
deleted file mode 100644
index 0155873f3f7..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DB/DB-4.8.30-intel-2015b.eb
+++ /dev/null
@@ -1,18 +0,0 @@
-name = 'DB'
-version = '4.8.30'
-
-homepage = 'http://www.oracle.com/technetwork/products/berkeleydb'
-description = """Berkeley DB enables the development of custom data management solutions,
- without the overhead traditionally associated with such custom projects."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['http://download.oracle.com/berkeley-db/']
-sources = [SOURCELOWER_TAR_GZ]
-
-sanity_check_paths = {
- 'files': ['include/db.h', 'include/db_cxx.h', 'lib/libdb.a', 'lib/libdb.%s' % SHLIB_EXT],
- 'dirs': ['bin'],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/d/DB/DB-5.3.21-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/d/DB/DB-5.3.21-goolf-1.4.10.eb
deleted file mode 100644
index 21966bc11ef..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DB/DB-5.3.21-goolf-1.4.10.eb
+++ /dev/null
@@ -1,18 +0,0 @@
-name = 'DB'
-version = '5.3.21'
-
-homepage = 'http://www.oracle.com/technetwork/products/berkeleydb'
-description = """Berkeley DB enables the development of custom data management solutions,
- without the overhead traditionally associated with such custom projects."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-# download via http://www.oracle.com/technetwork/products/berkeleydb/downloads/, requires registration
-sources = [SOURCELOWER_TAR_GZ]
-
-sanity_check_paths = {
- 'files': ["include/db.h"],
- 'dirs': [],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/d/DB/DB-6.0.20-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/d/DB/DB-6.0.20-goolf-1.4.10.eb
deleted file mode 100644
index 7c5219a47a2..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DB/DB-6.0.20-goolf-1.4.10.eb
+++ /dev/null
@@ -1,18 +0,0 @@
-name = 'DB'
-version = '6.0.20'
-
-homepage = 'http://www.oracle.com/technetwork/products/berkeleydb'
-description = """Berkeley DB enables the development of custom data management solutions,
- without the overhead traditionally associated with such custom projects."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-# download via http://www.oracle.com/technetwork/products/berkeleydb/downloads/, requires registration
-sources = [SOURCELOWER_TAR_GZ]
-
-sanity_check_paths = {
- 'files': ["include/db.h"],
- 'dirs': [],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/d/DB/DB-6.0.30-foss-2015a.eb b/easybuild/easyconfigs/__archive__/d/DB/DB-6.0.30-foss-2015a.eb
deleted file mode 100644
index 32a7842e447..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DB/DB-6.0.30-foss-2015a.eb
+++ /dev/null
@@ -1,18 +0,0 @@
-name = 'DB'
-version = '6.0.30'
-
-homepage = 'http://www.oracle.com/technetwork/products/berkeleydb'
-description = """Berkeley DB enables the development of custom data management solutions,
- without the overhead traditionally associated with such custom projects."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-# download via http://www.oracle.com/technetwork/products/berkeleydb/downloads/, requires registration
-sources = [SOURCELOWER_TAR_GZ]
-
-sanity_check_paths = {
- 'files': ["include/db.h"],
- 'dirs': [],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/d/DBD-Pg/DBD-Pg-3.4.1-intel-2014b-Perl-5.20.0.eb b/easybuild/easyconfigs/__archive__/d/DBD-Pg/DBD-Pg-3.4.1-intel-2014b-Perl-5.20.0.eb
deleted file mode 100644
index 55ffd3cd6a1..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DBD-Pg/DBD-Pg-3.4.1-intel-2014b-Perl-5.20.0.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'PerlModule'
-
-name = 'DBD-Pg'
-version = '3.4.1'
-
-homepage = 'http://search.cpan.org/~turnstep/DBD-Pg-3.4.1/'
-description = """Perl binding for PostgreSQL"""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = ['http://cpan.metacpan.org/authors/id/T/TU/TURNSTEP/']
-sources = [SOURCE_TAR_GZ]
-
-perl = 'Perl'
-perlver = '5.20.0'
-versionsuffix = '-%s-%s' % (perl, perlver)
-
-dependencies = [
- (perl, perlver),
- ("PostgreSQL", "9.3.5")
-]
-
-options = {'modulename': 'DBD::Pg'}
-
-perlmajver = perlver.split('.')[0]
-sanity_check_paths = {
- 'files': ['lib/perl%s/site_perl/%s/x86_64-linux-thread-multi/DBD/Pg.pm' % (perlmajver, perlver)],
- 'dirs': [],
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/d/DBD-SQLite/DBD-SQLite-1.42-intel-2014b-Perl-5.20.0.eb b/easybuild/easyconfigs/__archive__/d/DBD-SQLite/DBD-SQLite-1.42-intel-2014b-Perl-5.20.0.eb
deleted file mode 100644
index c8b287035b5..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DBD-SQLite/DBD-SQLite-1.42-intel-2014b-Perl-5.20.0.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-easyblock = 'PerlModule'
-
-name = 'DBD-SQLite'
-version = '1.42'
-
-homepage = 'http://search.cpan.org/~ishigaki/DBD-SQLite-1.42/'
-description = """Perl binding for SQLite"""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = ['http://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI/']
-sources = [SOURCE_TAR_GZ]
-
-perl = 'Perl'
-perlver = '5.20.0'
-versionsuffix = '-%s-%s' % (perl, perlver)
-
-dependencies = [
- (perl, perlver),
- ("SQLite", "3.8.6"),
-]
-
-
-options = {'modulename': 'DBD::SQLite'}
-
-perlmajver = perlver.split('.')[0]
-sanity_check_paths = {
- 'files': ['lib/perl%s/site_perl/%s/x86_64-linux-thread-multi/DBD/SQLite.pm' % (perlmajver, perlver)],
- 'dirs': ['lib/perl%s/site_perl/%s/x86_64-linux-thread-multi/DBD/SQLite' % (perlmajver, perlver)],
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/d/DBD-mysql/DBD-mysql-4.028-intel-2014b-Perl-5.20.0.eb b/easybuild/easyconfigs/__archive__/d/DBD-mysql/DBD-mysql-4.028-intel-2014b-Perl-5.20.0.eb
deleted file mode 100644
index b518ac35ed2..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DBD-mysql/DBD-mysql-4.028-intel-2014b-Perl-5.20.0.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'PerlModule'
-
-name = 'DBD-mysql'
-version = '4.028'
-
-homepage = 'http://search.cpan.org/~capttofu/DBD-mysql-4.028/'
-description = """Perl binding for MySQL"""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = ['http://cpan.metacpan.org/authors/id/C/CA/CAPTTOFU/']
-sources = [SOURCE_TAR_GZ]
-
-perl = 'Perl'
-perlver = '5.20.0'
-versionsuffix = '-%s-%s' % (perl, perlver)
-
-dependencies = [
- (perl, perlver),
- ("MySQL", "5.6.20", "-clientonly"),
-]
-
-options = {'modulename': 'DBD::mysql'}
-
-perlmajver = perlver.split('.')[0]
-sanity_check_paths = {
- 'files': ['lib/perl%s/site_perl/%s/x86_64-linux-thread-multi/DBD/mysql.pm' % (perlmajver, perlver)],
- 'dirs': ['lib/perl%s/site_perl/%s/x86_64-linux-thread-multi/DBD/mysql' % (perlmajver, perlver)],
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/d/DBD-mysql/DBD-mysql-4.032-intel-2015b-Perl-5.20.3.eb b/easybuild/easyconfigs/__archive__/d/DBD-mysql/DBD-mysql-4.032-intel-2015b-Perl-5.20.3.eb
deleted file mode 100644
index 0496e7650c8..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DBD-mysql/DBD-mysql-4.032-intel-2015b-Perl-5.20.3.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'PerlModule'
-
-name = 'DBD-mysql'
-version = '4.032'
-
-homepage = 'http://search.cpan.org/~capttofu/DBD-mysql-%(version)s/'
-description = """Perl binding for MySQL"""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['http://cpan.metacpan.org/authors/id/C/CA/CAPTTOFU/']
-sources = [SOURCE_TAR_GZ]
-
-perl = 'Perl'
-perlver = '5.20.3'
-versionsuffix = '-%s-%s' % (perl, perlver)
-
-dependencies = [
- (perl, perlver),
- ('MySQL', '5.6.26', '-clientonly', ('GNU', '4.9.3-2.25')),
-]
-
-options = {'modulename': 'DBD::mysql'}
-
-perlmajver = perlver.split('.')[0]
-sanity_check_paths = {
- 'files': ['lib/perl%s/site_perl/%s/x86_64-linux-thread-multi/DBD/mysql.pm' % (perlmajver, perlver)],
- 'dirs': ['lib/perl%s/site_perl/%s/x86_64-linux-thread-multi/DBD/mysql' % (perlmajver, perlver)],
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/d/DB_File/DB_File-1.831-ictce-5.5.0-Perl-5.18.2.eb b/easybuild/easyconfigs/__archive__/d/DB_File/DB_File-1.831-ictce-5.5.0-Perl-5.18.2.eb
deleted file mode 100644
index babf824aa11..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DB_File/DB_File-1.831-ictce-5.5.0-Perl-5.18.2.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'PerlModule'
-
-name = 'DB_File'
-version = '1.831'
-versionsuffix = '-Perl-%(perlver)s'
-
-homepage = 'http://perldoc.perl.org/DB_File.html'
-description = """Perl5 access to Berkeley DB version 1.x."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = ['http://www.cpan.org/modules/by-module/DB_File/PMQS']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [
- ('Perl', '5.18.2'),
- ('DB', '4.8.30'),
-]
-
-sanity_check_paths = {
- 'files': ['lib/perl5/site_perl/%(perlver)s/x86_64-linux-thread-multi/DB_File.pm'],
- 'dirs': [],
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/d/DB_File/DB_File-1.831-ictce-5.5.0-Perl-5.20.0.eb b/easybuild/easyconfigs/__archive__/d/DB_File/DB_File-1.831-ictce-5.5.0-Perl-5.20.0.eb
deleted file mode 100644
index 2eb7bd63e27..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DB_File/DB_File-1.831-ictce-5.5.0-Perl-5.20.0.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'PerlModule'
-
-name = 'DB_File'
-version = '1.831'
-versionsuffix = '-Perl-%(perlver)s'
-
-homepage = 'http://perldoc.perl.org/DB_File.html'
-description = """Perl5 access to Berkeley DB version 1.x."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = ['http://www.cpan.org/modules/by-module/DB_File/PMQS']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [
- ('Perl', '5.20.0'),
- ('DB', '4.8.30'),
-]
-
-sanity_check_paths = {
- 'files': ['lib/perl5/site_perl/%(perlver)s/x86_64-linux-thread-multi/DB_File.pm'],
- 'dirs': [],
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/d/DB_File/DB_File-1.831-intel-2015b-Perl-5.20.3.eb b/easybuild/easyconfigs/__archive__/d/DB_File/DB_File-1.831-intel-2015b-Perl-5.20.3.eb
deleted file mode 100644
index 7a984ebf4c0..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DB_File/DB_File-1.831-intel-2015b-Perl-5.20.3.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'PerlModule'
-
-name = 'DB_File'
-version = '1.831'
-versionsuffix = '-Perl-%(perlver)s'
-
-homepage = 'http://perldoc.perl.org/DB_File.html'
-description = """Perl5 access to Berkeley DB version 1.x."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['http://www.cpan.org/modules/by-module/DB_File/PMQS']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [
- ('Perl', '5.20.3'),
- ('DB', '4.8.30'),
-]
-
-sanity_check_paths = {
- 'files': ['lib/perl5/site_perl/%(perlver)s/x86_64-linux-thread-multi/DB_File.pm'],
- 'dirs': [],
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/d/DCA++/DCA++-1.0-CrayGNU-2015.11-cpu.eb b/easybuild/easyconfigs/__archive__/d/DCA++/DCA++-1.0-CrayGNU-2015.11-cpu.eb
deleted file mode 100644
index 088f873ddb0..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DCA++/DCA++-1.0-CrayGNU-2015.11-cpu.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-easyblock = 'Bundle'
-
-name = 'DCA++'
-version = '1.0'
-versionsuffix = '-cpu'
-
-homepage = 'http://www.itp.phys.ethz.ch/research/comp/computation.html'
-
-description = """The DCA++ software project is a C++ implementation of the dynamical cluster
-approximation (DCA) and its DCA+ extension. It aims to solve lattice models of strongly
-correlated electron systems. This module bundles all the dependencies for the CPU-only version."""
-
-toolchain = {'name': 'CrayGNU', 'version': '2015.11'}
-
-dependencies = [
- ('CMake', '3.5.0'),
- ('spglib', '1.7.3'),
- ('NFFT', '3.3.0'),
- ('GSL', '2.1'),
- ('gtest', '1.7.0'),
- ('cray-hdf5/1.8.13', EXTERNAL_MODULE),
-]
-
-moduleclass = 'phys'
diff --git a/easybuild/easyconfigs/__archive__/d/DCA++/DCA++-1.0-CrayGNU-2015.11-cuda.eb b/easybuild/easyconfigs/__archive__/d/DCA++/DCA++-1.0-CrayGNU-2015.11-cuda.eb
deleted file mode 100644
index 3f3f75acda1..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DCA++/DCA++-1.0-CrayGNU-2015.11-cuda.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = 'Bundle'
-
-name = 'DCA++'
-version = '1.0'
-versionsuffix = '-cuda'
-
-homepage = 'http://www.itp.phys.ethz.ch/research/comp/computation.html'
-
-description = """The DCA++ software project is a C++ implementation of the dynamical cluster
-approximation (DCA) and its DCA+ extension. It aims to solve lattice models of strongly correlated
-electron systems. This module bundles all the dependencies for the CPU+GPU version."""
-
-toolchain = {'name': 'CrayGNU', 'version': '2015.11'}
-
-dependencies = [
- ('CMake', '3.5.0'),
- ('spglib', '1.7.3'),
- ('NFFT', '3.3.0'),
- ('GSL', '2.1'),
- ('gtest', '1.7.0'),
- ('cray-hdf5/1.8.13', EXTERNAL_MODULE),
- ('cudatoolkit/7.0.28-1.0502.10742.5.1', EXTERNAL_MODULE),
- ('magma', '2.0.0'),
-]
-
-moduleclass = 'phys'
diff --git a/easybuild/easyconfigs/__archive__/d/DFT-D3/DFT-D3-3.1.1-intel-2015a.eb b/easybuild/easyconfigs/__archive__/d/DFT-D3/DFT-D3-3.1.1-intel-2015a.eb
deleted file mode 100644
index 389f7d84252..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DFT-D3/DFT-D3-3.1.1-intel-2015a.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-easyblock = 'MakeCp'
-
-name = 'DFT-D3'
-version = '3.1.1'
-
-homepage = 'http://www.thch.uni-bonn.de/tc/index.php?section=downloads&subsection=DFT-D3&lang=english'
-description = """DFT-D3 implements a dispersion correction for density functionals, Hartree-Fock and semi-empirical
- quantum chemical methods."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://www.thch.uni-bonn.de/tc/downloads/%(name)s/data']
-# Note that the DFT-D3 tarball is named as "dftd3.tgz" with no version
-# numbering. Also, the authors are prone (alas) to stealth upgrades, so that two
-# tarballs with the same version number can have different checksums. For this
-# reason, it is suggested to manually download and rename the tarball. The
-# checksum may also need updating from time to time.
-# Checksum last updated: 15 April 2016
-# Date tarball was reported to have been modified: 11 January 2016
-sources = ['dftd3-%(version)s.tgz']
-checksums = [('md5', 'c9d6a92c43bb2ba71ad75f388fdce216')]
-
-files_to_copy = [(['dftd3'], 'bin'), (['man.pdf'], 'doc')]
-
-sanity_check_paths = {
- 'files': ['bin/dftd3'],
- 'dirs': [],
-}
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/d/DIALIGN-TX/DIALIGN-TX-1.0.2-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/d/DIALIGN-TX/DIALIGN-TX-1.0.2-goolf-1.4.10.eb
deleted file mode 100644
index bb425b52f01..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DIALIGN-TX/DIALIGN-TX-1.0.2-goolf-1.4.10.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = 'DIALIGN-TX'
-version = '1.0.2'
-
-homepage = 'http://dialign-tx.gobics.de/'
-description = """ greedy and progressive approaches for segment-based
- multiple sequence alignment """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'opt': True, 'optarch': True, 'unroll': True}
-
-source_urls = [homepage]
-sources = ['%(name)s_%(version)s.tar.gz']
-
-start_dir = 'source'
-
-# These are the hardcoded CPPFLAGS in the makefile:
-# CPPFLAGS=-O3 -funroll-loops -march=i686 -mfpmath=sse -msse -mmmx
-#
-# We overwrite CPPFLAGS in the makefile with easybuild toolchainopts which will be something like
-# CPPFLAGS=-O3 -funroll-loops -march=native"
-buildopts = 'CPPFLAGS="$CFLAGS"'
-
-files_to_copy = [(['dialign-tx'], 'bin')]
-
-sanity_check_paths = {
- 'files': ['bin/dialign-tx'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/d/DIAMOND/DIAMOND-0.8.35-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/d/DIAMOND/DIAMOND-0.8.35-goolf-1.7.20.eb
deleted file mode 100644
index 2c2bb31863f..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DIAMOND/DIAMOND-0.8.35-goolf-1.7.20.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-easyblock = "CMakeMake"
-
-name = 'DIAMOND'
-version = '0.8.35'
-
-homepage = 'https://github.com/bbuchfink/diamond'
-description = """Accelerated BLAST compatible local sequence aligner"""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = ['https://github.com/bbuchfink/diamond/archive/']
-sources = ['v%(version)s.tar.gz']
-
-separate_build_dir = True
-
-builddependencies = [('CMake', '3.4.3')]
-
-dependencies = [
- ('zlib', '1.2.8'),
-]
-
-sanity_check_paths = {
- 'files': ['bin/diamond'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/d/DIAMOND/DIAMOND-0.9.6-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/d/DIAMOND/DIAMOND-0.9.6-goolf-1.7.20.eb
deleted file mode 100644
index 3d1b5aebca0..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DIAMOND/DIAMOND-0.9.6-goolf-1.7.20.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-easyblock = "CMakeMake"
-
-name = 'DIAMOND'
-version = '0.9.6'
-
-homepage = 'https://github.com/bbuchfink/diamond'
-description = """Accelerated BLAST compatible local sequence aligner"""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = ['https://github.com/bbuchfink/diamond/archive/']
-sources = ['v%(version)s.tar.gz']
-
-separate_build_dir = True
-
-builddependencies = [('CMake', '3.4.3')]
-
-dependencies = [
- ('zlib', '1.2.8'),
-]
-
-sanity_check_paths = {
- 'files': ['bin/diamond'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/d/DIRAC/DIRAC-14.1-intel-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/d/DIRAC/DIRAC-14.1-intel-2015b-Python-2.7.10.eb
deleted file mode 100644
index 074179252db..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DIRAC/DIRAC-14.1-intel-2015b-Python-2.7.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'DIRAC'
-version = '14.1'
-versionsuffix = '-Python-2.7.10'
-
-homepage = 'http://diracprogram.org/'
-description = """The DIRAC program computes molecular properties using relativistic quantum chemical methods."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'usempi': True}
-
-# requires registration/license to download, http://dirac.chem.sdu.dk/DIRAC14/
-sources = ['%(name)s-%(version)s-Source.tar.gz']
-
-patches = ['DIRAC-%(version)s_fix-linking-issues.patch']
-
-dependencies = [
- ('zlib', '1.2.8'),
- ('Boost', '1.54.0', versionsuffix),
- ('Eigen', '3.2.7'),
-]
-builddependencies = [('CMake', '3.4.1')]
-
-runtest = True
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/d/DISCOVARdenovo/DISCOVARdenovo-52488-foss-2015a.eb b/easybuild/easyconfigs/__archive__/d/DISCOVARdenovo/DISCOVARdenovo-52488-foss-2015a.eb
deleted file mode 100644
index 1fc6b8de781..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DISCOVARdenovo/DISCOVARdenovo-52488-foss-2015a.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'DISCOVARdenovo'
-version = '52488'
-
-homepage = 'http://www.broadinstitute.org/software/discovar/blog/'
-description = """DISCOVAR de novo can generate de novo assemblies for both large and small genomes.
- It currently does not call variants."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['ftp://ftp.broadinstitute.org/pub/crd/DiscovarDeNovo/latest_source_code']
-
-dependencies = [
- ('GMP', '6.0.0a'),
- ('jemalloc', '3.6.0'),
-]
-
-sanity_check_paths = {
- 'files': ["bin/AffineAlign"],
- 'dirs': ["bin", "share"],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/d/DLCpar/DLCpar-1.0-goolf-1.7.20-Python-2.7.11.eb b/easybuild/easyconfigs/__archive__/d/DLCpar/DLCpar-1.0-goolf-1.7.20-Python-2.7.11.eb
deleted file mode 100644
index 05ced0f62ba..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DLCpar/DLCpar-1.0-goolf-1.7.20-Python-2.7.11.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-# This file is an EasyBuild reciPY as per https://easybuilders.github.io/easybuild/
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-easyblock = "PythonPackage"
-
-name = 'DLCpar'
-version = '1.0'
-versionsuffix = "-Python-%(pyver)s"
-
-homepage = 'https://www.cs.hmc.edu/~yjw/software/dlcpar/'
-description = """DLCpar is a reconciliation method for inferring gene duplications, losses,
- and coalescence (accounting for incomplete lineage sorting)"""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = ['https://www.cs.hmc.edu/~yjw/software/dlcpar/pub/sw/']
-sources = [SOURCELOWER_TAR_GZ]
-checksums = ['774319caba0f10d1230b8f85b8a147eda5871f9a316d7b3381b91c1bde97aa0a']
-
-dependencies = [
- ('Python', '2.7.11'), # also provides numpy >= 1.10.4
-]
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['dlcoal_to_dlcpar', 'dlcpar', 'dlcpar_search', 'dlcpar_to_dlcoal',
- 'tree-events-dlc', 'tree-events-dlcpar']],
- 'dirs': ['lib/python%(pyshortver)s/site-packages/dlcpar']
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/d/DL_POLY_Classic/DL_POLY_Classic-1.9-foss-2015b-PLUMED-2.1.4.eb b/easybuild/easyconfigs/__archive__/d/DL_POLY_Classic/DL_POLY_Classic-1.9-foss-2015b-PLUMED-2.1.4.eb
deleted file mode 100644
index 72b57735466..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DL_POLY_Classic/DL_POLY_Classic-1.9-foss-2015b-PLUMED-2.1.4.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-name = 'DL_POLY_Classic'
-version = '1.9'
-
-homepage = 'http://ccpforge.cse.rl.ac.uk/gf/project/dl_poly_classic/'
-description = """DL_POLY Classic is a freely available molecular dynamics program developed
- from the DL_POLY_2 package. This version does not install the java gui."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = ['http://ccpforge.cse.rl.ac.uk/gf/download/frsrelease/255/2627/']
-sources = [
- 'dl_class_%(version)s.tar.gz',
- # download from https://groups.google.com/group/plumed-users/attach/85c9fdc16956d/dlpoly2.tar.gz?part=0.1&authuser=0
- # see https://groups.google.com/d/msg/plumed-users/cWaIDU5F6Bw/bZUW3J9cCAAJ
- 'dlpoly2.tar.gz',
-]
-patches = [('DL_POLY_Classic-%(version)s_fix-PLUMED-integration.patch', '..')]
-checksums = [
- '66e40eccc6d3f696c8e3654b5dd2de54', # dl_class_1.9.tar.gz
- '39edd8805751b3581b9a4a0147ec1c67', # dlpoly2.tar.gz
- '81f2cfd95c578aabc5c87a2777b106c3', # DL_POLY_Classic-1.9_fix-PLUMED-integration.patch
-]
-
-plumedversion = '2.1.4'
-versionsuffix = '-PLUMED-%s' % plumedversion
-
-dependencies = [('PLUMED', plumedversion)]
-
-# parallel build tends to break
-parallel = 1
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/d/DL_POLY_Classic/DL_POLY_Classic-1.9-foss-2015b-PLUMED-2.2.0.eb b/easybuild/easyconfigs/__archive__/d/DL_POLY_Classic/DL_POLY_Classic-1.9-foss-2015b-PLUMED-2.2.0.eb
deleted file mode 100644
index e62d26024b0..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DL_POLY_Classic/DL_POLY_Classic-1.9-foss-2015b-PLUMED-2.2.0.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-name = 'DL_POLY_Classic'
-version = '1.9'
-
-homepage = 'http://ccpforge.cse.rl.ac.uk/gf/project/dl_poly_classic/'
-description = """DL_POLY Classic is a freely available molecular dynamics program developed
- from the DL_POLY_2 package. This version does not install the java gui."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = ['http://ccpforge.cse.rl.ac.uk/gf/download/frsrelease/255/2627/']
-sources = [
- 'dl_class_%(version)s.tar.gz',
- # download from https://groups.google.com/group/plumed-users/attach/85c9fdc16956d/dlpoly2.tar.gz?part=0.1&authuser=0
- # see https://groups.google.com/d/msg/plumed-users/cWaIDU5F6Bw/bZUW3J9cCAAJ
- 'dlpoly2.tar.gz',
-]
-patches = [('DL_POLY_Classic-%(version)s_fix-PLUMED-integration.patch', '..')]
-checksums = [
- '66e40eccc6d3f696c8e3654b5dd2de54', # dl_class_1.9.tar.gz
- '39edd8805751b3581b9a4a0147ec1c67', # dlpoly2.tar.gz
- '81f2cfd95c578aabc5c87a2777b106c3', # DL_POLY_Classic-1.9_fix-PLUMED-integration.patch
-]
-
-plumedversion = '2.2.0'
-versionsuffix = '-PLUMED-%s' % plumedversion
-
-dependencies = [('PLUMED', plumedversion)]
-
-# parallel build tends to break
-parallel = 1
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/d/DL_POLY_Classic/DL_POLY_Classic-1.9-ictce-5.3.0-no-gui.eb b/easybuild/easyconfigs/__archive__/d/DL_POLY_Classic/DL_POLY_Classic-1.9-ictce-5.3.0-no-gui.eb
deleted file mode 100644
index daa85f8912e..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DL_POLY_Classic/DL_POLY_Classic-1.9-ictce-5.3.0-no-gui.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-name = 'DL_POLY_Classic'
-version = '1.9'
-versionsuffix = '-no-gui'
-
-homepage = 'http://ccpforge.cse.rl.ac.uk/gf/project/dl_poly_classic/'
-description = """DL_POLY Classic is a freely available molecular dynamics program developed
- from the DL_POLY_2 package. This version does not install the java gui."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sources = ['dl_class_%(version)s.tar.gz']
-source_urls = ['http://ccpforge.cse.rl.ac.uk/gf/download/frsrelease/255/2627/']
-checksums = ['66e40eccc6d3f696c8e3654b5dd2de54']
-
-sanity_check_paths = {
- 'files': ['bin/DLPOLY.X'],
- 'dirs': []
-}
-
-# parallel build tends to break
-parallel = 1
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/d/DOLFIN/DOLFIN-1.0.0-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/d/DOLFIN/DOLFIN-1.0.0-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index 77e43460d5c..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DOLFIN/DOLFIN-1.0.0-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,56 +0,0 @@
-name = 'DOLFIN'
-version = '1.0.0'
-
-homepage = 'https://launchpad.net/dolfin'
-description = """DOLFIN is the C++/Python interface of FEniCS, providing a consistent PSE
-(Problem Solving Environment) for ordinary and partial differential equations."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'usempi': True, 'pic': True, 'packed-linker-options': False}
-
-majver = version.split('.')
-if majver[0] == '0':
- majver = majver[0]
-else:
- majver = '.'.join(majver[0:2])
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['https://launchpad.net/%s/%s.x/%s/+download' % (name.lower(), majver, version)]
-
-patches = [
- 'wl_pkg_linkflags.patch',
- 'petsc-slepc-libs.patch',
- 'DOLFIN-1.0.0_GCC-4.7.patch',
-]
-
-builddependencies = [('CMake', '2.8.4')]
-
-python = 'Python'
-python_version = '2.7.3'
-versionsuffix = '-%s-%s' % (python, python_version)
-
-dependencies = [
- (python, python_version),
- ('Boost', '1.49.0', versionsuffix),
- ('UFC', '2.0.5', versionsuffix),
- ('SWIG', '2.0.4', versionsuffix),
- ('FFC', '1.0.0', versionsuffix),
- ('FIAT', '1.0.0', versionsuffix),
- ('Instant', '1.0.0', versionsuffix),
- ('Viper', '1.0.0', versionsuffix),
- ('UFL', '1.0.0', versionsuffix),
- ('SCOTCH', '5.1.12b_esmumps'),
- ('Armadillo', '2.4.4', versionsuffix),
- ('ParMETIS', '4.0.2'),
- ('SuiteSparse', '3.7.0', '-withparmetis'),
- ('CGAL', '4.0', versionsuffix),
- ('PETSc', '3.3-p2', versionsuffix),
- ('SLEPc', '3.3-p1', versionsuffix),
- ('MTL4', '4.0.8878', '', True),
- ('Trilinos', '10.12.2', versionsuffix),
- ('Sphinx', '1.1.3', versionsuffix),
- ('zlib', '1.2.7'),
- ('libxml2', '2.8.0')
-]
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/d/DOLFIN/DOLFIN-1.6.0-intel-2015b-Python-2.7.11.eb b/easybuild/easyconfigs/__archive__/d/DOLFIN/DOLFIN-1.6.0-intel-2015b-Python-2.7.11.eb
deleted file mode 100644
index f6b89c67c7a..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DOLFIN/DOLFIN-1.6.0-intel-2015b-Python-2.7.11.eb
+++ /dev/null
@@ -1,67 +0,0 @@
-name = 'DOLFIN'
-version = '1.6.0'
-
-homepage = 'https://bitbucket.org/fenics-project/dolfin'
-description = """DOLFIN is the C++/Python interface of FEniCS, providing a consistent PSE
- (Problem Solving Environment) for ordinary and partial differential equations."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'usempi': True, 'pic': True, 'packed-linker-options': True}
-
-majver = version.split('.')
-if majver[0] == '0':
- majver = majver[0]
-else:
- majver = '.'.join(majver[0:2])
-
-source_urls = ['https://bitbucket.org/fenics-project/dolfin/downloads/']
-sources = [SOURCELOWER_TAR_GZ]
-
-patches = [
- 'DOLFIN-%(version)s_petsc-slepc-libs.patch',
- 'DOLFIN-%(version)s_fix-SuiteSparse-4.3.patch',
-]
-
-pyver = '2.7.11'
-versionsuffix = '-Python-%s' % pyver
-
-builddependencies = [
- ('CMake', '3.4.1'),
- ('SWIG', '3.0.8', versionsuffix),
- ('patchelf', '0.8', '', ('GNU', '4.9.3-2.25')),
-]
-dependencies = [
- ('Python', pyver),
- ('Boost', '1.59.0', versionsuffix),
- ('FFC', version, versionsuffix),
- ('FIAT', version, versionsuffix),
- ('Instant', version, versionsuffix),
- ('UFL', version, versionsuffix),
- ('SCOTCH', '6.0.4'),
- ('SuiteSparse', '4.4.6', '-ParMETIS-4.0.3'),
- ('CGAL', '4.7', versionsuffix),
- ('PETSc', '3.6.3', versionsuffix),
- ('SLEPc', '3.6.2', versionsuffix),
- ('MTL4', '4.0.9555', '', True),
- ('HDF5', '1.8.15-patch1'),
- ('Trilinos', '12.4.2', versionsuffix),
- ('Sphinx', '1.3.3', versionsuffix),
- ('zlib', '1.2.8'),
- ('libxml2', '2.9.3', versionsuffix),
- ('Eigen', '3.2.7'),
- ('PLY', '3.8', versionsuffix),
- ('VTK', '6.3.0', versionsuffix),
- ('petsc4py', '3.6.0', versionsuffix),
- ('slepc4py', '3.6.0', versionsuffix),
- ('PaStiX', '5.2.2.22'),
- ('CppUnit', '1.12.1'),
- ('Qt', '4.8.7', versionsuffix),
-]
-
-# supply path to libsuitesparseconfig.a for CHOLMOD/UMFPACK, see also patch file
-configopts = "-DSUITESPARSECONFIG_DIR=$EBROOTSUITESPARSE/SuiteSparse_config "
-
-# demos run as tests fail with 'bad X server connection', skipping for now
-runtest = False
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/d/DendroPy/DendroPy-3.12.0-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/d/DendroPy/DendroPy-3.12.0-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index 000354596ff..00000000000
--- a/easybuild/easyconfigs/__archive__/d/DendroPy/DendroPy-3.12.0-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,39 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2013-2014 The Cyprus Institute
-# Authors:: Thekla Loizou
-# License:: MIT/GPL
-# $Id$
-#
-##
-easyblock = "PythonPackage"
-
-name = 'DendroPy'
-version = '3.12.0'
-
-homepage = 'https://pypi.python.org/pypi/DendroPy/'
-description = """A Python library for phylogenetics and phylogenetic computing:
-reading, writing, simulation, processing and manipulation of phylogenetic trees
-(phylogenies) and characters."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['https://pypi.python.org/packages/source/D/DendroPy/']
-sources = [SOURCE_TAR_GZ]
-
-python = "Python"
-pythonversion = '2.7.3'
-pythonshortversion = ".".join(pythonversion.split(".")[:-1])
-
-versionsuffix = "-%s-%s" % (python, pythonversion)
-
-dependencies = [(python, pythonversion)]
-
-sanity_check_paths = {
- 'files': ['bin/cattrees.py', 'bin/long_branch_symmdiff.py', 'bin/sumlabels.py',
- 'bin/sumtrees.py', 'bin/strict_consensus_merge.py'],
- 'dirs': [],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/d/Diffutils/Diffutils-3.2-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/d/Diffutils/Diffutils-3.2-goolf-1.4.10.eb
deleted file mode 100644
index 730559ad83a..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Diffutils/Diffutils-3.2-goolf-1.4.10.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'Diffutils'
-version = '3.2'
-
-description = """Diffutils: GNU diff utilities - find the differences between files"""
-homepage = 'http://www.gnu.org/software/diffutils/diffutils.html'
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sanity_check_paths = {
- 'files': ['bin/cmp', 'bin/diff', 'bin/diff3', 'bin/sdiff'],
- 'dirs': []
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Diffutils/Diffutils-3.2-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/d/Diffutils/Diffutils-3.2-ictce-5.3.0.eb
deleted file mode 100644
index 94063017d31..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Diffutils/Diffutils-3.2-ictce-5.3.0.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'Diffutils'
-version = '3.2'
-
-description = """Diffutils: GNU diff utilities - find the differences between files"""
-homepage = 'http://www.gnu.org/software/diffutils/diffutils.html'
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sanity_check_paths = {
- 'files': ['bin/cmp', 'bin/diff', 'bin/diff3', 'bin/sdiff'],
- 'dirs': []
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Docutils/Docutils-0.9.1-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/d/Docutils/Docutils-0.9.1-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index b16e3ee2f07..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Docutils/Docutils-0.9.1-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = "PythonPackage"
-
-name = "Docutils"
-version = "0.9.1"
-
-homepage = "http://docutils.sourceforge.net/"
-description = """Docutils is an open-source text processing system for processing plaintext
-documentation into useful formats, such as HTML, LaTeX, man-pages, open-document or XML.
-It includes reStructuredText, the easy to read, easy to use, what-you-see-is-what-you-get
-plaintext markup language."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [('http://sourceforge.net/projects/docutils/files/docutils/%s/' % version, 'download')]
-sources = [SOURCELOWER_TAR_GZ]
-
-python = "Python"
-pythonversion = "2.7.3"
-
-versionsuffix = "-%s-%s" % (python, pythonversion)
-
-dependencies = [(python, pythonversion)]
-
-pylibdir = "lib/python%s/site-packages/%s" % (".".join(pythonversion.split(".")[0:2]), name.lower())
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ["bin", pylibdir]
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/d/Docutils/Docutils-0.9.1-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/d/Docutils/Docutils-0.9.1-ictce-5.3.0-Python-2.7.3.eb
deleted file mode 100644
index 9fcadcde270..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Docutils/Docutils-0.9.1-ictce-5.3.0-Python-2.7.3.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-easyblock = "PythonPackage"
-
-name = "Docutils"
-version = "0.9.1"
-
-homepage = "http://docutils.sourceforge.net/"
-description = """Docutils is an open-source text processing system for processing plaintext
- documentation into useful formats, such as HTML, LaTeX, man-pages, open-document or XML.
- It includes reStructuredText, the easy to read, easy to use, what-you-see-is-what-you-get
- plaintext markup language."""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = [('http://sourceforge.net/projects/docutils/files/docutils/%s/' % version, 'download')]
-sources = [SOURCELOWER_TAR_GZ]
-
-python = "Python"
-pythonversion = "2.7.3"
-
-versionsuffix = "-%s-%s" % (python, pythonversion)
-
-dependencies = [(python, pythonversion)]
-
-pylibdir = "lib/python%s/site-packages/%s" % (".".join(pythonversion.split(".")[0:2]), name.lower())
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ["bin", pylibdir]
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.1.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.1.1-goolf-1.4.10.eb
deleted file mode 100644
index 1e7d31b3c50..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.1.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-name = 'Doxygen'
-version = '1.8.1.1'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['d2c754d2387c8794da35196462a9b4492007a3dad9d40f69f3e658766c8de8d6']
-
-builddependencies = [
- ('flex', '2.5.35'),
- ('Bison', '2.5'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.1.1-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.1.1-ictce-5.3.0.eb
deleted file mode 100644
index 9116a0c6245..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.1.1-ictce-5.3.0.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-name = 'Doxygen'
-version = '1.8.1.1'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['d2c754d2387c8794da35196462a9b4492007a3dad9d40f69f3e658766c8de8d6']
-
-builddependencies = [
- ('flex', '2.5.35'),
- ('Bison', '2.5'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.1.1-ictce-5.4.0.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.1.1-ictce-5.4.0.eb
deleted file mode 100644
index c0f3cfd82b8..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.1.1-ictce-5.4.0.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-name = 'Doxygen'
-version = '1.8.1.1'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'ictce', 'version': '5.4.0'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['d2c754d2387c8794da35196462a9b4492007a3dad9d40f69f3e658766c8de8d6']
-
-builddependencies = [
- ('flex', '2.5.35'),
- ('Bison', '2.5'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.10-foss-2015b.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.10-foss-2015b.eb
deleted file mode 100644
index 1f70a7d4e7d..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.10-foss-2015b.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'Doxygen'
-version = '1.8.10'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['cedf78f6d213226464784ecb999b54515c97eab8a2f9b82514292f837cf88b93']
-
-builddependencies = [
- ('CMake', '3.4.1'),
- ('flex', '2.5.39'),
- ('Bison', '3.0.4'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.10-intel-2015b.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.10-intel-2015b.eb
deleted file mode 100644
index dce9d585fc0..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.10-intel-2015b.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'Doxygen'
-version = '1.8.10'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['cedf78f6d213226464784ecb999b54515c97eab8a2f9b82514292f837cf88b93']
-
-builddependencies = [
- ('CMake', '3.4.1'),
- ('flex', '2.5.39'),
- ('Bison', '3.0.4'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.11-foss-2015a.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.11-foss-2015a.eb
deleted file mode 100644
index c5063693bdb..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.11-foss-2015a.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-name = 'Doxygen'
-version = '1.8.11'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['65d08b46e48bd97186aef562dc366681045b119e00f83c5b61d05d37ea154049']
-
-builddependencies = [
- ('CMake', '3.4.1'),
- ('flex', '2.6.0'),
- ('Bison', '3.0.4'),
-]
-
-parallel = 1
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.2-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.2-ictce-5.3.0.eb
deleted file mode 100644
index 33557bf2f2c..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.2-ictce-5.3.0.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-name = 'Doxygen'
-version = '1.8.2'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['5258244e3e225511dbacbbc58be958f114c11e35461a893473d356182b949d54']
-
-builddependencies = [
- ('flex', '2.5.37'),
- ('Bison', '2.6.5'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.3.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.3.1-goolf-1.4.10.eb
deleted file mode 100644
index 5d0c643e00a..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.3.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-name = 'Doxygen'
-version = '1.8.3.1'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['0c749f68101b6c04ccb0d9696dd37836a6ba62cd8002add275058a975ee72b55']
-
-builddependencies = [
- ('flex', '2.5.37'),
- ('Bison', '2.7'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.3.1-goolf-1.5.14.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.3.1-goolf-1.5.14.eb
deleted file mode 100644
index cf241436a3c..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.3.1-goolf-1.5.14.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-name = 'Doxygen'
-version = '1.8.3.1'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'goolf', 'version': '1.5.14'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['0c749f68101b6c04ccb0d9696dd37836a6ba62cd8002add275058a975ee72b55']
-
-builddependencies = [
- ('flex', '2.5.37'),
- ('Bison', '2.7'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.3.1-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.3.1-ictce-5.3.0.eb
deleted file mode 100644
index 8f0afcc61d7..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.3.1-ictce-5.3.0.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-name = 'Doxygen'
-version = '1.8.3.1'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['0c749f68101b6c04ccb0d9696dd37836a6ba62cd8002add275058a975ee72b55']
-
-dependencies = [
- ('flex', '2.5.37'),
- ('Bison', '2.7'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.3.1-ictce-5.4.0.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.3.1-ictce-5.4.0.eb
deleted file mode 100644
index 12ba1231a91..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.3.1-ictce-5.4.0.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-name = 'Doxygen'
-version = '1.8.3.1'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'ictce', 'version': '5.4.0'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['0c749f68101b6c04ccb0d9696dd37836a6ba62cd8002add275058a975ee72b55']
-
-builddependencies = [
- ('flex', '2.5.37'),
- ('Bison', '2.7'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.3.1-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.3.1-ictce-5.5.0.eb
deleted file mode 100644
index ef90d49f51d..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.3.1-ictce-5.5.0.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-name = 'Doxygen'
-version = '1.8.3.1'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['0c749f68101b6c04ccb0d9696dd37836a6ba62cd8002add275058a975ee72b55']
-
-builddependencies = [
- ('flex', '2.5.37'),
- ('Bison', '2.7'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.3.1-ictce-6.1.5.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.3.1-ictce-6.1.5.eb
deleted file mode 100644
index 63470df67a8..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.3.1-ictce-6.1.5.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-name = 'Doxygen'
-version = '1.8.3.1'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'ictce', 'version': '6.1.5'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['0c749f68101b6c04ccb0d9696dd37836a6ba62cd8002add275058a975ee72b55']
-
-dependencies = [
- ('flex', '2.5.37'),
- ('Bison', '2.7'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.5-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.5-ictce-5.5.0.eb
deleted file mode 100644
index 3ec1a8242d5..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.5-ictce-5.5.0.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-name = 'Doxygen'
-version = '1.8.5'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
-IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['243a8b67db12ad68d6ea5b51c6f60dc2cc3a34fa47abf1b5b4499196c3d7cc25']
-
-dependencies = [
- ('flex', '2.5.37'),
- ('Bison', '3.0.1'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.5-intel-2014b.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.5-intel-2014b.eb
deleted file mode 100644
index 67452a471ae..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.5-intel-2014b.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-name = 'Doxygen'
-version = '1.8.5'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
-IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['243a8b67db12ad68d6ea5b51c6f60dc2cc3a34fa47abf1b5b4499196c3d7cc25']
-
-dependencies = [
- ('flex', '2.5.37'),
- ('Bison', '2.5'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.6-ictce-5.4.0.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.6-ictce-5.4.0.eb
deleted file mode 100644
index 4b8587502e2..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.6-ictce-5.4.0.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-name = 'Doxygen'
-version = '1.8.6'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'ictce', 'version': '5.4.0'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['6a718625f0c0c1eb3dee78ec1f83409b49e790f4c6c47fd44cd51cb92695535f']
-
-builddependencies = [
- ('flex', '2.5.37'),
- ('Bison', '2.7.1'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.6-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.6-ictce-5.5.0.eb
deleted file mode 100644
index daa11a95d0a..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.6-ictce-5.5.0.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-name = 'Doxygen'
-version = '1.8.6'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['6a718625f0c0c1eb3dee78ec1f83409b49e790f4c6c47fd44cd51cb92695535f']
-
-builddependencies = [
- ('flex', '2.5.37'),
- ('Bison', '2.7.1'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.7-foss-2014b.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.7-foss-2014b.eb
deleted file mode 100644
index 8a2540ec5b9..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.7-foss-2014b.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-name = 'Doxygen'
-version = '1.8.7'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'foss', 'version': '2014b'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['c6eac6b6e82148ae15ec5aecee4631547359f284af1ce94474d046ebca6ee3d9']
-
-builddependencies = [
- ('flex', '2.5.39'),
- ('Bison', '3.0.2'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.7-foss-2015a.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.7-foss-2015a.eb
deleted file mode 100644
index ae999c6e604..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.7-foss-2015a.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-name = 'Doxygen'
-version = '1.8.7'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['c6eac6b6e82148ae15ec5aecee4631547359f284af1ce94474d046ebca6ee3d9']
-
-builddependencies = [
- ('flex', '2.5.39'),
- ('Bison', '3.0.2'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.7-intel-2014b.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.7-intel-2014b.eb
deleted file mode 100644
index 6741a10739f..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.7-intel-2014b.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-name = 'Doxygen'
-version = '1.8.7'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['c6eac6b6e82148ae15ec5aecee4631547359f284af1ce94474d046ebca6ee3d9']
-
-builddependencies = [
- ('flex', '2.5.39'),
- ('Bison', '3.0.2'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.7-intel-2015a.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.7-intel-2015a.eb
deleted file mode 100644
index a03f6e5b3d2..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.7-intel-2015a.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-name = 'Doxygen'
-version = '1.8.7'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['c6eac6b6e82148ae15ec5aecee4631547359f284af1ce94474d046ebca6ee3d9']
-
-builddependencies = [
- ('flex', '2.5.39'),
- ('Bison', '3.0.2'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.8-ictce-7.1.2.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.8-ictce-7.1.2.eb
deleted file mode 100644
index 3534cfcafcc..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.8-ictce-7.1.2.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-name = 'Doxygen'
-version = '1.8.8'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'ictce', 'version': '7.1.2'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['d1f978350527a2338199c9abb78f76f10746520de5dc4ae4cdd27fc9df9b19b8']
-
-builddependencies = [
- ('flex', '2.5.39'),
- ('Bison', '3.0.2'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.8-intel-2014b.eb b/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.8-intel-2014b.eb
deleted file mode 100644
index fbbfa0e1c82..00000000000
--- a/easybuild/easyconfigs/__archive__/d/Doxygen/Doxygen-1.8.8-intel-2014b.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-name = 'Doxygen'
-version = '1.8.8'
-
-homepage = 'http://www.doxygen.org'
-description = """Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
- IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(namelower)s-%(version)s.src.tar.gz']
-checksums = ['d1f978350527a2338199c9abb78f76f10746520de5dc4ae4cdd27fc9df9b19b8']
-
-builddependencies = [
- ('flex', '2.5.39'),
- ('Bison', '3.0.2'),
-]
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/d/deap/deap-0.9.2-intel-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/d/deap/deap-0.9.2-intel-2015b-Python-2.7.10.eb
deleted file mode 100644
index 0728022b177..00000000000
--- a/easybuild/easyconfigs/__archive__/d/deap/deap-0.9.2-intel-2015b-Python-2.7.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'PythonPackage'
-
-name = 'deap'
-version = '0.9.2'
-
-homepage = 'http://deap.readthedocs.org/en/master/'
-description = """DEAP is a novel evolutionary computation framework for rapid prototyping and testing of ideas.
- It seeks to make algorithms explicit and data structures transparent."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = [PYPI_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-py_maj_min_ver = '2.7'
-pyver = '%s.10' % py_maj_min_ver
-versionsuffix = '-Python-%s' % pyver
-dependencies = [('Python', pyver)]
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['lib/python%s/site-packages/deap' % py_maj_min_ver]
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/d/disambiguate/disambiguate-1.0.0-goolf-1.7.20-Python-2.7.11.eb b/easybuild/easyconfigs/__archive__/d/disambiguate/disambiguate-1.0.0-goolf-1.7.20-Python-2.7.11.eb
deleted file mode 100644
index 3f7a8cf8e84..00000000000
--- a/easybuild/easyconfigs/__archive__/d/disambiguate/disambiguate-1.0.0-goolf-1.7.20-Python-2.7.11.eb
+++ /dev/null
@@ -1,42 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-easyblock = "PythonPackage"
-
-name = 'disambiguate'
-version = '1.0.0'
-versionsuffix = '-Python-%(pyver)s'
-
-homepage = "https://github.com/AstraZeneca-NGS/disambiguate"
-description = "Disambiguation algorithm for reads aligned to human and mouse genomes using Tophat or BWA mem"
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = ["https://github.com/AstraZeneca-NGS/disambiguate/archive/"]
-sources = ["v%(version)s.tar.gz"]
-
-dependencies = [
- ('Python', '2.7.11'),
- ('BamTools', '2.4.0'),
- ('zlib', '1.2.8'),
- ('Pysam', '0.9.0', versionsuffix),
-]
-
-# this application provides a python implementation and a C++ implementation
-# in the postinstallcmds we compile the C++ version
-postinstallcmds = [
- '$CXX $CXXFLAGS -I$EBROOTBAMTOOLS/include -I./ -L$EBROOTBAMTOOLS/lib -o disambiguate dismain.cpp -lz -lbamtools',
- 'cp disambiguate %(installdir)s/bin/'
-]
-
-# workaround to avoid the import sanity check
-options = {'modulename': 'os'}
-
-sanity_check_paths = {
- 'files': ['bin/disambiguate.py', 'bin/disambiguate'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/d/drFAST/drFAST-1.0.0.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/d/drFAST/drFAST-1.0.0.0-goolf-1.4.10.eb
deleted file mode 100644
index b4f4f41636e..00000000000
--- a/easybuild/easyconfigs/__archive__/d/drFAST/drFAST-1.0.0.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-easyblock = 'MakeCp'
-
-name = 'drFAST'
-version = '1.0.0.0'
-
-homepage = 'http://drfast.sourceforge.net/'
-description = """ drFAST is designed to map di-base reads (SOLiD color space reads)
- to reference genome assemblies; in a fast and memory-efficient manner. """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = [SOURCE_ZIP]
-
-dependencies = [('zlib', '1.2.8')]
-
-buildopts = ' CC="$CC"'
-
-parallel = 1
-
-files_to_copy = [(['drfast'], 'bin'), "README.txt"]
-
-sanity_check_paths = {
- 'files': ["bin/drfast", "README.txt"],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/d/drFAST/drFAST-1.0.0.0-ictce-6.2.5.eb b/easybuild/easyconfigs/__archive__/d/drFAST/drFAST-1.0.0.0-ictce-6.2.5.eb
deleted file mode 100644
index 60fff5c063d..00000000000
--- a/easybuild/easyconfigs/__archive__/d/drFAST/drFAST-1.0.0.0-ictce-6.2.5.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-easyblock = 'MakeCp'
-
-name = 'drFAST'
-version = '1.0.0.0'
-
-homepage = 'http://drfast.sourceforge.net/'
-description = """ drFAST is designed to map di-base reads (SOLiD color space reads)
- to reference genome assemblies; in a fast and memory-efficient manner. """
-
-toolchain = {'name': 'ictce', 'version': '6.2.5'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = [SOURCE_ZIP]
-
-dependencies = [('zlib', '1.2.8')]
-
-buildopts = ' CC="$CC"'
-
-parallel = 1
-
-files_to_copy = [(['drfast'], 'bin'), "README.txt"]
-
-sanity_check_paths = {
- 'files': ["bin/drfast", "README.txt"],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/e/ECore/ECore-1.5.2-ictce-5.5.0-clusterapps.eb b/easybuild/easyconfigs/__archive__/e/ECore/ECore-1.5.2-ictce-5.5.0-clusterapps.eb
deleted file mode 100644
index 56e86c8e44d..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ECore/ECore-1.5.2-ictce-5.5.0-clusterapps.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-easyblock = 'PackedBinary'
-
-name = 'ECore'
-version = '1.5.2'
-versionsuffix = '-clusterapps'
-
-homepage = 'http://www.numericalrocks.com/index.php?option=com_content&task=blogcategory&id=25&Itemid=25'
-description = """The e-Core technology simulates the natural processes of sedimentary rock formation; i.e.
- sedimentation, compaction and diagenesis."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-sources = ['%(namelower)s-%(version)s%(versionsuffix)s.tgz']
-
-patches = ['ecore-license-var.patch']
-
-# needs to be 1.4.x, because it's linked with the libmpi_cxx.so.0
-dependencies = [('OpenMPI', '1.4.5')]
-
-sanity_check_paths = {
- 'files': ['arch/linux-rh5-x86_64/bin/%s' % x for x in ['absperm', 'FormationFactor', 'nmr',
- 'orterun', 'packer', 'randomwalkffmpi',
- 'unpacker']] +
- ['absperm.sh', 'formationfactor.sh', 'nmr.sh', 'rw_formationfactor.sh'],
- 'dirs': [],
-}
-
-moduleclass = 'phys'
diff --git a/easybuild/easyconfigs/__archive__/e/ECore/ECore-1.5.2-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/e/ECore/ECore-1.5.2-ictce-5.5.0.eb
deleted file mode 100644
index d93540e9b8d..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ECore/ECore-1.5.2-ictce-5.5.0.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'PackedBinary'
-
-name = 'ECore'
-version = '1.5.2'
-
-homepage = 'http://www.numericalrocks.com/index.php?option=com_content&task=blogcategory&id=25&Itemid=25'
-description = """The e-Core technology simulates the natural processes of sedimentary rock formation; i.e.
- sedimentation, compaction and diagenesis."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-sources = [SOURCELOWER_TGZ]
-
-patches = ['ecore-license-var.patch']
-
-dependencies = [('OpenMPI', '1.4.5')]
-
-sanity_check_paths = {
- 'files': ["ecore.sh", 'noarch/launch.sh'] +
- ['arch/linux-rh5-x86_64/bin/%s' % x for x in ['diagenesismodeller', 'ecore', 'packer',
- 'PorenetworkExtraction', 'Poresim', 'unpacker']],
- 'dirs': [],
-}
-
-moduleclass = 'phys'
diff --git a/easybuild/easyconfigs/__archive__/e/EIGENSOFT/EIGENSOFT-6.1.1-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/e/EIGENSOFT/EIGENSOFT-6.1.1-goolf-1.7.20.eb
deleted file mode 100644
index 1b6aee4f0ef..00000000000
--- a/easybuild/easyconfigs/__archive__/e/EIGENSOFT/EIGENSOFT-6.1.1-goolf-1.7.20.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-# Provided binaries required OpenBLAS and GSL libraries
-
-easyblock = 'Tarball'
-
-name = 'EIGENSOFT'
-version = '6.1.1'
-
-homepage = 'http://www.hsph.harvard.edu/alkes-price/software/'
-description = """The EIGENSOFT package combines functionality from our population genetics methods (Patterson et al.
- 2006) and our EIGENSTRAT stratification correction method (Price et al. 2006). The EIGENSTRAT method uses principal
- components analysis to explicitly model ancestry differences between cases and controls along continuous axes of
- variation; the resulting correction is specific to a candidate marker’s variation in frequency across ancestral
- populations, minimizing spurious associations while maximizing power to detect true associations. The EIGENSOFT
- package has a built-in plotting script and supports multiple file formats and quantitative phenotypes."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-dependencies = [
- ('GSL', '1.16'),
-]
-
-source_urls = [
- 'https://data.broadinstitute.org/alkesgroup/EIGENSOFT/',
- 'https://data.broadinstitute.org/alkesgroup/EIGENSOFT/OLD/']
-sources = ['EIG%(version)s.tar.gz']
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ["baseprog", "convertf", "eigenstrat", "eigenstratQTL"]],
- 'dirs': []
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/e/ELPA/ELPA-2013.11-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/e/ELPA/ELPA-2013.11-ictce-5.3.0.eb
deleted file mode 100644
index b23777f71c8..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ELPA/ELPA-2013.11-ictce-5.3.0.eb
+++ /dev/null
@@ -1,35 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Authors:: Inge Gutheil , Alan O'Cais
-# License:: MIT/GPL
-# $Id$
-#
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'ELPA'
-version = '2013.11'
-
-homepage = 'http://elpa.rzg.mpg.de'
-description = """Eigenvalue SoLvers for Petaflop-Applications ."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'optarch': True, 'usempi': True}
-
-# download at http://elpa.rzg.mpg.de/elpa-tar-archive
-sources = ['%(name)s_%(version)s.006_20140312.tar.gz']
-
-patches = ['ELPA_fix-tests.patch']
-
-configopts = '--with-generic-simple --disable-shared '
-configopts += 'FCFLAGS="-I$EBROOTIMKL/mkl/include/intel64/lp64 $FCFLAGS" LIBS="$LIBSCALAPACK"'
-buildopts = ' V=1 LIBS="$LIBSCALAPACK"'
-start_dir = '%(name)s_%(version)s'
-
-builddependencies = [('Automake', '1.13.4')]
-
-parallel = 1
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/e/ELPA/ELPA-2013.11-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/e/ELPA/ELPA-2013.11-ictce-5.5.0.eb
deleted file mode 100644
index 05d749936e5..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ELPA/ELPA-2013.11-ictce-5.5.0.eb
+++ /dev/null
@@ -1,35 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Authors:: Inge Gutheil , Alan O'Cais
-# License:: MIT/GPL
-# $Id$
-#
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'ELPA'
-version = '2013.11'
-
-homepage = 'http://elpa.rzg.mpg.de'
-description = """Eigenvalue SoLvers for Petaflop-Applications ."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'optarch': True, 'usempi': True}
-
-# download at http://elpa.rzg.mpg.de/elpa-tar-archive
-sources = ['%(name)s_%(version)s.006_20140312.tar.gz']
-
-patches = ['ELPA_fix-tests.patch']
-
-configopts = '--with-generic-simple --disable-shared '
-configopts += 'FCFLAGS="-I$EBROOTIMKL/mkl/include/intel64/lp64 $FCFLAGS" LIBS="$LIBSCALAPACK"'
-buildopts = ' V=1 LIBS="$LIBSCALAPACK"'
-start_dir = '%(name)s_%(version)s'
-
-builddependencies = [('Automake', '1.13.4')]
-
-parallel = 1
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/e/ELPH/ELPH-1.0.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/e/ELPH/ELPH-1.0.1-goolf-1.4.10.eb
deleted file mode 100644
index 5f261e1c14f..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ELPH/ELPH-1.0.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = 'ELPH'
-version = '1.0.1'
-
-homepage = 'http://ccb.jhu.edu/software/ELPH/index.shtml'
-description = """ ELPH is a general-purpose Gibbs sampler for finding motifs in a set
- of DNA or protein sequences. The program takes as input a set containing anywhere from
- a few dozen to thousands of sequences, and searches through them for the most common motif,
- assuming that each sequence contains one copy of the motif. We have used ELPH to find
- patterns such as ribosome binding sites (RBSs) and exon splicing enhancers (ESEs). """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://ccb.jhu.edu/software/ELPH/']
-sources = [SOURCE_TAR_GZ]
-
-start_dir = 'sources'
-
-buildopts = ' CC="$CC"'
-
-parallel = 1
-
-files_to_copy = [(["elph"], "bin"), "COPYRIGHT", "LICENSE", "Readme.ELPH", "VERSION"]
-
-sanity_check_paths = {
- 'files': ["bin/elph"],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/e/ELPH/ELPH-1.0.1-ictce-6.2.5.eb b/easybuild/easyconfigs/__archive__/e/ELPH/ELPH-1.0.1-ictce-6.2.5.eb
deleted file mode 100644
index 71841b9321b..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ELPH/ELPH-1.0.1-ictce-6.2.5.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = 'ELPH'
-version = '1.0.1'
-
-homepage = 'http://ccb.jhu.edu/software/ELPH/index.shtml'
-description = """ ELPH is a general-purpose Gibbs sampler for finding motifs in a set
- of DNA or protein sequences. The program takes as input a set containing anywhere from
- a few dozen to thousands of sequences, and searches through them for the most common motif,
- assuming that each sequence contains one copy of the motif. We have used ELPH to find
- patterns such as ribosome binding sites (RBSs) and exon splicing enhancers (ESEs). """
-
-toolchain = {'name': 'ictce', 'version': '6.2.5'}
-
-source_urls = ['http://ccb.jhu.edu/software/ELPH/']
-sources = [SOURCE_TAR_GZ]
-
-start_dir = 'sources'
-
-buildopts = ' CC="$CC"'
-
-parallel = 1
-
-files_to_copy = [(["elph"], "bin"), "COPYRIGHT", "LICENSE", "Readme.ELPH", "VERSION"]
-
-sanity_check_paths = {
- 'files': ["bin/elph"],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/e/ELinks/ELinks-0.12pre5-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/e/ELinks/ELinks-0.12pre5-goolf-1.4.10.eb
deleted file mode 100644
index c8cce9a3c7e..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ELinks/ELinks-0.12pre5-goolf-1.4.10.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'ELinks'
-version = '0.12pre5'
-
-homepage = 'http://elinks.or.cz/'
-description = """ELinks-0.12pre5: Extended/Enhanced Links"""
-
-sources = [SOURCELOWER_TAR_BZ2]
-source_urls = ['http://elinks.or.cz/download/']
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sanity_check_paths = {
- 'files': ['bin/elinks'],
- 'dirs': []
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/e/ELinks/ELinks-0.12pre5-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/e/ELinks/ELinks-0.12pre5-ictce-5.3.0.eb
deleted file mode 100644
index 0c4dfa07a3a..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ELinks/ELinks-0.12pre5-ictce-5.3.0.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'ELinks'
-version = '0.12pre5'
-
-homepage = 'http://elinks.or.cz/'
-description = """ELinks-0.12pre5: Extended/Enhanced Links"""
-
-sources = [SOURCELOWER_TAR_BZ2]
-source_urls = ['http://elinks.or.cz/download/']
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sanity_check_paths = {
- 'files': ['bin/elinks'],
- 'dirs': []
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/e/EMAN2/EMAN2-2.11-foss-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/__archive__/e/EMAN2/EMAN2-2.11-foss-2015a-Python-2.7.9.eb
deleted file mode 100644
index e763143dc4f..00000000000
--- a/easybuild/easyconfigs/__archive__/e/EMAN2/EMAN2-2.11-foss-2015a-Python-2.7.9.eb
+++ /dev/null
@@ -1,44 +0,0 @@
-easyblock = 'CMakeMake'
-
-name = 'EMAN2'
-version = '2.11'
-
-homepage = 'http://blake.bcm.edu/emanwiki/EMAN2'
-description = """EMAN2 is the successor to EMAN1. It is a broadly based greyscale scientific image processing suite
- with a primary focus on processing data from transmission electron microscopes. """
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = ['http://ncmi.bcm.edu/ncmi/software/counter_222/software_130/']
-sources = ['eman%(version)s.source.tar.gz']
-
-pyver = '2.7.9'
-versionsuffix = '-Python-%s' % pyver
-
-dependencies = [
- # FFTW provided via toolchain
- ('GSL', '1.16'),
- ('Python', pyver), # also provides numpy
- ('Boost', '1.58.0', versionsuffix),
- ('IPython', '3.2.0', versionsuffix),
- ('HDF5', '1.8.15-patch1'),
- ('freetype', '2.6'),
- # optional
- ('PyQt', '4.11.4', versionsuffix),
- ('LibTIFF', '4.0.4'),
- ('libpng', '1.6.17'),
-]
-builddependencies = [('CMake', '3.2.3')]
-
-start_dir = 'eman2'
-separate_build_dir = True
-
-configopts = "-DEMAN_INSTALL_PREFIX=%(installdir)s -DENABLE_FTGL=OFF"
-
-sanity_check_paths = {
- 'files': ['bin/e2proc2d.py', 'bin/e2proc3d.py', 'bin/e2bdb.py', 'bin/e2iminfo.py', 'bin/e2display.py',
- 'bin/e2filtertool.py'],
- 'dirs': ['examples', 'include', 'lib', 'test/rt'],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/e/EMAN2/EMAN2-2.11-intel-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/__archive__/e/EMAN2/EMAN2-2.11-intel-2015a-Python-2.7.9.eb
deleted file mode 100644
index 82523c603be..00000000000
--- a/easybuild/easyconfigs/__archive__/e/EMAN2/EMAN2-2.11-intel-2015a-Python-2.7.9.eb
+++ /dev/null
@@ -1,44 +0,0 @@
-easyblock = 'CMakeMake'
-
-name = 'EMAN2'
-version = '2.11'
-
-homepage = 'http://blake.bcm.edu/emanwiki/EMAN2'
-description = """EMAN2 is the successor to EMAN1. It is a broadly based greyscale scientific image processing suite
- with a primary focus on processing data from transmission electron microscopes. """
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://ncmi.bcm.edu/ncmi/software/counter_222/software_130/']
-sources = ['eman%(version)s.source.tar.gz']
-
-pyver = '2.7.9'
-versionsuffix = '-Python-%s' % pyver
-
-dependencies = [
- ('FFTW', '3.3.4'),
- ('GSL', '1.16'),
- ('Python', pyver), # also provides numpy
- ('Boost', '1.58.0', versionsuffix),
- ('IPython', '3.2.0', versionsuffix),
- ('HDF5', '1.8.15-patch1'),
- ('freetype', '2.6'),
- # optional
- ('PyQt', '4.11.4', versionsuffix),
- ('LibTIFF', '4.0.4'),
- ('libpng', '1.6.17'),
-]
-builddependencies = [('CMake', '3.2.3')]
-
-start_dir = 'eman2'
-separate_build_dir = True
-
-configopts = "-DEMAN_INSTALL_PREFIX=%(installdir)s -DENABLE_FTGL=OFF"
-
-sanity_check_paths = {
- 'files': ['bin/e2proc2d.py', 'bin/e2proc3d.py', 'bin/e2bdb.py', 'bin/e2iminfo.py', 'bin/e2display.py',
- 'bin/e2filtertool.py'],
- 'dirs': ['examples', 'include', 'lib', 'test/rt'],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/e/EMBOSS/EMBOSS-6.5.7-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/e/EMBOSS/EMBOSS-6.5.7-goolf-1.4.10.eb
deleted file mode 100644
index 573a00a1859..00000000000
--- a/easybuild/easyconfigs/__archive__/e/EMBOSS/EMBOSS-6.5.7-goolf-1.4.10.eb
+++ /dev/null
@@ -1,42 +0,0 @@
-# authors: Kenneth Hoste (Ghent University), George Tsouloupas , Fotis Georgatos
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-
-easyblock = 'ConfigureMake'
-
-name = 'EMBOSS'
-version = '6.5.7'
-
-homepage = 'http://emboss.sourceforge.net/'
-description = """EMBOSS is 'The European Molecular Biology Open Software Suite'.
- EMBOSS is a free Open Source software analysis package specially developed for
- the needs of the molecular biology (e.g. EMBnet) user community."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['ftp://emboss.open-bio.org/pub/EMBOSS/old/%(version_major_minor)s.0/']
-sources = [SOURCE_TAR_GZ]
-checksums = ['6a2cb3f93d5e9415c74ab0f6b1ede5f0']
-
-patches = ['EMBOSS_disable-embossupdate.patch']
-
-dependencies = [
- ('libharu', '2.2.0'),
- ('Java', '1.7.0_10', '', True),
-]
-
-configopts = " --with-hpdf=$EBROOTLIBHARU "
-
-# jemboss.jar does not build in a parallel build
-parallel = 1
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['seqret', 'aligncopy', 'profit', 'prophet']] +
- ['lib/lib%s.a' % x for x in ['acd', 'ajax', 'ajaxdb', 'ajaxg', 'eexpat', 'ensembl',
- 'epcre', 'eplplot', 'ezlib', 'nucleus']] +
- ['share/EMBOSS/jemboss/lib/jemboss.jar'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/e/EMBOSS/EMBOSS-6.5.7-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/e/EMBOSS/EMBOSS-6.5.7-ictce-5.3.0.eb
deleted file mode 100644
index cfcf1c4b41a..00000000000
--- a/easybuild/easyconfigs/__archive__/e/EMBOSS/EMBOSS-6.5.7-ictce-5.3.0.eb
+++ /dev/null
@@ -1,42 +0,0 @@
-# authors: Kenneth Hoste (Ghent University), George Tsouloupas , Fotis Georgatos
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-
-easyblock = 'ConfigureMake'
-
-name = 'EMBOSS'
-version = '6.5.7'
-
-homepage = 'http://emboss.sourceforge.net/'
-description = """EMBOSS is 'The European Molecular Biology Open Software Suite'.
- EMBOSS is a free Open Source software analysis package specially developed for
- the needs of the molecular biology (e.g. EMBnet) user community."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['ftp://emboss.open-bio.org/pub/EMBOSS/old/%(version_major_minor)s.0/']
-sources = [SOURCE_TAR_GZ]
-checksums = ['6a2cb3f93d5e9415c74ab0f6b1ede5f0']
-
-patches = ['EMBOSS_disable-embossupdate.patch']
-
-dependencies = [
- ('libharu', '2.2.0'),
- ('Java', '1.7.0_10', '', True),
-]
-
-configopts = " --with-hpdf=$EBROOTLIBHARU "
-
-# jemboss.jar does not build in a parallel build
-parallel = 1
-
-sanity_check_paths = {
- 'files': ['bin/%s' % x for x in ['seqret', 'aligncopy', 'profit', 'prophet']] +
- ['lib/lib%s.a' % x for x in ['acd', 'ajax', 'ajaxdb', 'ajaxg', 'eexpat', 'ensembl',
- 'epcre', 'eplplot', 'ezlib', 'nucleus']] +
- ['share/EMBOSS/jemboss/lib/jemboss.jar'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/e/ESMF/ESMF-5.3.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/e/ESMF/ESMF-5.3.0-goolf-1.4.10.eb
deleted file mode 100644
index b38796e7bcb..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ESMF/ESMF-5.3.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'ESMF'
-version = '5.3.0'
-
-homepage = 'http://sourceforge.net/projects/esmf'
-description = """The Earth System Modeling Framework (ESMF) is software for building and coupling weather,
- climate, and related models."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%s_%s_src.tar.gz' % (name.lower(), '_'.join(version.split('.')))]
-
-dependencies = [
- ('netCDF', '4.1.3'),
-]
-
-parallel = 1
-
-moduleclass = 'geo'
diff --git a/easybuild/easyconfigs/__archive__/e/ESMF/ESMF-6.1.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/e/ESMF/ESMF-6.1.1-goolf-1.4.10.eb
deleted file mode 100644
index 810afa06118..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ESMF/ESMF-6.1.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'ESMF'
-version = '6.1.1'
-
-homepage = 'http://sourceforge.net/projects/esmf'
-description = """The Earth System Modeling Framework (ESMF) is software for building and coupling weather,
- climate, and related models."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'usempi': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%s_%s_src.tar.gz' % (name.lower(), '_'.join(version.split('.')))]
-
-dependencies = [
- ('netCDF', '4.2.1.1'),
- ('netCDF-Fortran', '4.2'),
- ('netCDF-C++', '4.2'),
-]
-
-moduleclass = 'geo'
diff --git a/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-goolf-1.4.10-parallel.eb b/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-goolf-1.4.10-parallel.eb
deleted file mode 100644
index f31aca4bb2a..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-goolf-1.4.10-parallel.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Josh Berryman , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-80.html
-##
-
-name = 'ESPResSo'
-version = '3.1.1'
-versionsuffix = '-parallel'
-
-homepage = 'http://espressomd.org/'
-description = """ESPResSo is a highly versatile software package for performing
- and analyzing scientific Molecular Dynamics many-particle simulations
- of coarse-grained atomistic or bead-spring models as they are used in
- soft-matter research in physics, chemistry and molecular biology."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True, 'usempi': True}
-configopts = '--with-mpi'
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [('http://download.savannah.gnu.org/releases/espressomd/')]
-
-dependencies = [
- ('Tcl', '8.5.12'),
-]
-
-moduleclass = 'phys'
diff --git a/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-goolf-1.4.10-serial.eb b/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-goolf-1.4.10-serial.eb
deleted file mode 100644
index 250bf7f6ef8..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-goolf-1.4.10-serial.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Josh Berryman , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-80.html
-##
-
-name = 'ESPResSo'
-version = '3.1.1'
-versionsuffix = '-serial'
-
-homepage = 'http://espressomd.org/'
-description = """ESPResSo is a highly versatile software package for performing
- and analyzing scientific Molecular Dynamics many-particle simulations
- of coarse-grained atomistic or bead-spring models as they are used in
- soft-matter research in physics, chemistry and molecular biology."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-configopts = '' # Modify this line to add or change espresso config options
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [('http://download.savannah.gnu.org/releases/espressomd/')]
-
-dependencies = [
- ('Tcl', '8.5.12'),
-]
-
-moduleclass = 'phys'
diff --git a/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-ictce-5.3.0-parallel.eb b/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-ictce-5.3.0-parallel.eb
deleted file mode 100644
index 16a651c9b37..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-ictce-5.3.0-parallel.eb
+++ /dev/null
@@ -1,35 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Josh Berryman , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-80.html
-##
-
-name = 'ESPResSo'
-version = '3.1.1'
-versionsuffix = '-parallel'
-
-homepage = 'http://espressomd.org/'
-description = """ESPResSo is a highly versatile software package for performing
- and analyzing scientific Molecular Dynamics many-particle simulations
- of coarse-grained atomistic or bead-spring models as they are used in
- soft-matter research in physics, chemistry and molecular biology."""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'optarch': True, 'pic': True, 'usempi': True}
-configopts = '--with-mpi'
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [('http://download.savannah.gnu.org/releases/espressomd/')]
-
-dependencies = [
- ('Tcl', '8.5.12'),
-]
-
-moduleclass = 'phys'
diff --git a/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-ictce-5.3.0-serial.eb b/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-ictce-5.3.0-serial.eb
deleted file mode 100644
index be9504c095e..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ESPResSo/ESPResSo-3.1.1-ictce-5.3.0-serial.eb
+++ /dev/null
@@ -1,35 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Josh Berryman , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-80.html
-##
-
-name = 'ESPResSo'
-version = '3.1.1'
-versionsuffix = '-serial'
-
-homepage = 'http://espressomd.org/'
-description = """ESPResSo is a highly versatile software package for performing
- and analyzing scientific Molecular Dynamics many-particle simulations
- of coarse-grained atomistic or bead-spring models as they are used in
- soft-matter research in physics, chemistry and molecular biology."""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'optarch': True, 'pic': True, 'usempi': True}
-configopts = '--with-mpi'
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [('http://download.savannah.gnu.org/releases/espressomd/')]
-
-dependencies = [
- ('Tcl', '8.5.12'),
-]
-
-moduleclass = 'phys'
diff --git a/easybuild/easyconfigs/__archive__/e/ETSF_IO/ETSF_IO-1.0.4-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/e/ETSF_IO/ETSF_IO-1.0.4-goolf-1.4.10.eb
deleted file mode 100644
index cfe2dfd1dab..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ETSF_IO/ETSF_IO-1.0.4-goolf-1.4.10.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2013-2014 The Cyprus Institute
-# Authors:: Thekla Loizou
-# License:: MIT/GPL
-#
-##
-easyblock = 'ConfigureMake'
-
-name = 'ETSF_IO'
-version = '1.0.4'
-
-homepage = 'http://www.etsf.eu/resources/software/libraries_and_tools'
-description = """A library of F90 routines to read/write the ETSF file
-format has been written. It is called ETSF_IO and available under LGPL. """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://www.etsf.eu/system/files']
-sources = [SOURCELOWER_TAR_GZ]
-
-configopts = "--with-netcdf-prefix=$EBROOTNETCDF "
-configopts += "--with-netcdf-libs='-L$EBROOTNETCDF/lib -lnetcdf -lnetcdff' "
-configopts += " --with-netcdf-incs='-I$EBROOTNETCDF/include'"
-
-dependencies = [('netCDF', '4.1.3')]
-
-sanity_check_paths = {
- 'files': ["bin/etsf_io"],
- 'dirs': []
-}
-
-moduleclass = 'lib'
diff --git a/easybuild/easyconfigs/__archive__/e/ETSF_IO/ETSF_IO-1.0.4-intel-2015b.eb b/easybuild/easyconfigs/__archive__/e/ETSF_IO/ETSF_IO-1.0.4-intel-2015b.eb
deleted file mode 100644
index 502c0c493a6..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ETSF_IO/ETSF_IO-1.0.4-intel-2015b.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2013-2014 The Cyprus Institute
-# Authors:: Thekla Loizou
-# License:: MIT/GPL
-#
-##
-easyblock = 'ConfigureMake'
-
-name = 'ETSF_IO'
-version = '1.0.4'
-
-homepage = 'http://www.etsf.eu/resources/software/libraries_and_tools'
-description = """A library of F90 routines to read/write the ETSF file
-format has been written. It is called ETSF_IO and available under LGPL. """
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['http://www.etsf.eu/system/files']
-sources = [SOURCELOWER_TAR_GZ]
-
-configopts = "--with-netcdf-prefix=$EBROOTNETCDF "
-configopts += "--with-netcdf-libs='-L$EBROOTNETCDF/lib -L$EBROOTNETCDFMINFORTRAN/lib -lnetcdf -lnetcdff' "
-configopts += " --with-netcdf-incs='-I$EBROOTNETCDF/include -I$EBROOTNETCDFMINFORTRAN/include '"
-
-dependencies = [
- ('netCDF', '4.3.3.1'),
- ('netCDF-Fortran', '4.4.2'),
-]
-
-sanity_check_paths = {
- 'files': ["bin/etsf_io"],
- 'dirs': []
-}
-
-moduleclass = 'lib'
diff --git a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-2.0.17-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-2.0.17-goolf-1.4.10.eb
deleted file mode 100644
index 447fdcc2f14..00000000000
--- a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-2.0.17-goolf-1.4.10.eb
+++ /dev/null
@@ -1,13 +0,0 @@
-name = 'Eigen'
-version = '2.0.17'
-
-homepage = 'http://eigen.tuxfamily.org/index.php?title=Main_Page'
-description = """Eigen is a C++ template library for linear algebra:
-matrices, vectors, numerical solvers, and related algorithms."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://bitbucket.org/%(namelower)s/%(namelower)s/get']
-sources = ['%(version)s.tar.bz2']
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.1-goolf-1.4.10.eb
deleted file mode 100644
index 03e5ae31420..00000000000
--- a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'Eigen'
-version = '3.1.1'
-
-homepage = 'http://eigen.tuxfamily.org/index.php?title=Main_Page'
-description = """Eigen is a C++ template library for linear algebra:
-matrices, vectors, numerical solvers, and related algorithms."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://bitbucket.org/%(namelower)s/%(namelower)s/get']
-sources = ['%(version)s.tar.bz2']
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.1-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.1-ictce-5.3.0.eb
deleted file mode 100644
index 29c0f0a24e1..00000000000
--- a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.1-ictce-5.3.0.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'Eigen'
-version = '3.1.1'
-
-homepage = 'http://eigen.tuxfamily.org/index.php?title=Main_Page'
-description = """Eigen is a C++ template library for linear algebra:
- matrices, vectors, numerical solvers, and related algorithms."""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['http://bitbucket.org/%(namelower)s/%(namelower)s/get']
-sources = ['%(version)s.tar.bz2']
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.4-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.4-goolf-1.4.10.eb
deleted file mode 100644
index 52df5baa8d4..00000000000
--- a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.4-goolf-1.4.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'Eigen'
-version = '3.1.4'
-
-homepage = 'http://eigen.tuxfamily.org/index.php?title=Main_Page'
-description = """Eigen is a C++ template library for linear algebra:
- matrices, vectors, numerical solvers, and related algorithms."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://bitbucket.org/%(namelower)s/%(namelower)s/get']
-sources = ['%(version)s.tar.bz2']
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.4-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.4-ictce-5.3.0.eb
deleted file mode 100644
index 0fec576ce68..00000000000
--- a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.4-ictce-5.3.0.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'Eigen'
-version = '3.1.4'
-
-homepage = 'http://eigen.tuxfamily.org/index.php?title=Main_Page'
-description = """Eigen is a C++ template library for linear algebra:
- matrices, vectors, numerical solvers, and related algorithms."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['http://bitbucket.org/%(namelower)s/%(namelower)s/get']
-sources = ['%(version)s.tar.bz2']
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.4-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.4-ictce-5.5.0.eb
deleted file mode 100644
index 70ef04ea87c..00000000000
--- a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.1.4-ictce-5.5.0.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'Eigen'
-version = '3.1.4'
-
-homepage = 'http://eigen.tuxfamily.org/index.php?title=Main_Page'
-description = """Eigen is a C++ template library for linear algebra:
- matrices, vectors, numerical solvers, and related algorithms."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = ['http://bitbucket.org/%(namelower)s/%(namelower)s/get']
-sources = ['%(version)s.tar.bz2']
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.0-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.0-ictce-5.5.0.eb
deleted file mode 100644
index 7831be18f55..00000000000
--- a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.0-ictce-5.5.0.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'Eigen'
-version = '3.2.0'
-
-homepage = 'http://eigen.tuxfamily.org/index.php?title=Main_Page'
-description = """Eigen is a C++ template library for linear algebra:
- matrices, vectors, numerical solvers, and related algorithms."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = ['http://bitbucket.org/%(namelower)s/%(namelower)s/get']
-sources = ['%(version)s.tar.bz2']
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.2-goolf-1.5.14.eb b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.2-goolf-1.5.14.eb
deleted file mode 100644
index 1e4a8f49a58..00000000000
--- a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.2-goolf-1.5.14.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'Eigen'
-version = '3.2.2'
-
-homepage = 'http://eigen.tuxfamily.org/index.php?title=Main_Page'
-description = """Eigen is a C++ template library for linear algebra:
- matrices, vectors, numerical solvers, and related algorithms."""
-
-toolchain = {'name': 'goolf', 'version': '1.5.14'}
-
-source_urls = [BITBUCKET_SOURCE]
-sources = ['%(version)s.tar.bz2']
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.2-ictce-7.1.2.eb b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.2-ictce-7.1.2.eb
deleted file mode 100644
index f1219c065ad..00000000000
--- a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.2-ictce-7.1.2.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'Eigen'
-version = '3.2.2'
-
-homepage = 'http://eigen.tuxfamily.org/index.php?title=Main_Page'
-description = """Eigen is a C++ template library for linear algebra:
- matrices, vectors, numerical solvers, and related algorithms."""
-
-toolchain = {'name': 'ictce', 'version': '7.1.2'}
-
-source_urls = ['http://bitbucket.org/%(namelower)s/%(namelower)s/get']
-sources = ['%(version)s.tar.bz2']
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.2-intel-2014b.eb b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.2-intel-2014b.eb
deleted file mode 100644
index 16de65cee47..00000000000
--- a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.2-intel-2014b.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'Eigen'
-version = '3.2.2'
-
-homepage = 'http://eigen.tuxfamily.org/index.php?title=Main_Page'
-description = """Eigen is a C++ template library for linear algebra:
- matrices, vectors, numerical solvers, and related algorithms."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = ['http://bitbucket.org/%(namelower)s/%(namelower)s/get']
-sources = ['%(version)s.tar.bz2']
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.3-foss-2015a.eb b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.3-foss-2015a.eb
deleted file mode 100644
index d9a3a23dd02..00000000000
--- a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.3-foss-2015a.eb
+++ /dev/null
@@ -1,13 +0,0 @@
-name = 'Eigen'
-version = '3.2.3'
-
-homepage = 'http://eigen.tuxfamily.org/index.php?title=Main_Page'
-description = """Eigen is a C++ template library for linear algebra:
- matrices, vectors, numerical solvers, and related algorithms."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = [BITBUCKET_SOURCE]
-sources = ['%(version)s.tar.bz2']
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.3-intel-2015a.eb b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.3-intel-2015a.eb
deleted file mode 100644
index fcb13a817fb..00000000000
--- a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.3-intel-2015a.eb
+++ /dev/null
@@ -1,13 +0,0 @@
-name = 'Eigen'
-version = '3.2.3'
-
-homepage = 'http://eigen.tuxfamily.org/index.php?title=Main_Page'
-description = """Eigen is a C++ template library for linear algebra:
- matrices, vectors, numerical solvers, and related algorithms."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://bitbucket.org/%(namelower)s/%(namelower)s/get']
-sources = ['%(version)s.tar.bz2']
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.6-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.6-goolf-1.7.20.eb
deleted file mode 100644
index 2ac82d539af..00000000000
--- a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.6-goolf-1.7.20.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-name = 'Eigen'
-version = '3.2.6'
-
-homepage = 'http://eigen.tuxfamily.org/index.php?title=Main_Page'
-description = """Eigen is a C++ template library for linear algebra:
- matrices, vectors, numerical solvers, and related algorithms."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = [BITBUCKET_SOURCE]
-sources = ['%(version)s.tar.bz2']
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.7-intel-2015b.eb b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.7-intel-2015b.eb
deleted file mode 100644
index 499d24c76ff..00000000000
--- a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.7-intel-2015b.eb
+++ /dev/null
@@ -1,13 +0,0 @@
-name = 'Eigen'
-version = '3.2.7'
-
-homepage = 'http://eigen.tuxfamily.org/index.php?title=Main_Page'
-description = """Eigen is a C++ template library for linear algebra:
- matrices, vectors, numerical solvers, and related algorithms."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['http://bitbucket.org/%(namelower)s/%(namelower)s/get']
-sources = ['%(version)s.tar.bz2']
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.9-foss-2015a.eb b/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.9-foss-2015a.eb
deleted file mode 100644
index 308bb395d6e..00000000000
--- a/easybuild/easyconfigs/__archive__/e/Eigen/Eigen-3.2.9-foss-2015a.eb
+++ /dev/null
@@ -1,13 +0,0 @@
-name = 'Eigen'
-version = '3.2.9'
-
-homepage = 'http://eigen.tuxfamily.org/index.php?title=Main_Page'
-description = """Eigen is a C++ template library for linear algebra:
- matrices, vectors, numerical solvers, and related algorithms."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = ['http://bitbucket.org/%(namelower)s/%(namelower)s/get']
-sources = ['%(version)s.tar.bz2']
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/e/ErlangOTP/ErlangOTP-R16B02-GCC-4.7.2-no-Java.eb b/easybuild/easyconfigs/__archive__/e/ErlangOTP/ErlangOTP-R16B02-GCC-4.7.2-no-Java.eb
deleted file mode 100644
index 570e7eb37f8..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ErlangOTP/ErlangOTP-R16B02-GCC-4.7.2-no-Java.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'ErlangOTP'
-version = 'R16B02'
-versionsuffix = "-no-Java"
-
-homepage = 'http://www.erlang.org/'
-description = """Erlang is a general-purpose concurrent, garbage-collected programming language and runtime system."""
-
-toolchain = {'name': 'GCC', 'version': '4.7.2'}
-
-sources = ['otp_src_%(version)s.tar.gz']
-source_urls = ['http://www.erlang.org/download']
-
-configopts = '--without-javac '
-
-sanity_check_paths = {
- 'files': ['bin/erl'],
- 'dirs': ['lib/erlang/bin', 'lib/erlang/lib'],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/e/ErlangOTP/ErlangOTP-R16B02-GCC-4.7.2.eb b/easybuild/easyconfigs/__archive__/e/ErlangOTP/ErlangOTP-R16B02-GCC-4.7.2.eb
deleted file mode 100644
index 3968d910aa4..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ErlangOTP/ErlangOTP-R16B02-GCC-4.7.2.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'ErlangOTP'
-version = 'R16B02'
-
-homepage = 'http://www.erlang.org/'
-description = """Erlang is a general-purpose concurrent, garbage-collected programming language and runtime system."""
-
-toolchain = {'name': 'GCC', 'version': '4.7.2'}
-
-sources = ['otp_src_%(version)s.tar.gz']
-source_urls = ['http://www.erlang.org/download']
-
-builddependencies = [('Java', '1.7.0_45', '', True)]
-
-configopts = '--with-javac '
-
-sanity_check_paths = {
- 'files': ['bin/erl'],
- 'dirs': ['lib/erlang/bin', 'lib/erlang/lib', 'lib/erlang/lib/jinterface-1.5.8'],
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/e/ErlangOTP/ErlangOTP-R16B02-goolf-1.4.10-no-Java.eb b/easybuild/easyconfigs/__archive__/e/ErlangOTP/ErlangOTP-R16B02-goolf-1.4.10-no-Java.eb
deleted file mode 100644
index 32b4b7697d0..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ErlangOTP/ErlangOTP-R16B02-goolf-1.4.10-no-Java.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-##
-
-easyblock = 'ConfigureMake'
-
-name = "ErlangOTP"
-version = "R16B02"
-versionsuffix = "-no-Java"
-
-homepage = 'http://www.erlang.org/'
-description = """Erlang is a programming language used to build massively scalable
- soft real-time systems with requirements on high availability. Some of its uses are
- in telecoms, banking, e-commerce, computer telephony and instant messaging. Erlang's
- runtime system has built-in support for concurrency, distribution and fault tolerance."""
-
-toolchain = {'version': '1.4.10', 'name': 'goolf'}
-
-sources = ['otp_src_%(version)s.tar.gz']
-source_urls = ['http://www.erlang.org/download/']
-
-configopts = ' --without-javac '
-
-builddependencies = [('Autoconf', '2.69')]
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ["bin/erl", "bin/erlc"],
- 'dirs': []
-}
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/e/Exonerate/Exonerate-2.2.0-foss-2015b.eb b/easybuild/easyconfigs/__archive__/e/Exonerate/Exonerate-2.2.0-foss-2015b.eb
deleted file mode 100644
index 84c6277a5a0..00000000000
--- a/easybuild/easyconfigs/__archive__/e/Exonerate/Exonerate-2.2.0-foss-2015b.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-# Modified by: Adam Huffman
-# The Francis Crick Institute
-
-easyblock = 'ConfigureMake'
-
-name = 'Exonerate'
-version = '2.2.0'
-
-homepage = 'http://www.ebi.ac.uk/about/vertebrate-genomics/software/exonerate'
-description = """ Exonerate is a generic tool for pairwise sequence comparison.
- It allows you to align sequences using a many alignment models, using either
- exhaustive dynamic programming, or a variety of heuristics. """
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = ['http://ftp.ebi.ac.uk/pub/software/vertebrategenomics/%(namelower)s/']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('GLib', '2.34.3')]
-
-# parallel build fails
-parallel = 1
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["exonerate", "fastaclip", "fastaoverlap"]],
- 'dirs': ["share"],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/e/Exonerate/Exonerate-2.2.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/e/Exonerate/Exonerate-2.2.0-goolf-1.4.10.eb
deleted file mode 100644
index db59680faab..00000000000
--- a/easybuild/easyconfigs/__archive__/e/Exonerate/Exonerate-2.2.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'ConfigureMake'
-
-name = 'Exonerate'
-version = '2.2.0'
-
-homepage = 'http://www.ebi.ac.uk/~guy/exonerate/'
-description = """ Exonerate is a generic tool for pairwise sequence comparison.
- It allows you to align sequences using a many alignment models, using either
- exhaustive dynamic programming, or a variety of heuristics. """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [homepage]
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('GLib', '2.34.3')]
-
-# parallel build fails
-parallel = 1
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["exonerate", "fastaclip", "fastaoverlap"]],
- 'dirs': ["share"],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/e/Exonerate/Exonerate-2.2.0-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/e/Exonerate/Exonerate-2.2.0-ictce-5.3.0.eb
deleted file mode 100644
index 19e0931e000..00000000000
--- a/easybuild/easyconfigs/__archive__/e/Exonerate/Exonerate-2.2.0-ictce-5.3.0.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'ConfigureMake'
-
-name = 'Exonerate'
-version = '2.2.0'
-
-homepage = 'http://www.ebi.ac.uk/~guy/exonerate/'
-description = """ Exonerate is a generic tool for pairwise sequence comparison.
- It allows you to align sequences using a many alignment models, using either
- exhaustive dynamic programming, or a variety of heuristics. """
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = [homepage]
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('GLib', '2.34.3')]
-
-# parallel build fails
-parallel = 1
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["exonerate", "fastaclip", "fastaoverlap"]],
- 'dirs': ["share"],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/e/Exonerate/Exonerate-2.4.0-foss-2015b.eb b/easybuild/easyconfigs/__archive__/e/Exonerate/Exonerate-2.4.0-foss-2015b.eb
deleted file mode 100644
index 5ad43dfbdea..00000000000
--- a/easybuild/easyconfigs/__archive__/e/Exonerate/Exonerate-2.4.0-foss-2015b.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'ConfigureMake'
-
-name = 'Exonerate'
-version = '2.4.0'
-
-homepage = 'http://www.ebi.ac.uk/~guy/exonerate/'
-description = """ Exonerate is a generic tool for pairwise sequence comparison.
- It allows you to align sequences using a many alignment models, using either
- exhaustive dynamic programming, or a variety of heuristics. """
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = ['http://ftp.ebi.ac.uk/pub/software/vertebrategenomics/exonerate/']
-sources = [SOURCELOWER_TAR_GZ]
-checksums = ['f849261dc7c97ef1f15f222e955b0d3daf994ec13c9db7766f1ac7e77baa4042']
-
-builddependencies = [('pkg-config', '0.27.1')]
-
-dependencies = [('GLib', '2.46.2')]
-
-# parallel build fails
-parallel = 1
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["exonerate", "fastaclip", "fastaoverlap"]],
- 'dirs': ["share"],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/e/Extrae/Extrae-3.0.1-foss-2015a.eb b/easybuild/easyconfigs/__archive__/e/Extrae/Extrae-3.0.1-foss-2015a.eb
deleted file mode 100644
index a37c5f2e77b..00000000000
--- a/easybuild/easyconfigs/__archive__/e/Extrae/Extrae-3.0.1-foss-2015a.eb
+++ /dev/null
@@ -1,40 +0,0 @@
-# This is an easyconfig file for EasyBuild, see https://github.com/easybuilders/easybuild
-# Copyright:: Copyright 2013 Juelich Supercomputing Centre, Germany
-# Authors:: Bernd Mohr
-# License:: New BSD
-#
-# This work is based from experiences from the UNITE project
-# http://apps.fz-juelich.de/unite/
-##
-name = 'Extrae'
-version = '3.0.1'
-
-homepage = 'http://www.bsc.es/computer-sciences/performance-tools'
-description = """Extrae is the core instrumentation package developed by the Performance Tools
- group at BSC. Extrae is capable of instrumenting applications based on MPI, OpenMP, pthreads,
- CUDA1, OpenCL1, and StarSs1 using different instrumentation approaches. The information gathered
- by Extrae typically includes timestamped events of runtime calls, performance counters and source
- code references. Besides, Extrae provides its own API to allow the user to manually instrument his
- or her application."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-toolchainopts = {'usempi': True}
-
-# http://www.bsc.es/computer-sciences/performance-tools/downloads
-# Requires input of email address for download
-sources = [SOURCELOWER_TAR_BZ2]
-
-compname = 'GCC'
-compver = '4.9.2'
-
-# compiler toolchain depencies
-dependencies = [
- ('zlib', '1.2.8', '', (compname, compver)),
- ('Boost', '1.58.0', '-serial', (compname, compver)),
- ('libunwind', '1.1', '', (compname, compver)),
- ('libxml2', '2.9.2', '', (compname, compver)),
- ('libdwarf', '20150310', '', (compname, compver)),
- ('PAPI', '5.4.1'),
-]
-
-moduleclass = 'perf'
diff --git a/easybuild/easyconfigs/__archive__/e/eXpress/eXpress-1.5.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/e/eXpress/eXpress-1.5.1-goolf-1.4.10.eb
deleted file mode 100644
index 94c1eb603b9..00000000000
--- a/easybuild/easyconfigs/__archive__/e/eXpress/eXpress-1.5.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,42 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = "CMakeMake"
-
-name = "eXpress"
-version = "1.5.1"
-
-homepage = 'http://bio.math.berkeley.edu/eXpress/index.html'
-description = """ eXpress is a streaming tool for quantifying the abundances of a set
- of target sequences from sampled subsequences. Example applications include transcript-level
- RNA-Seq quantification, allele-specific/haplotype expression analysis (from RNA-Seq),
- transcription factor binding quantification in ChIP-Seq, and analysis of metagenomic data."""
-
-toolchain = {'version': '1.4.10', 'name': 'goolf'}
-
-sources = ['%(namelower)s-%(version)s-src.tgz']
-source_urls = ['http://bio.math.berkeley.edu/eXpress/downloads/%(namelower)s-%(version)s/']
-
-builddependencies = [
- ('CMake', '2.8.12'),
- ('BamTools', '2.2.3')
-]
-
-dependencies = [
- ('Boost', '1.51.0'), # Boost-1.53.0 not working?
- ('gperftools', '2.1'),
- ('protobuf', '2.5.0')
-]
-
-separate_build_dir = True
-
-patches = ['eXpress-1.5.1-libbamtools.patch']
-
-sanity_check_paths = {
- 'files': ["bin/express"],
- 'dirs': [""]
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/e/ed/ed-1.9-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/e/ed/ed-1.9-goolf-1.4.10.eb
deleted file mode 100644
index 2c5d7fe41f3..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ed/ed-1.9-goolf-1.4.10.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'ed'
-version = '1.9'
-
-homepage = 'http://www.gnu.org/software/ed/ed.html'
-description = """GNU ed is a line-oriented text editor."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [
- 'https://launchpad.net/ed/main/%(version)s/+download/',
- GNU_SOURCE,
-]
-sources = [SOURCE_TAR_GZ]
-checksums = ['d5b372cfadf073001823772272fceac2cfa87552c5cd5a8efc1c8aae61f45a88']
-
-sanity_check_paths = {
- 'files': ['bin/ed'],
- 'dirs': [],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/e/ed/ed-1.9-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/e/ed/ed-1.9-ictce-5.3.0.eb
deleted file mode 100644
index 7b11af7dc6d..00000000000
--- a/easybuild/easyconfigs/__archive__/e/ed/ed-1.9-ictce-5.3.0.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'ed'
-version = '1.9'
-
-homepage = 'http://www.gnu.org/software/ed/ed.html'
-description = """GNU ed is a line-oriented text editor."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = [
- 'https://launchpad.net/ed/main/%(version)s/+download/',
- GNU_SOURCE,
-]
-sources = [SOURCE_TAR_GZ]
-checksums = ['d5b372cfadf073001823772272fceac2cfa87552c5cd5a8efc1c8aae61f45a88']
-
-sanity_check_paths = {
- 'files': ['bin/ed'],
- 'dirs': [],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/e/eudev/eudev-3.0-intel-2014b.eb b/easybuild/easyconfigs/__archive__/e/eudev/eudev-3.0-intel-2014b.eb
deleted file mode 100644
index 464dcb0125d..00000000000
--- a/easybuild/easyconfigs/__archive__/e/eudev/eudev-3.0-intel-2014b.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'eudev'
-version = '3.0'
-
-homepage = 'https://wiki.gentoo.org/wiki/Project:Eudev'
-description = """eudev is a fork of systemd-udev with the goal of obtaining
- better compatibility with existing software such as
- OpenRC and Upstart, older kernels, various toolchains
- and anything else required by users and various distributions."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-toolchainopts = {'cstd': 'c99'}
-
-sources = [SOURCE_TAR_GZ]
-source_urls = ['http://dev.gentoo.org/~blueness/%(name)s/']
-patches = ['%(name)s-%(version)s_pre-2.6.34_kernel.patch']
-
-builddependencies = [
- ('gperf', '3.0.4'),
-]
-
-osdependencies = [('kernel-headers', 'linux-libc-dev')]
-
-configopts = '--disable-blkid --disable-selinux --disable-gudev --disable-manpages '
-runtest = 'check'
-
-sanity_check_paths = {
- 'files': ['bin/udevadm', 'include/libudev.h', 'include/udev.h', 'lib/libudev.so.1'],
- 'dirs': [],
-}
-
-moduleclass = 'system'
diff --git a/easybuild/easyconfigs/__archive__/e/eudev/eudev-3.0-intel-2015a.eb b/easybuild/easyconfigs/__archive__/e/eudev/eudev-3.0-intel-2015a.eb
deleted file mode 100644
index 245048609d0..00000000000
--- a/easybuild/easyconfigs/__archive__/e/eudev/eudev-3.0-intel-2015a.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'eudev'
-version = '3.0'
-
-homepage = 'https://wiki.gentoo.org/wiki/Project:Eudev'
-description = """eudev is a fork of systemd-udev with the goal of obtaining
- better compatibility with existing software such as
- OpenRC and Upstart, older kernels, various toolchains
- and anything else required by users and various distributions."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'cstd': 'c99'}
-
-sources = [SOURCE_TAR_GZ]
-source_urls = ['http://dev.gentoo.org/~blueness/%(name)s/']
-patches = ['%(name)s-%(version)s_pre-2.6.34_kernel.patch']
-
-builddependencies = [
- ('gperf', '3.0.4'),
-]
-
-osdependencies = [('kernel-headers', 'linux-libc-dev')]
-
-configopts = '--disable-blkid --disable-selinux --disable-gudev --disable-manpages '
-runtest = 'check'
-
-sanity_check_paths = {
- 'files': ['bin/udevadm', 'include/libudev.h', 'include/udev.h', 'lib/libudev.so.1'],
- 'dirs': [],
-}
-
-moduleclass = 'system'
diff --git a/easybuild/easyconfigs/__archive__/e/eudev/eudev-3.1.2-intel-2015b.eb b/easybuild/easyconfigs/__archive__/e/eudev/eudev-3.1.2-intel-2015b.eb
deleted file mode 100644
index da7d5f4069a..00000000000
--- a/easybuild/easyconfigs/__archive__/e/eudev/eudev-3.1.2-intel-2015b.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'eudev'
-version = '3.1.2'
-
-homepage = 'https://wiki.gentoo.org/wiki/Project:Eudev'
-description = """eudev is a fork of systemd-udev with the goal of obtaining
- better compatibility with existing software such as
- OpenRC and Upstart, older kernels, various toolchains
- and anything else required by users and various distributions."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'cstd': 'c99'}
-
-sources = [SOURCE_TAR_GZ]
-source_urls = ['http://dev.gentoo.org/~blueness/%(name)s/']
-patches = ['%(name)s-%(version)s_pre-2.6.34_kernel.patch']
-
-builddependencies = [
- ('gperf', '3.0.4'),
-]
-
-osdependencies = [('kernel-headers', 'linux-libc-dev')]
-
-configopts = '--disable-blkid --disable-selinux --disable-gudev --disable-manpages '
-runtest = 'check'
-
-sanity_check_paths = {
- 'files': ['bin/udevadm', 'include/libudev.h', 'include/udev.h', 'lib/libudev.so.1'],
- 'dirs': [],
-}
-
-moduleclass = 'system'
diff --git a/easybuild/easyconfigs/__archive__/e/eudev/eudev-3.1.5-foss-2015a.eb b/easybuild/easyconfigs/__archive__/e/eudev/eudev-3.1.5-foss-2015a.eb
deleted file mode 100644
index 6fa9d11cb47..00000000000
--- a/easybuild/easyconfigs/__archive__/e/eudev/eudev-3.1.5-foss-2015a.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'eudev'
-version = '3.1.5'
-
-homepage = 'https://wiki.gentoo.org/wiki/Project:Eudev'
-description = """eudev is a fork of systemd-udev with the goal of obtaining
- better compatibility with existing software such as
- OpenRC and Upstart, older kernels, various toolchains
- and anything else required by users and various distributions."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-sources = [SOURCE_TAR_GZ]
-source_urls = ['http://dev.gentoo.org/~blueness/%(name)s/']
-patches = ['%(name)s-3.1.2_pre-2.6.34_kernel.patch']
-
-builddependencies = [
- ('gperf', '3.0.4'),
-]
-
-osdependencies = [('kernel-headers', 'linux-libc-dev')]
-
-configopts = '--disable-blkid --disable-selinux --disable-gudev --disable-manpages '
-runtest = 'check'
-
-sanity_check_paths = {
- 'files': ['bin/udevadm', 'include/libudev.h', 'include/udev.h', 'lib/libudev.so.1'],
- 'dirs': [],
-}
-
-moduleclass = 'system'
diff --git a/easybuild/easyconfigs/__archive__/e/eudev/eudev-3.1.5-intel-2015b.eb b/easybuild/easyconfigs/__archive__/e/eudev/eudev-3.1.5-intel-2015b.eb
deleted file mode 100644
index b58e6148204..00000000000
--- a/easybuild/easyconfigs/__archive__/e/eudev/eudev-3.1.5-intel-2015b.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'eudev'
-version = '3.1.5'
-
-homepage = 'https://wiki.gentoo.org/wiki/Project:Eudev'
-description = """eudev is a fork of systemd-udev with the goal of obtaining
- better compatibility with existing software such as
- OpenRC and Upstart, older kernels, various toolchains
- and anything else required by users and various distributions."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'cstd': 'c99'}
-
-sources = [SOURCE_TAR_GZ]
-source_urls = ['http://dev.gentoo.org/~blueness/%(name)s/']
-patches = ['%(name)s-3.1.2_pre-2.6.34_kernel.patch']
-
-builddependencies = [
- ('gperf', '3.0.4'),
-]
-
-osdependencies = [('kernel-headers', 'linux-libc-dev')]
-
-configopts = '--disable-blkid --disable-selinux --disable-gudev --disable-manpages '
-runtest = 'check'
-
-sanity_check_paths = {
- 'files': ['bin/udevadm', 'include/libudev.h', 'include/udev.h', 'lib/libudev.so.1'],
- 'dirs': [],
-}
-
-moduleclass = 'system'
diff --git a/easybuild/easyconfigs/__archive__/e/evmix/evmix-2.1-intel-2014b-R-3.1.1.eb b/easybuild/easyconfigs/__archive__/e/evmix/evmix-2.1-intel-2014b-R-3.1.1.eb
deleted file mode 100644
index 2b79d60ce92..00000000000
--- a/easybuild/easyconfigs/__archive__/e/evmix/evmix-2.1-intel-2014b-R-3.1.1.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-easyblock = 'RPackage'
-
-name = 'evmix'
-version = '2.1'
-
-homepage = 'http://cran.r-project.org/web/packages/evmix'
-description = """evmix: Extreme Value Mixture Modelling,
- Threshold Estimation and Boundary Corrected Kernel Density Estimation"""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = [
- 'http://cran.r-project.org/src/contrib/',
- 'http://cran.r-project.org/src/contrib/Archive/evmix/',
-]
-sources = ['%(name)s_%(version)s.tar.gz']
-
-r = 'R'
-rver = '3.1.1'
-versionsuffix = '-%s-%s' % (r, rver)
-
-dependencies = [
- (r, rver),
- ('gsl', '1.9-10', versionsuffix),
-]
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['evmix'],
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/e/evmix/evmix-2.3-intel-2014b-R-3.1.1.eb b/easybuild/easyconfigs/__archive__/e/evmix/evmix-2.3-intel-2014b-R-3.1.1.eb
deleted file mode 100644
index b3a13971b30..00000000000
--- a/easybuild/easyconfigs/__archive__/e/evmix/evmix-2.3-intel-2014b-R-3.1.1.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-easyblock = 'RPackage'
-
-name = 'evmix'
-version = '2.3'
-
-homepage = 'http://cran.r-project.org/web/packages/evmix'
-description = """evmix: Extreme Value Mixture Modelling,
- Threshold Estimation and Boundary Corrected Kernel Density Estimation"""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = [
- 'http://cran.r-project.org/src/contrib/',
- 'http://cran.r-project.org/src/contrib/Archive/evmix/',
-]
-sources = ['%(name)s_%(version)s.tar.gz']
-
-r = 'R'
-rver = '3.1.1'
-versionsuffix = '-%s-%s' % (r, rver)
-
-dependencies = [
- (r, rver),
- ('gsl', '1.9-10', versionsuffix),
-]
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['evmix'],
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-foss-2014b.eb b/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-foss-2014b.eb
deleted file mode 100644
index e68977279be..00000000000
--- a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-foss-2014b.eb
+++ /dev/null
@@ -1,16 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'expat'
-version = '2.1.0'
-
-homepage = 'http://expat.sourceforge.net/'
-description = """Expat is an XML parser library written in C. It is a stream-oriented parser in which an application
-registers handlers for things the parser might find in the XML document (like start tags)"""
-
-toolchain = {'name': 'foss', 'version': '2014b'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [SOURCEFORGE_SOURCE]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-foss-2015a.eb b/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-foss-2015a.eb
deleted file mode 100644
index 600e38e8b5a..00000000000
--- a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-foss-2015a.eb
+++ /dev/null
@@ -1,16 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'expat'
-version = '2.1.0'
-
-homepage = 'http://expat.sourceforge.net/'
-description = """Expat is an XML parser library written in C. It is a stream-oriented parser in which an application
- registers handlers for things the parser might find in the XML document (like start tags)"""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [SOURCEFORGE_SOURCE]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-foss-2015b.eb b/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-foss-2015b.eb
deleted file mode 100644
index f7e3a65441f..00000000000
--- a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-foss-2015b.eb
+++ /dev/null
@@ -1,16 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'expat'
-version = '2.1.0'
-
-homepage = 'http://expat.sourceforge.net/'
-description = """Expat is an XML parser library written in C. It is a stream-oriented parser in which an application
- registers handlers for things the parser might find in the XML document (like start tags)"""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [SOURCEFORGE_SOURCE]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-goolf-1.4.10.eb
deleted file mode 100644
index c409db262d5..00000000000
--- a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,16 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'expat'
-version = '2.1.0'
-
-homepage = 'http://expat.sourceforge.net/'
-description = """Expat is an XML parser library written in C. It is a stream-oriented parser in which an application
-registers handlers for things the parser might find in the XML document (like start tags)"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [SOURCEFORGE_SOURCE]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-goolf-1.7.20.eb
deleted file mode 100644
index 721806cde96..00000000000
--- a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-goolf-1.7.20.eb
+++ /dev/null
@@ -1,16 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'expat'
-version = '2.1.0'
-
-homepage = 'http://expat.sourceforge.net/'
-description = """Expat is an XML parser library written in C. It is a stream-oriented parser in which an application
-registers handlers for things the parser might find in the XML document (like start tags)"""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [SOURCEFORGE_SOURCE]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-ictce-5.3.0.eb
deleted file mode 100644
index c97465c9f1a..00000000000
--- a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-ictce-5.3.0.eb
+++ /dev/null
@@ -1,16 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'expat'
-version = '2.1.0'
-
-homepage = 'http://expat.sourceforge.net/'
-description = """Expat is an XML parser library written in C. It is a stream-oriented parser in which an application
- registers handlers for things the parser might find in the XML document (like start tags)"""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [SOURCEFORGE_SOURCE]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-ictce-5.4.0.eb b/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-ictce-5.4.0.eb
deleted file mode 100644
index 4ed019fad23..00000000000
--- a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-ictce-5.4.0.eb
+++ /dev/null
@@ -1,16 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'expat'
-version = '2.1.0'
-
-homepage = 'http://expat.sourceforge.net/'
-description = """Expat is an XML parser library written in C. It is a stream-oriented parser in which an application
-registers handlers for things the parser might find in the XML document (like start tags)"""
-
-toolchain = {'name': 'ictce', 'version': '5.4.0'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [SOURCEFORGE_SOURCE]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-ictce-5.5.0.eb
deleted file mode 100644
index 7960b1c2df6..00000000000
--- a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-ictce-5.5.0.eb
+++ /dev/null
@@ -1,16 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'expat'
-version = '2.1.0'
-
-homepage = 'http://expat.sourceforge.net/'
-description = """Expat is an XML parser library written in C. It is a stream-oriented parser in which an application
- registers handlers for things the parser might find in the XML document (like start tags)"""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [SOURCEFORGE_SOURCE]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-intel-2014b.eb b/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-intel-2014b.eb
deleted file mode 100644
index 1c0523995ad..00000000000
--- a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-intel-2014b.eb
+++ /dev/null
@@ -1,16 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'expat'
-version = '2.1.0'
-
-homepage = 'http://expat.sourceforge.net/'
-description = """Expat is an XML parser library written in C. It is a stream-oriented parser in which an application
- registers handlers for things the parser might find in the XML document (like start tags)"""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [SOURCEFORGE_SOURCE]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-intel-2015a.eb b/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-intel-2015a.eb
deleted file mode 100644
index 084ab122463..00000000000
--- a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-intel-2015a.eb
+++ /dev/null
@@ -1,16 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'expat'
-version = '2.1.0'
-
-homepage = 'http://expat.sourceforge.net/'
-description = """Expat is an XML parser library written in C. It is a stream-oriented parser in which an application
- registers handlers for things the parser might find in the XML document (like start tags)"""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [SOURCEFORGE_SOURCE]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-intel-2015b.eb b/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-intel-2015b.eb
deleted file mode 100644
index 7d16f11759d..00000000000
--- a/easybuild/easyconfigs/__archive__/e/expat/expat-2.1.0-intel-2015b.eb
+++ /dev/null
@@ -1,16 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'expat'
-version = '2.1.0'
-
-homepage = 'http://expat.sourceforge.net/'
-description = """Expat is an XML parser library written in C. It is a stream-oriented parser in which an application
- registers handlers for things the parser might find in the XML document (like start tags)"""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [SOURCEFORGE_SOURCE]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/f/FASTA/FASTA-36.3.5e-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/FASTA/FASTA-36.3.5e-goolf-1.4.10.eb
deleted file mode 100644
index 7738a65d8c5..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FASTA/FASTA-36.3.5e-goolf-1.4.10.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2013 The Cyprus Institute
-# Authors:: Andreas Panteli , Thekla Loizou ,
-# George Tsouloupas
-# License:: MIT/GPL
-#
-##
-easyblock = 'MakeCp'
-
-name = "FASTA"
-version = "36.3.5e"
-
-homepage = 'http://fasta.bioch.virginia.edu'
-description = """The FASTA programs find regions of local or global (new) similarity between
-protein or DNA sequences, either by searching Protein or DNA databases, or by identifying
-local duplications within a sequence."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://faculty.virginia.edu/wrpearson/fasta/fasta36']
-sources = [SOURCELOWER_TAR_GZ]
-
-buildopts = '-C ./src -f ../make/Makefile.linux_sse2 all'
-
-files_to_copy = ["bin", "conf", "data", "doc", "FASTA_LIST", "misc", "README", "seq", "sql", "test"]
-
-sanity_check_paths = {
- 'files': ["FASTA_LIST", "README"] + ['bin/%s' % x for x in ['lav2svg', 'lav2ps', 'map_db']] +
- ['bin/%s%%(version_major)s' % x for x in ['fasta', 'fastm', 'fastx', 'ggsearch', 'lalign', 'tfastf',
- 'tfasts', 'tfasty', 'fastf', 'fasts', 'fasty', 'glsearch',
- 'ssearch', 'tfastm', 'tfastx']],
- 'dirs': ["conf", "data", "doc", "misc", "seq", "sql", "test"]
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/FASTA/FASTA-36.3.5e-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/f/FASTA/FASTA-36.3.5e-ictce-5.3.0.eb
deleted file mode 100644
index 723f27db167..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FASTA/FASTA-36.3.5e-ictce-5.3.0.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2013 The Cyprus Institute
-# Authors:: Andreas Panteli , Thekla Loizou ,
-# George Tsouloupas
-# License:: MIT/GPL
-#
-##
-easyblock = 'MakeCp'
-
-name = "FASTA"
-version = "36.3.5e"
-
-homepage = 'http://fasta.bioch.virginia.edu'
-description = """The FASTA programs find regions of local or global (new) similarity between
-protein or DNA sequences, either by searching Protein or DNA databases, or by identifying
-local duplications within a sequence."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['http://faculty.virginia.edu/wrpearson/fasta/fasta36']
-sources = [SOURCELOWER_TAR_GZ]
-
-buildopts = '-C ./src -f ../make/Makefile.linux_sse2 all'
-
-files_to_copy = ["bin", "conf", "data", "doc", "FASTA_LIST", "misc", "README", "seq", "sql", "test"]
-
-sanity_check_paths = {
- 'files': ["FASTA_LIST", "README"] + ['bin/%s' % x for x in ['lav2svg', 'lav2ps', 'map_db']] +
- ['bin/%s%%(version_major)s' % x for x in ['fasta', 'fastm', 'fastx', 'ggsearch', 'lalign', 'tfastf',
- 'tfasts', 'tfasty', 'fastf', 'fasts', 'fasty', 'glsearch',
- 'ssearch', 'tfastm', 'tfastx']],
- 'dirs': ["conf", "data", "doc", "misc", "seq", "sql", "test"]
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-goolf-1.4.10.eb
deleted file mode 100644
index 0c2b26660e2..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-goolf-1.4.10.eb
+++ /dev/null
@@ -1,45 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'FASTX-Toolkit'
-version = '0.0.13.2'
-
-homepage = 'http://hannonlab.cshl.edu/fastx_toolkit/'
-description = """The FASTX-Toolkit is a collection of command line tools
-for Short-Reads FASTA/FASTQ files preprocessing."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-altname = '_'.join(name.split('-')).lower()
-sources = ['%s-%s.tar.bz2' % (altname, version)]
-source_urls = ['http://hannonlab.cshl.edu/%s' % altname]
-
-dependencies = [('libgtextutils', '0.6.1')]
-
-sanity_check_paths = {
- 'files': ['bin/fastx_%s' % x for x in ['clipper', 'trimmer', 'quality_stats',
- 'artifacts_filter', 'reverse_complement',
- 'collapser', 'uncollapser', 'renamer',
- 'barcode_splitter.pl', 'nucleotide_distribution_graph.sh',
- 'nucleotide_distribution_line_graph.sh']] +
- ['bin/fasta_%s' % x for x in ['clipping_histogram.pl', 'formatter',
- 'nucleotide_changer']] +
- ['bin/fastq_%s' % x for x in ['quality_boxplot_graph.sh', 'quality_converter',
- 'to_fasta', 'quality_filter', 'quality_trimmer',
- 'masker']],
- 'dirs': ['.']
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-ictce-5.3.0.eb
deleted file mode 100644
index 8736954b976..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.13.2-ictce-5.3.0.eb
+++ /dev/null
@@ -1,48 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'FASTX-Toolkit'
-version = '0.0.13.2'
-
-homepage = 'http://hannonlab.cshl.edu/fastx_toolkit/'
-description = """The FASTX-Toolkit is a collection of command line tools
-for Short-Reads FASTA/FASTQ files preprocessing."""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-altname = '_'.join(name.split('-')).lower()
-sources = ['%s-%s.tar.bz2' % (altname, version)]
-source_urls = ['http://hannonlab.cshl.edu/%s' % altname]
-
-dependencies = [('libgtextutils', '0.6.1')]
-
-configopts = '--disable-wall' # avoid use of -Werror
-
-sanity_check_paths = {
- 'files': ['bin/fastx_%s' % x for x in ['clipper', 'trimmer', 'quality_stats',
- 'artifacts_filter', 'reverse_complement',
- 'collapser', 'uncollapser', 'renamer',
- 'barcode_splitter.pl', 'nucleotide_distribution_graph.sh',
- 'nucleotide_distribution_line_graph.sh']] +
- ['bin/fasta_%s' % x for x in ['clipping_histogram.pl', 'formatter',
- 'nucleotide_changer']] +
- ['bin/fastq_%s' % x for x in ['quality_boxplot_graph.sh', 'quality_converter',
- 'to_fasta', 'quality_filter', 'quality_trimmer',
- 'masker']],
- 'dirs': ['.']
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-foss-2015b.eb b/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-foss-2015b.eb
deleted file mode 100644
index 6b26b56f8f5..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-foss-2015b.eb
+++ /dev/null
@@ -1,44 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'FASTX-Toolkit'
-version = '0.0.14'
-
-homepage = 'http://hannonlab.cshl.edu/fastx_toolkit/'
-description = """The FASTX-Toolkit is a collection of command line tools for
- Short-Reads FASTA/FASTQ files preprocessing."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-source_urls = ['https://github.com/agordon/fastx_toolkit/releases/download/%(version)s']
-sources = ['fastx_toolkit-%(version)s.tar.bz2']
-
-builddependencies = [('libgtextutils', '0.7')]
-
-sanity_check_paths = {
- 'files':
- ['bin/fastx_%s' % x for x in
- ['clipper', 'trimmer', 'quality_stats', 'artifacts_filter', 'reverse_complement',
- 'collapser', 'uncollapser', 'renamer', 'barcode_splitter.pl', 'nucleotide_distribution_graph.sh',
- 'nucleotide_distribution_line_graph.sh']] +
- ['bin/fasta_%s' % x for x in
- ['clipping_histogram.pl', 'formatter', 'nucleotide_changer']] +
- ['bin/fastq_%s' % x for x in
- ['quality_boxplot_graph.sh', 'quality_converter', 'to_fasta', 'quality_filter',
- 'quality_trimmer', 'masker']],
- 'dirs': ['.']
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-goolf-1.4.10.eb
deleted file mode 100644
index 2455f164d6c..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-goolf-1.4.10.eb
+++ /dev/null
@@ -1,45 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'FASTX-Toolkit'
-version = '0.0.14'
-
-homepage = 'http://hannonlab.cshl.edu/fastx_toolkit/'
-description = """The FASTX-Toolkit is a collection of command line tools for
- Short-Reads FASTA/FASTQ files preprocessing."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-altname = name.lower().replace('-', '_')
-source_urls = ['https://github.com/agordon/fastx_toolkit/releases/download/%(version)s']
-sources = ['%s-%%(version)s.tar.bz2' % altname]
-
-dependencies = [('libgtextutils', '0.6.1')]
-
-sanity_check_paths = {
- 'files':
- ['bin/fastx_%s' % x for x in
- ['clipper', 'trimmer', 'quality_stats', 'artifacts_filter', 'reverse_complement',
- 'collapser', 'uncollapser', 'renamer', 'barcode_splitter.pl', 'nucleotide_distribution_graph.sh',
- 'nucleotide_distribution_line_graph.sh']] +
- ['bin/fasta_%s' % x for x in
- ['clipping_histogram.pl', 'formatter', 'nucleotide_changer']] +
- ['bin/fastq_%s' % x for x in
- ['quality_boxplot_graph.sh', 'quality_converter', 'to_fasta', 'quality_filter',
- 'quality_trimmer', 'masker']],
- 'dirs': ['.']
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-intel-2015a.eb b/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-intel-2015a.eb
deleted file mode 100644
index bfe69329672..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FASTX-Toolkit/FASTX-Toolkit-0.0.14-intel-2015a.eb
+++ /dev/null
@@ -1,45 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Cedric Laczny , Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'FASTX-Toolkit'
-version = '0.0.14'
-
-homepage = 'http://hannonlab.cshl.edu/fastx_toolkit/'
-description = """The FASTX-Toolkit is a collection of command line tools for
- Short-Reads FASTA/FASTQ files preprocessing."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-altname = name.lower().replace('-', '_')
-source_urls = ['https://github.com/agordon/fastx_toolkit/releases/download/%(version)s']
-sources = ['%s-%%(version)s.tar.bz2' % altname]
-
-dependencies = [('libgtextutils', '0.6.1')]
-
-sanity_check_paths = {
- 'files':
- ['bin/fastx_%s' % x for x in
- ['clipper', 'trimmer', 'quality_stats', 'artifacts_filter', 'reverse_complement',
- 'collapser', 'uncollapser', 'renamer', 'barcode_splitter.pl', 'nucleotide_distribution_graph.sh',
- 'nucleotide_distribution_line_graph.sh']] +
- ['bin/fasta_%s' % x for x in
- ['clipping_histogram.pl', 'formatter', 'nucleotide_changer']] +
- ['bin/fastq_%s' % x for x in
- ['quality_boxplot_graph.sh', 'quality_converter', 'to_fasta', 'quality_filter',
- 'quality_trimmer', 'masker']],
- 'dirs': ['.']
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/FDS/FDS-6.3.0-intel-2015b.eb b/easybuild/easyconfigs/__archive__/f/FDS/FDS-6.3.0-intel-2015b.eb
deleted file mode 100644
index f3aacd25ad0..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FDS/FDS-6.3.0-intel-2015b.eb
+++ /dev/null
@@ -1,40 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FDS'
-version = '6.3.0'
-
-homepage = 'http://firemodels.github.io/fds-smv/'
-description = """Fire Dynamics Simulator (FDS) is a large-eddy simulation (LES) code for low-speed flows,
- with an emphasis on smoke and heat transport from fires."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-source_urls = ['https://github.com/firemodels/fds-smv/archive/']
-sources = ['e6ca47c.tar.gz']
-
-patches = ['FDS-r18915_makefile.patch']
-
-unpack_options = '--strip-components=1'
-
-start_dir = 'FDS_Compilation'
-
-# just run make in the install dir
-skipsteps = ['configure', 'install']
-buildininstalldir = True
-
-target = 'mpi_intel_linux_64'
-buildopts = '%s FFLAGS="$FFLAGS -fpp" FCOMPL="$FC"' % target
-
-postinstallcmds = ["ln -s %%(installdir)s/FDS_Compilation/fds_%s %%(installdir)s/FDS_Compilation/fds" % target]
-
-modextrapaths = {'PATH': 'FDS_Compilation'}
-
-sanity_check_paths = {
- 'files': ['FDS_Compilation/fds'],
- 'dirs': [],
-}
-
-sanity_check_commands = [("fds 2>&1 | grep 'MPI Enabled;'", '')]
-
-moduleclass = 'phys'
diff --git a/easybuild/easyconfigs/__archive__/f/FDS/FDS-r17534-intel-2015a.eb b/easybuild/easyconfigs/__archive__/f/FDS/FDS-r17534-intel-2015a.eb
deleted file mode 100644
index 6addd713dca..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FDS/FDS-r17534-intel-2015a.eb
+++ /dev/null
@@ -1,40 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FDS'
-version = 'r17534'
-
-homepage = 'https://code.google.com/p/fds-smv/'
-description = """Fire Dynamics Simulator (FDS) is a large-eddy simulation (LES) code for low-speed flows,
- with an emphasis on smoke and heat transport from fires."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-sources = [SOURCE_TAR_GZ]
-patches = ['FDS-%(version)s_makefile.patch']
-
-unpack_options = '--strip-components=1'
-
-start_dir = 'FDS_Compilation'
-
-parallel = 1
-
-# just run make in the install dir
-skipsteps = ['configure', 'install']
-buildininstalldir = True
-
-target = 'mpi_intel_linux_64'
-buildopts = '%s FFLAGS="$FFLAGS -fpp" FCOMPL="$FC"' % target
-
-postinstallcmds = ["ln -s %%(installdir)s/FDS_Compilation/fds_%s %%(installdir)s/FDS_Compilation/fds" % target]
-
-modextrapaths = {'PATH': 'FDS_Compilation'}
-
-sanity_check_paths = {
- 'files': ['FDS_Compilation/fds'],
- 'dirs': [],
-}
-
-sanity_check_commands = [("fds 2>&1 | grep 'MPI Enabled;'", '')]
-
-moduleclass = 'phys'
diff --git a/easybuild/easyconfigs/__archive__/f/FDS/FDS-r18915-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/FDS/FDS-r18915-goolf-1.4.10.eb
deleted file mode 100644
index aa1cadabd32..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FDS/FDS-r18915-goolf-1.4.10.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FDS'
-version = 'r18915'
-
-homepage = 'https://code.google.com/p/fds-smv/'
-description = """Fire Dynamics Simulator (FDS) is a large-eddy simulation (LES) code for low-speed flows,
- with an emphasis on smoke and heat transport from fires."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-sources = [SOURCE_TAR_GZ]
-patches = ['FDS-%(version)s_makefile.patch']
-
-# just run make in the install dir
-skipsteps = ['configure', 'install']
-buildininstalldir = True
-
-target = 'mpi_gnu_linux'
-buildopts = '%s FFLAGS="$FFLAGS" FCOMPL="$FC"' % target
-
-postinstallcmds = ["ln -s %%(installdir)s/FDS_Source/fds_%s %%(installdir)s/FDS_Source/fds" % target]
-
-modextrapaths = {'PATH': 'FDS_Source'}
-
-sanity_check_paths = {
- 'files': ['FDS_Source/fds'],
- 'dirs': [],
-}
-
-sanity_check_commands = [("fds 2>&1 | grep 'MPI Enabled;'", '')]
-
-moduleclass = 'phys'
diff --git a/easybuild/easyconfigs/__archive__/f/FDS/FDS-r18915-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/f/FDS/FDS-r18915-ictce-5.5.0.eb
deleted file mode 100644
index 25ed6f846ac..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FDS/FDS-r18915-ictce-5.5.0.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FDS'
-version = 'r18915'
-
-homepage = 'https://code.google.com/p/fds-smv/'
-description = """Fire Dynamics Simulator (FDS) is a large-eddy simulation (LES) code for low-speed flows,
- with an emphasis on smoke and heat transport from fires."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-sources = [SOURCE_TAR_GZ]
-patches = ['FDS-%(version)s_makefile.patch']
-
-# just run make in the install dir
-skipsteps = ['configure', 'install']
-buildininstalldir = True
-
-target = 'mpi_intel_linux_64'
-buildopts = '%s FFLAGS="$FFLAGS" FCOMPL="$FC"' % target
-
-postinstallcmds = ["ln -s %%(installdir)s/FDS_Source/fds_%s %%(installdir)s/FDS_Source/fds" % target]
-
-modextrapaths = {'PATH': 'FDS_Source'}
-
-sanity_check_paths = {
- 'files': ['FDS_Source/fds'],
- 'dirs': [],
-}
-
-sanity_check_commands = [("fds 2>&1 | grep 'MPI Enabled;'", '')]
-
-moduleclass = 'phys'
diff --git a/easybuild/easyconfigs/__archive__/f/FDS/FDS-r18915-intel-2015a.eb b/easybuild/easyconfigs/__archive__/f/FDS/FDS-r18915-intel-2015a.eb
deleted file mode 100644
index 001132efa24..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FDS/FDS-r18915-intel-2015a.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FDS'
-version = 'r18915'
-
-homepage = 'https://code.google.com/p/fds-smv/'
-description = """Fire Dynamics Simulator (FDS) is a large-eddy simulation (LES) code for low-speed flows,
- with an emphasis on smoke and heat transport from fires."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-sources = [SOURCE_TAR_GZ]
-patches = ['FDS-%(version)s_makefile.patch']
-
-# just run make in the install dir
-skipsteps = ['configure', 'install']
-buildininstalldir = True
-
-target = 'mpi_intel_linux_64'
-buildopts = '%s FFLAGS="$FFLAGS" FCOMPL="$FC"' % target
-
-postinstallcmds = ["ln -s %%(installdir)s/FDS_Source/fds_%s %%(installdir)s/FDS_Source/fds" % target]
-
-modextrapaths = {'PATH': 'FDS_Source'}
-
-sanity_check_paths = {
- 'files': ['FDS_Source/fds'],
- 'dirs': [],
-}
-
-sanity_check_commands = [("fds 2>&1 | grep 'MPI Enabled;'", '')]
-
-moduleclass = 'phys'
diff --git a/easybuild/easyconfigs/__archive__/f/FDS/FDS-r22681-intel-2015a.eb b/easybuild/easyconfigs/__archive__/f/FDS/FDS-r22681-intel-2015a.eb
deleted file mode 100644
index 6f8589d3e92..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FDS/FDS-r22681-intel-2015a.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FDS'
-version = 'r22681'
-
-homepage = 'https://code.google.com/p/fds-smv/'
-description = """Fire Dynamics Simulator (FDS) is a large-eddy simulation (LES) code for low-speed flows,
- with an emphasis on smoke and heat transport from fires."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'pic': True, 'usempi': True}
-
-sources = [SOURCE_TAR_GZ]
-patches = ['FDS-r18915_makefile.patch']
-
-unpack_options = '--strip-components=1'
-
-start_dir = 'FDS_Compilation'
-
-# just run make in the install dir
-skipsteps = ['configure', 'install']
-buildininstalldir = True
-
-target = 'mpi_intel_linux_64'
-buildopts = '%s FFLAGS="$FFLAGS -fpp" FCOMPL="$FC"' % target
-
-postinstallcmds = ["ln -s %%(installdir)s/FDS_Compilation/fds_%s %%(installdir)s/FDS_Compilation/fds" % target]
-
-modextrapaths = {'PATH': 'FDS_Compilation'}
-
-sanity_check_paths = {
- 'files': ['FDS_Compilation/fds'],
- 'dirs': [],
-}
-
-sanity_check_commands = [("fds 2>&1 | grep 'MPI Enabled;'", '')]
-
-moduleclass = 'phys'
diff --git a/easybuild/easyconfigs/__archive__/f/FFC/FFC-1.0.0-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/f/FFC/FFC-1.0.0-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index f3d91879f4c..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFC/FFC-1.0.0-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,35 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'FFC'
-version = '1.0.0'
-
-homepage = 'https://launchpad.net/ffc'
-description = """FEniCS Form Compiler (FFC) works as a compiler for multilinear forms by generating
-code (C++) for the evaluation of a multilinear form given in mathematical notation."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-majorversion = "%s.x" % ".".join(version.split('.')[:-1])
-source_urls = ['https://launchpad.net/FFC/%s/%s/+download/' % (majorversion, version)]
-sources = [SOURCELOWER_TAR_GZ]
-
-python = "Python"
-pythonversion = '2.7.3'
-pythonshortversion = ".".join(pythonversion.split(".")[:-1])
-
-versionsuffix = "-%s-%s" % (python, pythonversion)
-
-dependencies = [
- (python, pythonversion),
- ('UFL', '1.0.0', versionsuffix),
- ('FIAT', '1.0.0', versionsuffix),
- ('UFC', '2.0.5', versionsuffix),
- ('Viper', '1.0.0', versionsuffix),
-]
-
-sanity_check_paths = {
- 'files': ['bin/ffc'],
- 'dirs': ['lib/python%s/site-packages/ffc' % pythonshortversion]
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/f/FFC/FFC-1.0.0-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/f/FFC/FFC-1.0.0-ictce-5.3.0-Python-2.7.3.eb
deleted file mode 100644
index 646f52f8740..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFC/FFC-1.0.0-ictce-5.3.0-Python-2.7.3.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'FFC'
-version = '1.0.0'
-
-homepage = 'https://launchpad.net/ffc'
-description = """FEniCS Form Compiler (FFC) works as a compiler for multilinear forms by generating
- code (C++) for the evaluation of a multilinear form given in mathematical notation."""
-
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-majorversion = "%s.x" % ".".join(version.split('.')[:-1])
-source_urls = ['https://launchpad.net/FFC/%s/%s/+download/' % (majorversion, version)]
-sources = [SOURCELOWER_TAR_GZ]
-
-python = "Python"
-pythonversion = '2.7.3'
-pythonshortversion = ".".join(pythonversion.split(".")[:-1])
-
-versionsuffix = "-%s-%s" % (python, pythonversion)
-
-dependencies = [
- (python, pythonversion),
- ('UFL', '1.0.0', versionsuffix),
- ('FIAT', '1.0.0', versionsuffix),
- ('UFC', '2.0.5', versionsuffix),
- ('Viper', '1.0.0', versionsuffix),
-]
-
-sanity_check_paths = {
- 'files': ['bin/ffc'],
- 'dirs': ['lib/python%s/site-packages/ffc' % pythonshortversion]
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/f/FFC/FFC-1.6.0-intel-2015b-Python-2.7.11.eb b/easybuild/easyconfigs/__archive__/f/FFC/FFC-1.6.0-intel-2015b-Python-2.7.11.eb
deleted file mode 100644
index 8e3e690feb1..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFC/FFC-1.6.0-intel-2015b-Python-2.7.11.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'FFC'
-version = '1.6.0'
-
-homepage = 'https://bitbucket.org/fenics-project/ffc'
-description = """FEniCS Form Compiler (FFC) works as a compiler for multilinear forms by generating
- code (C++) for the evaluation of a multilinear form given in mathematical notation."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['https://bitbucket.org/fenics-project/ffc/downloads/']
-sources = [SOURCELOWER_TAR_GZ]
-
-pyver = '2.7.11'
-versionsuffix = '-Python-%s' % pyver
-
-builddependencies = [
- ('SWIG', '3.0.8', versionsuffix),
-]
-dependencies = [
- ('Python', pyver),
- ('UFL', version, versionsuffix),
- ('FIAT', version, versionsuffix),
- ('Instant', version, versionsuffix),
-]
-
-pyshortver = '.'.join(pyver.split('.')[:2])
-sanity_check_paths = {
- 'files': ['bin/ffc'],
- 'dirs': ['lib/python%s/site-packages' % pyshortver]
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-2.1.5-GCC-4.6.3.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-2.1.5-GCC-4.6.3.eb
deleted file mode 100644
index 8ef1d25ea55..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-2.1.5-GCC-4.6.3.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '2.1.5'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'GCC', 'version': '4.6.3'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-shared --enable-type-prefix --enable-threads --with-pic"
-
-configopts = [
- common_configopts + " --enable-float",
- common_configopts, # default as last
-]
-
-sanity_check_paths = {
- 'files': ['include/%sfftw%s.h' % (x, y) for x in ['d', 'dr', 's', 'sr'] for y in ['', '_threads']] +
- ['lib/lib%sfftw%s.a' % (x, y) for x in ['d', 'dr', 's', 'sr'] for y in ['', '_threads']] +
- ['lib/lib%sfftw%s.%s' % (x, y, SHLIB_EXT) for x in ['d', 'dr', 's', 'sr'] for y in ['', '_threads']],
- 'dirs': [],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-2.1.5-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-2.1.5-ictce-5.3.0.eb
deleted file mode 100644
index 4dafd1540fa..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-2.1.5-ictce-5.3.0.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '2.1.5'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-shared --enable-type-prefix --enable-threads --with-pic"
-
-configopts = [
- common_configopts + " --enable-float --enable-mpi",
- common_configopts + " --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['include/%sfftw%s.h' % (x, y) for x in ['d', 'dr', 's', 'sr'] for y in ['', '_mpi', '_threads']] +
- ['lib/lib%sfftw%s.a' % (x, y) for x in ['d', 'dr', 's', 'sr'] for y in ['', '_mpi', '_threads']] +
- ['lib/lib%sfftw%s.%s' % (x, y, SHLIB_EXT) for x in ['d', 'dr', 's', 'sr']
- for y in ['', '_mpi', '_threads']],
- 'dirs': [],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-2.1.5-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-2.1.5-ictce-5.5.0.eb
deleted file mode 100644
index e665c5c1018..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-2.1.5-ictce-5.5.0.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '2.1.5'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-shared --enable-type-prefix --enable-threads --with-pic"
-
-configopts = [
- common_configopts + " --enable-float --enable-mpi",
- common_configopts + " --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['include/%sfftw%s.h' % (x, y) for x in ['d', 'dr', 's', 'sr'] for y in ['', '_mpi', '_threads']] +
- ['lib/lib%sfftw%s.a' % (x, y) for x in ['d', 'dr', 's', 'sr'] for y in ['', '_mpi', '_threads']] +
- ['lib/lib%sfftw%s.%s' % (x, y, SHLIB_EXT) for x in ['d', 'dr', 's', 'sr']
- for y in ['', '_mpi', '_threads']],
- 'dirs': [],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.1-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.1-ictce-5.3.0.eb
deleted file mode 100644
index 8a16d17d967..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.1-ictce-5.3.0.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.1'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-threads --enable-openmp --with-pic"
-
-# no quad precision, requires GCC v4.6 or higher
-# see also http://www.fftw.org/doc/Extended-and-quadruple-precision-in-Fortran.html
-configopts = [
- common_configopts + " --enable-single --enable-sse2 --enable-mpi",
- common_configopts + " --enable-long-double --enable-mpi",
- common_configopts + " --enable-sse2 --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3%s%s.a' % (x, y) for x in ['', 'f', 'l'] for y in ['', '_mpi', '_omp', '_threads']],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-gompi-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-gompi-1.4.10.eb
deleted file mode 100644
index bc9593354f4..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-gompi-1.4.10.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.3'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'gompi', 'version': '1.4.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-threads --enable-openmp --with-pic"
-
-configopts = [
- common_configopts + " --enable-single --enable-sse2 --enable-mpi",
- common_configopts + " --enable-long-double --enable-mpi",
- common_configopts + " --enable-quad-precision",
- common_configopts + " --enable-sse2 --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom', 'q-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3%s%s.a' % (x, y) for x in ['', 'f', 'l'] for y in ['', '_mpi', '_omp', '_threads']] +
- ['lib/libfftw3q.a', 'lib/libfftw3q_omp.a'],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-gompi-1.6.10.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-gompi-1.6.10.eb
deleted file mode 100644
index 43a89950f17..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-gompi-1.6.10.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.3'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'gompi', 'version': '1.6.10'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-threads --enable-openmp --with-pic"
-
-configopts = [
- common_configopts + " --enable-single --enable-sse2 --enable-mpi",
- common_configopts + " --enable-long-double --enable-mpi",
- common_configopts + " --enable-quad-precision",
- common_configopts + " --enable-sse2 --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom', 'q-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3%s%s.a' % (x, y) for x in ['', 'f', 'l'] for y in ['', '_mpi', '_omp', '_threads']] +
- ['lib/libfftw3q.a', 'lib/libfftw3q_omp.a'],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-ictce-5.2.0-single.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-ictce-5.2.0-single.eb
deleted file mode 100644
index c3d56eb83cb..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-ictce-5.2.0-single.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.3'
-versionsuffix = '-single'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'ictce', 'version': '5.2.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-# single precision
-configopts = "--enable-sse --enable-single"
-
-# the MPI opts from FFTW2 are valid options but unused until FFTW3.3
-configopts += " --enable-threads --enable-openmp --with-pic --enable-mpi"
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom-to-conf', 'f-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3f%s.a' % x for x in ['', '_mpi', '_omp', '_threads']],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-ictce-5.2.0.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-ictce-5.2.0.eb
deleted file mode 100644
index 8b154894b80..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-ictce-5.2.0.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.3'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'ictce', 'version': '5.2.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-threads --enable-openmp --with-pic"
-
-# no quad precision, requires GCC v4.6 or higher
-# see also http://www.fftw.org/doc/Extended-and-quadruple-precision-in-Fortran.html
-configopts = [
- common_configopts + " --enable-single --enable-sse2 --enable-mpi",
- common_configopts + " --enable-long-double --enable-mpi",
- common_configopts + " --enable-sse2 --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3%s%s.a' % (x, y) for x in ['', 'f', 'l'] for y in ['', '_mpi', '_omp', '_threads']],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-ictce-5.3.0-single.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-ictce-5.3.0-single.eb
deleted file mode 100644
index 5755a3492e5..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-ictce-5.3.0-single.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.3'
-versionsuffix = '-single'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-# single precision
-configopts = "--enable-sse --enable-single"
-
-# the MPI opts from FFTW2 are valid options but unused until FFTW3.3
-configopts += " --enable-threads --enable-openmp --with-pic --enable-mpi"
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom-to-conf', 'f-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3f%s.a' % x for x in ['', '_mpi', '_omp', '_threads']],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-ictce-5.3.0.eb
deleted file mode 100644
index 223503bbeb7..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-ictce-5.3.0.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.3'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-threads --enable-openmp --with-pic"
-
-# no quad precision, requires GCC v4.6 or higher
-# see also http://www.fftw.org/doc/Extended-and-quadruple-precision-in-Fortran.html
-configopts = [
- common_configopts + " --enable-single --enable-sse2 --enable-mpi",
- common_configopts + " --enable-long-double --enable-mpi",
- common_configopts + " --enable-sse2 --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3%s%s.a' % (x, y) for x in ['', 'f', 'l'] for y in ['', '_mpi', '_omp', '_threads']],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-ictce-5.5.0.eb
deleted file mode 100644
index caca8b42568..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-ictce-5.5.0.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.3'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-threads --enable-openmp --with-pic"
-
-# no quad precision, requires GCC v4.6 or higher
-# see also http://www.fftw.org/doc/Extended-and-quadruple-precision-in-Fortran.html
-configopts = [
- common_configopts + " --enable-single --enable-sse2 --enable-mpi",
- common_configopts + " --enable-long-double --enable-mpi",
- common_configopts + " --enable-sse2 --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3%s%s.a' % (x, y) for x in ['', 'f', 'l'] for y in ['', '_mpi', '_omp', '_threads']],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-intel-2015a.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-intel-2015a.eb
deleted file mode 100644
index 10fd990805e..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.3-intel-2015a.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.3'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-threads --enable-openmp --with-pic"
-
-# no quad precision, requires GCC v4.6 or higher
-# see also http://www.fftw.org/doc/Extended-and-quadruple-precision-in-Fortran.html
-configopts = [
- common_configopts + " --enable-single --enable-sse2 --enable-mpi",
- common_configopts + " --enable-long-double --enable-mpi",
- common_configopts + " --enable-sse2 --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3%s%s.a' % (x, y) for x in ['', 'f', 'l'] for y in ['', '_mpi', '_omp', '_threads']],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-1.5.14.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-1.5.14.eb
deleted file mode 100644
index 0e6bf98a489..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-1.5.14.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.4'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'gompi', 'version': '1.5.14'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-threads --enable-openmp --with-pic"
-
-configopts = [
- common_configopts + " --enable-single --enable-sse2 --enable-mpi",
- common_configopts + " --enable-long-double --enable-mpi",
- common_configopts + " --enable-quad-precision",
- common_configopts + " --enable-sse2 --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom', 'q-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3%s%s.a' % (x, y) for x in ['', 'f', 'l'] for y in ['', '_mpi', '_omp', '_threads']] +
- ['lib/libfftw3q.a', 'lib/libfftw3q_omp.a'],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-1.5.16.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-1.5.16.eb
deleted file mode 100644
index 34e8f524fbb..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-1.5.16.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.4'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'gompi', 'version': '1.5.16'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-threads --enable-openmp --with-pic"
-
-configopts = [
- common_configopts + " --enable-single --enable-sse2 --enable-mpi",
- common_configopts + " --enable-long-double --enable-mpi",
- common_configopts + " --enable-quad-precision",
- common_configopts + " --enable-sse2 --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom', 'q-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3%s%s.a' % (x, y) for x in ['', 'f', 'l'] for y in ['', '_mpi', '_omp', '_threads']] +
- ['lib/libfftw3q.a', 'lib/libfftw3q_omp.a'],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-1.7.20.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-1.7.20.eb
deleted file mode 100644
index 716715a07e8..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-1.7.20.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.4'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'gompi', 'version': '1.7.20'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-threads --enable-openmp --with-pic"
-
-configopts = [
- common_configopts + " --enable-single --enable-sse2 --enable-mpi",
- common_configopts + " --enable-long-double --enable-mpi",
- common_configopts + " --enable-quad-precision",
- common_configopts + " --enable-sse2 --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom', 'q-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3%s%s.a' % (x, y) for x in ['', 'f', 'l'] for y in ['', '_mpi', '_omp', '_threads']] +
- ['lib/libfftw3q.a', 'lib/libfftw3q_omp.a'],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-2014b.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-2014b.eb
deleted file mode 100644
index 777e41c53dd..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-2014b.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.4'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'gompi', 'version': '2014b'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-threads --enable-openmp --with-pic"
-
-configopts = [
- common_configopts + " --enable-single --enable-sse2 --enable-mpi",
- common_configopts + " --enable-long-double --enable-mpi",
- common_configopts + " --enable-quad-precision",
- common_configopts + " --enable-sse2 --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom', 'q-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3%s%s.a' % (x, y) for x in ['', 'f', 'l'] for y in ['', '_mpi', '_omp', '_threads']] +
- ['lib/libfftw3q.a', 'lib/libfftw3q_omp.a'],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-2015.05.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-2015.05.eb
deleted file mode 100644
index 0d9c4ae7b59..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-2015.05.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.4'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'gompi', 'version': '2015.05'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-threads --enable-openmp --with-pic"
-
-configopts = [
- common_configopts + " --enable-single --enable-sse2 --enable-mpi",
- common_configopts + " --enable-long-double --enable-mpi",
- common_configopts + " --enable-quad-precision",
- common_configopts + " --enable-sse2 --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom', 'q-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3%s%s.a' % (x, y) for x in ['', 'f', 'l'] for y in ['', '_mpi', '_omp', '_threads']] +
- ['lib/libfftw3q.a', 'lib/libfftw3q_omp.a'],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-2015a.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-2015a.eb
deleted file mode 100644
index 3967193a7ca..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-2015a.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.4'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'gompi', 'version': '2015a'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-threads --enable-openmp --with-pic"
-
-configopts = [
- common_configopts + " --enable-single --enable-sse2 --enable-mpi",
- common_configopts + " --enable-long-double --enable-mpi",
- common_configopts + " --enable-quad-precision",
- common_configopts + " --enable-sse2 --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom', 'q-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3%s%s.a' % (x, y) for x in ['', 'f', 'l'] for y in ['', '_mpi', '_omp', '_threads']] +
- ['lib/libfftw3q.a', 'lib/libfftw3q_omp.a'],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-2015b.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-2015b.eb
deleted file mode 100644
index c048de7a215..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompi-2015b.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.4'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'gompi', 'version': '2015b'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-threads --enable-openmp --with-pic"
-
-configopts = [
- common_configopts + " --enable-single --enable-sse2 --enable-mpi",
- common_configopts + " --enable-long-double --enable-mpi",
- common_configopts + " --enable-quad-precision",
- common_configopts + " --enable-sse2 --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom', 'q-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3%s%s.a' % (x, y) for x in ['', 'f', 'l'] for y in ['', '_mpi', '_omp', '_threads']] +
- ['lib/libfftw3q.a', 'lib/libfftw3q_omp.a'],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompic-2016.08.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompic-2016.08.eb
deleted file mode 100644
index 283a4b3d0dc..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-gompic-2016.08.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.4'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'gompic', 'version': '2016.08'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-threads --enable-openmp --with-pic"
-
-configopts = [
- common_configopts + " --enable-single --enable-sse2 --enable-mpi",
- common_configopts + " --enable-long-double --enable-mpi",
- common_configopts + " --enable-quad-precision",
- common_configopts + " --enable-sse2 --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom', 'q-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3%s%s.a' % (x, y) for x in ['', 'f', 'l'] for y in ['', '_mpi', '_omp', '_threads']] +
- ['lib/libfftw3q.a', 'lib/libfftw3q_omp.a'],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-ictce-5.5.0.eb
deleted file mode 100644
index a0dcf3f5cc9..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-ictce-5.5.0.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.4'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-threads --enable-openmp --with-pic"
-
-# no quad precision, requires GCC v4.6 or higher
-configopts = [
- common_configopts + " --enable-single --enable-sse2 --enable-mpi",
- common_configopts + " --enable-long-double --enable-mpi",
- common_configopts + " --enable-sse2 --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3%s%s.a' % (x, y) for x in ['', 'f', 'l'] for y in ['', '_mpi', '_omp', '_threads']],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-ictce-7.1.2.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-ictce-7.1.2.eb
deleted file mode 100644
index aff8516503c..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-ictce-7.1.2.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.4'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'ictce', 'version': '7.1.2'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-threads --enable-openmp --with-pic"
-
-# no quad precision, requires GCC v4.6 or higher
-configopts = [
- common_configopts + " --enable-single --enable-sse2 --enable-mpi",
- common_configopts + " --enable-long-double --enable-mpi",
- common_configopts + " --enable-sse2 --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3%s%s.a' % (x, y) for x in ['', 'f', 'l'] for y in ['', '_mpi', '_omp', '_threads']],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-intel-2014b.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-intel-2014b.eb
deleted file mode 100644
index 1cb2cf1b40f..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-intel-2014b.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.4'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-threads --enable-openmp --with-pic"
-
-# no quad precision, requires GCC v4.6 or higher
-# see also http://www.fftw.org/doc/Extended-and-quadruple-precision-in-Fortran.html
-configopts = [
- common_configopts + " --enable-single --enable-sse2 --enable-mpi",
- common_configopts + " --enable-long-double --enable-mpi",
- common_configopts + " --enable-sse2 --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3%s%s.a' % (x, y) for x in ['', 'f', 'l'] for y in ['', '_mpi', '_omp', '_threads']],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-intel-2015a.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-intel-2015a.eb
deleted file mode 100644
index ce8a9b16ca9..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-intel-2015a.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.4'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-common_configopts = "--enable-threads --enable-openmp --with-pic"
-
-# no quad precision, requires GCC v4.6 or higher
-# see also http://www.fftw.org/doc/Extended-and-quadruple-precision-in-Fortran.html
-configopts = [
- common_configopts + " --enable-single --enable-sse2 --enable-mpi",
- common_configopts + " --enable-long-double --enable-mpi",
- common_configopts + " --enable-sse2 --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3%s%s.a' % (x, y) for x in ['', 'f', 'l'] for y in ['', '_mpi', '_omp', '_threads']],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-intel-2015b-PFFT-20150905.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-intel-2015b-PFFT-20150905.eb
deleted file mode 100644
index 1f513106f62..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.4-intel-2015b-PFFT-20150905.eb
+++ /dev/null
@@ -1,44 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFTW'
-version = '3.3.4'
-versionsuffix = '-PFFT-20150905'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-patches = ['%(name)s_%(version)s%(versionsuffix)s.patch']
-
-builddependencies = [
- ('Autotools', '20150215'),
-]
-
-# the patch changed a Makefile.am, so we need to call autoreconf
-preconfigopts = "autoreconf --verbose --symlink --force && "
-
-common_configopts = "--enable-threads --enable-openmp --with-pic"
-
-# no quad precision, requires GCC v4.6 or higher
-# see also http://www.fftw.org/doc/Extended-and-quadruple-precision-in-Fortran.html
-configopts = [
- common_configopts + " --enable-single --enable-sse2 --enable-mpi",
- common_configopts + " --enable-long-double --enable-mpi",
- common_configopts + " --enable-sse2 --enable-mpi", # default as last
-]
-
-sanity_check_paths = {
- 'files': ['bin/fftw%s' % x for x in ['-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom']] +
- ['include/fftw3%s' % x for x in ['-mpi.f03', '-mpi.h', '.f', '.f03',
- '.h', 'l-mpi.f03', 'l.f03', 'q.f03']] +
- ['lib/libfftw3%s%s.a' % (x, y) for x in ['', 'f', 'l'] for y in ['', '_mpi', '_omp', '_threads']],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.5-gompic-2016.10.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.5-gompic-2016.10.eb
deleted file mode 100644
index 802e40e5f23..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.5-gompic-2016.10.eb
+++ /dev/null
@@ -1,16 +0,0 @@
-name = 'FFTW'
-version = '3.3.5'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'gompic', 'version': '2016.10'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = [homepage]
-
-runtest = 'check'
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.6-gompic-2017.01.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.6-gompic-2017.01.eb
deleted file mode 100644
index 98911ef733b..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.6-gompic-2017.01.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'FFTW'
-version = '3.3.6'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'gompic', 'version': '2017.01'}
-toolchainopts = {'pic': True}
-
-source_urls = [homepage]
-sources = ['fftw-%(version)s-pl2.tar.gz']
-checksums = ['927e481edbb32575397eb3d62535a856']
-
-# no quad precision, requires GCC v4.6 or higher
-# see also
-# http://www.fftw.org/doc/Extended-and-quadruple-precision-in-Fortran.html
-with_quad_prec = False
-
-# compilation fails when configuring with --enable-avx-128-fma, Intel compilers do not support FMA4 instructions
-use_fma4 = False
-
-runtest = 'check'
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.6-gompic-2017.02.eb b/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.6-gompic-2017.02.eb
deleted file mode 100644
index 780c389fb25..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFTW/FFTW-3.3.6-gompic-2017.02.eb
+++ /dev/null
@@ -1,17 +0,0 @@
-name = 'FFTW'
-version = '3.3.6'
-
-homepage = 'http://www.fftw.org'
-description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
- in one or more dimensions, of arbitrary input size, and of both real and complex data."""
-
-toolchain = {'name': 'gompic', 'version': '2017.02'}
-toolchainopts = {'pic': True}
-
-source_urls = [homepage]
-sources = ['fftw-%(version)s-pl2.tar.gz']
-checksums = ['a5de35c5c824a78a058ca54278c706cdf3d4abba1c56b63531c2cb05f5d57da2']
-
-runtest = 'check'
-
-moduleclass = 'numlib'
diff --git a/easybuild/easyconfigs/__archive__/f/FFindex/FFindex-0.9.9-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/FFindex/FFindex-0.9.9-goolf-1.4.10.eb
deleted file mode 100755
index e96e5e3b33d..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFindex/FFindex-0.9.9-goolf-1.4.10.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFindex'
-version = '0.9.9'
-
-homepage = 'http://www.splashground.de/~andy/programs/FFindex/'
-description = """simple index/database for huge amounts of small files"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'usempi': True}
-
-source_urls = ['http://www.splashground.de/~andy/programs/FFindex/']
-sources = [SOURCELOWER_TAR_GZ]
-
-skipsteps = ['configure']
-
-start_dir = 'src'
-
-buildopts = 'USEMPI=1'
-installopts = "USEMPI=1 INSTALL_DIR=%(installdir)s"
-
-runtest = 'test'
-
-parallel = 1
-
-sanity_check_paths = {
- 'files': ['bin/ffindex_%s' % x for x in ['apply', 'build', 'from_fasta', 'get', 'modify', 'unpack']] +
- ['lib64/libffindex.a', 'lib64/libffindex.so'],
- 'dirs': [],
-}
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/f/FFmpeg/FFmpeg-2.4-intel-2014.06.eb b/easybuild/easyconfigs/__archive__/f/FFmpeg/FFmpeg-2.4-intel-2014.06.eb
deleted file mode 100644
index d1a07765f35..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFmpeg/FFmpeg-2.4-intel-2014.06.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFmpeg'
-version = '2.4'
-
-homepage = 'https://www.ffmpeg.org/'
-description = """A complete, cross-platform solution to record, convert and stream audio and video."""
-
-toolchain = {'name': 'intel', 'version': '2014.06'}
-
-sources = [SOURCELOWER_TAR_BZ2]
-source_urls = ['http://ffmpeg.org/releases/']
-
-configopts = '--enable-pic --enable-shared --enable-gpl --enable-version3 --enable-nonfree --cc="$CC" --cxx="$CXX"'
-
-dependencies = [
- ('NASM', '2.11.05'),
- ('zlib', '1.2.8'),
-]
-
-sanity_check_paths = {
- 'files': ['bin/ff%s' % x for x in ['mpeg', 'probe', 'server']] +
- ['lib/lib%s.%s' % (x, y) for x in ['avdevice', 'avfilter', 'avformat', 'avcodec', 'postproc',
- 'swresample', 'swscale', 'avutil'] for y in ['so', 'a']],
- 'dirs': ['include']
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/FFmpeg/FFmpeg-2.4-intel-2014b.eb b/easybuild/easyconfigs/__archive__/f/FFmpeg/FFmpeg-2.4-intel-2014b.eb
deleted file mode 100644
index 2576f9f0ad3..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFmpeg/FFmpeg-2.4-intel-2014b.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFmpeg'
-version = '2.4'
-
-homepage = 'https://www.ffmpeg.org/'
-description = """A complete, cross-platform solution to record, convert and stream audio and video."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-sources = [SOURCELOWER_TAR_BZ2]
-source_urls = ['http://ffmpeg.org/releases/']
-
-configopts = '--enable-pic --enable-shared --enable-gpl --enable-version3 --enable-nonfree --cc="$CC" --cxx="$CXX"'
-
-dependencies = [
- ('NASM', '2.11.05'),
- ('zlib', '1.2.8'),
-]
-
-sanity_check_paths = {
- 'files': ['bin/ff%s' % x for x in ['mpeg', 'probe', 'server']] +
- ['lib/lib%s.%s' % (x, y) for x in ['avdevice', 'avfilter', 'avformat', 'avcodec', 'postproc',
- 'swresample', 'swscale', 'avutil'] for y in ['so', 'a']],
- 'dirs': ['include']
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/FFmpeg/FFmpeg-2.4-intel-2015a.eb b/easybuild/easyconfigs/__archive__/f/FFmpeg/FFmpeg-2.4-intel-2015a.eb
deleted file mode 100644
index 2a1ef9245eb..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFmpeg/FFmpeg-2.4-intel-2015a.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFmpeg'
-version = '2.4'
-
-homepage = 'https://www.ffmpeg.org/'
-description = """A complete, cross-platform solution to record, convert and stream audio and video."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_BZ2]
-source_urls = ['http://ffmpeg.org/releases/']
-
-configopts = '--enable-pic --enable-shared --enable-gpl --enable-version3 --enable-nonfree --cc="$CC" --cxx="$CXX"'
-
-dependencies = [
- ('NASM', '2.11.05'),
- ('zlib', '1.2.8'),
-]
-
-sanity_check_paths = {
- 'files': ['bin/ff%s' % x for x in ['mpeg', 'probe', 'server']] +
- ['lib/lib%s.%s' % (x, y) for x in ['avdevice', 'avfilter', 'avformat', 'avcodec', 'postproc',
- 'swresample', 'swscale', 'avutil'] for y in ['so', 'a']],
- 'dirs': ['include']
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/FFmpeg/FFmpeg-2.8-intel-2015b.eb b/easybuild/easyconfigs/__archive__/f/FFmpeg/FFmpeg-2.8-intel-2015b.eb
deleted file mode 100644
index e5bfa0bfd3b..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFmpeg/FFmpeg-2.8-intel-2015b.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFmpeg'
-version = '2.8'
-
-homepage = 'https://www.ffmpeg.org/'
-description = """A complete, cross-platform solution to record, convert and stream audio and video."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-sources = [SOURCELOWER_TAR_BZ2]
-source_urls = ['http://ffmpeg.org/releases/']
-
-dependencies = [
- ('NASM', '2.11.08'),
- ('zlib', '1.2.8'),
- ('x264', '20150930'),
-]
-
-configopts = '--enable-pic --enable-shared --enable-gpl --enable-version3 --enable-nonfree --cc="$CC" --cxx="$CXX" '
-configopts += '--enable-libx264'
-
-sanity_check_paths = {
- 'files': ['bin/ff%s' % x for x in ['mpeg', 'probe', 'server']] +
- ['lib/lib%s.%s' % (x, y) for x in ['avdevice', 'avfilter', 'avformat', 'avcodec', 'postproc',
- 'swresample', 'swscale', 'avutil'] for y in ['so', 'a']],
- 'dirs': ['include']
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/FFmpeg/FFmpeg-2.8.4-foss-2015a.eb b/easybuild/easyconfigs/__archive__/f/FFmpeg/FFmpeg-2.8.4-foss-2015a.eb
deleted file mode 100644
index ecba492e06b..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFmpeg/FFmpeg-2.8.4-foss-2015a.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFmpeg'
-version = '2.8.4'
-
-homepage = 'https://www.ffmpeg.org/'
-description = """A complete, cross-platform solution to record, convert and stream audio and video."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_BZ2]
-source_urls = ['http://ffmpeg.org/releases/']
-
-dependencies = [
- ('NASM', '2.11.08'),
- ('zlib', '1.2.8'),
- ('x264', '20160114'),
-]
-
-configopts = '--enable-pic --enable-shared --enable-gpl --enable-version3 --enable-nonfree --cc="$CC" --cxx="$CXX" '
-configopts += '--enable-libx264'
-
-sanity_check_paths = {
- 'files': ['bin/ff%s' % x for x in ['mpeg', 'probe', 'server']] +
- ['lib/lib%s.%s' % (x, y) for x in ['avdevice', 'avfilter', 'avformat', 'avcodec', 'postproc',
- 'swresample', 'swscale', 'avutil'] for y in ['so', 'a']],
- 'dirs': ['include']
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/FFmpeg/FFmpeg-2.8.5-foss-2015a.eb b/easybuild/easyconfigs/__archive__/f/FFmpeg/FFmpeg-2.8.5-foss-2015a.eb
deleted file mode 100644
index 3b5612efcec..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FFmpeg/FFmpeg-2.8.5-foss-2015a.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FFmpeg'
-version = '2.8.5'
-
-homepage = 'https://www.ffmpeg.org/'
-description = """A complete, cross-platform solution to record, convert and stream audio and video."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_BZ2]
-source_urls = ['http://ffmpeg.org/releases/']
-
-dependencies = [
- ('NASM', '2.11.08'),
- ('zlib', '1.2.8'),
- ('x264', '20160114'),
-]
-
-configopts = '--enable-pic --enable-shared --enable-gpl --enable-version3 --enable-nonfree --cc="$CC" --cxx="$CXX" '
-configopts += '--enable-libx264'
-
-sanity_check_paths = {
- 'files': ['bin/ff%s' % x for x in ['mpeg', 'probe', 'server']] +
- ['lib/lib%s.%s' % (x, y) for x in ['avdevice', 'avfilter', 'avformat', 'avcodec', 'postproc',
- 'swresample', 'swscale', 'avutil'] for y in ['so', 'a']],
- 'dirs': ['include']
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.0.0-goolf-1.4.10-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.0.0-goolf-1.4.10-Python-2.7.3.eb
deleted file mode 100644
index 15e6a22a2f3..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.0.0-goolf-1.4.10-Python-2.7.3.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'FIAT'
-version = '1.0.0'
-
-homepage = 'https://launchpad.net/fiat'
-description = """The FInite element Automatic Tabulator FIAT supports generation of arbitrary order
-instances of the Lagrange elements on lines, triangles, and tetrahedra. It is also capable of generating
-arbitrary order instances of Jacobi-type quadrature rules on the same element shapes."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['https://launchpad.net/%(namelower)s/%(version_major_minor)s.x/%(version)s/+download/']
-sources = [SOURCELOWER_TAR_GZ]
-
-python = "Python"
-pythonversion = '2.7.3'
-pythonshortversion = ".".join(pythonversion.split(".")[:-1])
-
-versionsuffix = "-%s-%s" % (python, pythonversion)
-
-dependencies = [
- (python, pythonversion),
- ('ScientificPython', '2.8', versionsuffix),
-]
-
-options = {'modulename': name}
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['lib/python%s/site-packages/FIAT' % pythonshortversion],
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.0.0-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.0.0-ictce-5.3.0-Python-2.7.3.eb
deleted file mode 100644
index d79aa7bf84b..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.0.0-ictce-5.3.0-Python-2.7.3.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'FIAT'
-version = '1.0.0'
-
-homepage = 'https://launchpad.net/fiat'
-description = """The FInite element Automatic Tabulator FIAT supports generation of arbitrary order
- instances of the Lagrange elements on lines, triangles, and tetrahedra. It is also capable of generating
- arbitrary order instances of Jacobi-type quadrature rules on the same element shapes."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['https://launchpad.net/%(namelower)s/%(version_major_minor)s.x/%(version)s/+download/']
-sources = [SOURCELOWER_TAR_GZ]
-
-python = "Python"
-pythonversion = '2.7.3'
-pythonshortversion = ".".join(pythonversion.split(".")[:-1])
-
-versionsuffix = "-%s-%s" % (python, pythonversion)
-
-dependencies = [
- (python, pythonversion),
- ('ScientificPython', '2.8', versionsuffix),
-]
-
-options = {'modulename': name}
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['lib/python%s/site-packages/FIAT' % pythonshortversion],
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.1-ictce-5.2.0-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.1-ictce-5.2.0-Python-2.7.3.eb
deleted file mode 100644
index 7333fc753b6..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.1-ictce-5.2.0-Python-2.7.3.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'FIAT'
-version = '1.1'
-
-homepage = 'https://launchpad.net/fiat'
-description = """The FInite element Automatic Tabulator FIAT supports generation of arbitrary order
-instances of the Lagrange elements on lines, triangles, and tetrahedra. It is also capable of generating
-arbitrary order instances of Jacobi-type quadrature rules on the same element shapes."""
-
-toolchain = {'name': 'ictce', 'version': '5.2.0'}
-
-source_urls = [
- 'https://launchpad.net/%(namelower)s/%(version_major_minor)s.x/release-%(version_major_minor)s/+download/',
-]
-sources = [SOURCELOWER_TAR_GZ]
-
-python = "Python"
-pythonversion = '2.7.3'
-pythonshortversion = ".".join(pythonversion.split(".")[:-1])
-
-versionsuffix = "-%s-%s" % (python, pythonversion)
-
-dependencies = [
- (python, pythonversion),
- ('ScientificPython', '2.8', versionsuffix),
-]
-
-options = {'modulename': name}
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['lib/python%s/site-packages/FIAT' % pythonshortversion],
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.1-ictce-5.3.0-Python-2.7.3.eb b/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.1-ictce-5.3.0-Python-2.7.3.eb
deleted file mode 100644
index b09c96da468..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.1-ictce-5.3.0-Python-2.7.3.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'FIAT'
-version = '1.1'
-
-homepage = 'https://launchpad.net/fiat'
-description = """The FInite element Automatic Tabulator FIAT supports generation of arbitrary order
-instances of the Lagrange elements on lines, triangles, and tetrahedra. It is also capable of generating
-arbitrary order instances of Jacobi-type quadrature rules on the same element shapes."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = [
- 'https://launchpad.net/%(namelower)s/%(version_major_minor)s.x/release-%(version_major_minor)s/+download/',
-]
-sources = [SOURCELOWER_TAR_GZ]
-
-python = "Python"
-pythonversion = '2.7.3'
-pythonshortversion = ".".join(pythonversion.split(".")[:-1])
-
-versionsuffix = "-%s-%s" % (python, pythonversion)
-
-dependencies = [
- (python, pythonversion),
- ('ScientificPython', '2.8', versionsuffix),
-]
-
-options = {'modulename': name}
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['lib/python%s/site-packages/FIAT' % pythonshortversion],
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.1-intel-2014b-Python-2.7.8.eb b/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.1-intel-2014b-Python-2.7.8.eb
deleted file mode 100644
index 8515a18e690..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.1-intel-2014b-Python-2.7.8.eb
+++ /dev/null
@@ -1,36 +0,0 @@
-easyblock = "PythonPackage"
-
-name = 'FIAT'
-version = '1.1'
-
-homepage = 'https://launchpad.net/fiat'
-description = """The FInite element Automatic Tabulator FIAT supports generation of arbitrary order
-instances of the Lagrange elements on lines, triangles, and tetrahedra. It is also capable of generating
-arbitrary order instances of Jacobi-type quadrature rules on the same element shapes."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = [
- 'https://launchpad.net/%(namelower)s/%(version_major_minor)s.x/release-%(version_major_minor)s/+download/',
-]
-sources = [SOURCELOWER_TAR_GZ]
-
-python = "Python"
-pythonversion = '2.7.8'
-pythonshortversion = ".".join(pythonversion.split(".")[:-1])
-
-versionsuffix = "-%s-%s" % (python, pythonversion)
-
-dependencies = [
- (python, pythonversion),
- ('ScientificPython', '2.8.1', versionsuffix),
-]
-
-options = {'modulename': name}
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['lib/python%s/site-packages/FIAT' % pythonshortversion],
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.5.0-intel-2015a-Python-2.7.9.eb b/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.5.0-intel-2015a-Python-2.7.9.eb
deleted file mode 100644
index 2e95a09438e..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.5.0-intel-2015a-Python-2.7.9.eb
+++ /dev/null
@@ -1,35 +0,0 @@
-easyblock = 'PythonPackage'
-
-name = 'FIAT'
-version = '1.5.0'
-
-homepage = 'https://bitbucket.org/fenics-project/fiat'
-description = """The FInite element Automatic Tabulator FIAT supports generation of arbitrary order
-instances of the Lagrange elements on lines, triangles, and tetrahedra. It is also capable of generating
-arbitrary order instances of Jacobi-type quadrature rules on the same element shapes."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['https://bitbucket.org/fenics-project/fiat/downloads']
-sources = [SOURCELOWER_TAR_GZ]
-
-python = "Python"
-pythonversion = '2.7.9'
-pythonshortversion = ".".join(pythonversion.split('.')[:-1])
-
-versionsuffix = "-%s-%s" % (python, pythonversion)
-
-dependencies = [
- (python, pythonversion),
- ('ScientificPython', '2.9.4', versionsuffix),
- ('sympy', '0.7.6', versionsuffix),
-]
-
-options = {'modulename': name}
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['lib/python%s/site-packages/FIAT' % pythonshortversion],
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.6.0-intel-2015b-Python-2.7.11.eb b/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.6.0-intel-2015b-Python-2.7.11.eb
deleted file mode 100644
index 47959ae1d49..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FIAT/FIAT-1.6.0-intel-2015b-Python-2.7.11.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-easyblock = 'PythonPackage'
-
-name = 'FIAT'
-version = '1.6.0'
-
-homepage = 'https://bitbucket.org/fenics-project/fiat'
-description = """The FInite element Automatic Tabulator FIAT supports generation of arbitrary order
-instances of the Lagrange elements on lines, triangles, and tetrahedra. It is also capable of generating
-arbitrary order instances of Jacobi-type quadrature rules on the same element shapes."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['https://bitbucket.org/fenics-project/fiat/downloads']
-sources = [SOURCELOWER_TAR_GZ]
-
-pyver = '2.7.11'
-versionsuffix = '-Python-%s' % pyver
-
-dependencies = [
- ('Python', pyver),
- ('sympy', '0.7.6.1', versionsuffix),
-]
-
-options = {'modulename': name}
-
-pyshortver = '.'.join(pyver.split('.')[:2])
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['lib/python%s/site-packages' % pyshortver],
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/f/FLAC/FLAC-1.3.1-foss-2015a.eb b/easybuild/easyconfigs/__archive__/f/FLAC/FLAC-1.3.1-foss-2015a.eb
deleted file mode 100644
index 81cb92955ed..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FLAC/FLAC-1.3.1-foss-2015a.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Author: Stephane Thiell
-###
-
-easyblock = 'ConfigureMake'
-
-name = 'FLAC'
-version = '1.3.1'
-
-homepage = 'https://xiph.org/flac/'
-description = """Programs and libraries for working with Free Lossless Audio Codec (FLAC) files."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-sources = [SOURCELOWER_TAR_XZ]
-source_urls = ['http://downloads.xiph.org/releases/flac/']
-
-# use of assembly routines requires a recent binutils
-builddependencies = [('binutils', '2.25', '', ('GCC', '4.9.2'))]
-
-runtest = 'check'
-
-sanity_check_paths = {
- 'files': ['bin/flac', 'include/FLAC/all.h', 'lib/libFLAC.%s' % SHLIB_EXT],
- 'dirs': [],
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/f/FLASH/FLASH-1.2.11-foss-2015b.eb b/easybuild/easyconfigs/__archive__/f/FLASH/FLASH-1.2.11-foss-2015b.eb
deleted file mode 100644
index 8df3311e827..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FLASH/FLASH-1.2.11-foss-2015b.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'MakeCp'
-
-name = 'FLASH'
-version = '1.2.11'
-
-homepage = 'https://ccb.jhu.edu/software/FLASH/'
-description = """FLASH (Fast Length Adjustment of SHort reads) is a very fast and accurate software
- tool to merge paired-end reads from next-generation sequencing experiments. FLASH is designed to
- merge pairs of reads when the original DNA fragments are shorter than twice the length of reads.
- The resulting longer reads can significantly improve genome assemblies. They can also improve
- transcriptome assembly when FLASH is used to merge RNA-seq data."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = ['http://download.sourceforge.net/%(namelower)spage']
-sources = [SOURCE_TAR_GZ]
-
-files_to_copy = [(['flash'], 'bin')]
-
-sanity_check_paths = {
- 'files': ['bin/flash'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/FLTK/FLTK-1.3.2-foss-2014b.eb b/easybuild/easyconfigs/__archive__/f/FLTK/FLTK-1.3.2-foss-2014b.eb
deleted file mode 100644
index 5a7bfc53c3d..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FLTK/FLTK-1.3.2-foss-2014b.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-#
-# author: Dina Mahmoud Ibrahim ( Cairo University )
-#
-easyblock = 'ConfigureMake'
-
-name = 'FLTK'
-version = '1.3.2'
-
-homepage = 'http://www.fltk.org'
-description = """FLTK is a cross-platform C++ GUI toolkit for UNIX/Linux (X11), Microsoft Windows,
- and MacOS X. FLTK provides modern GUI functionality without the bloat and supports 3D graphics via OpenGL
- and its built-in GLUT emulation."""
-
-toolchain = {'name': 'foss', 'version': '2014b'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = ['%(namelower)s-%(version)s-source.tar.gz']
-source_urls = ['http://fltk.org/pub/%(namelower)s/%(version)s/']
-
-dependencies = [
- ('Tcl', '8.5.12'),
- ('Tk', '8.5.12'),
-]
-
-sanity_check_paths = {
- 'files': ['bin/fltk-config', 'bin/fluid'],
- 'dirs': ['lib'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/FLTK/FLTK-1.3.2-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/FLTK/FLTK-1.3.2-goolf-1.4.10.eb
deleted file mode 100644
index 89182262213..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FLTK/FLTK-1.3.2-goolf-1.4.10.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-#
-# author: Dina Mahmoud Ibrahim ( Cairo University )
-#
-easyblock = 'ConfigureMake'
-
-name = 'FLTK'
-version = '1.3.2'
-
-homepage = 'http://www.fltk.org'
-description = """FLTK is a cross-platform C++ GUI toolkit for UNIX/Linux (X11), Microsoft Windows,
- and MacOS X. FLTK provides modern GUI functionality without the bloat and supports 3D graphics via OpenGL
- and its built-in GLUT emulation."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = ['%(namelower)s-%(version)s-source.tar.gz']
-source_urls = ['http://fltk.org/pub/%(namelower)s/%(version)s/']
-
-dependencies = [
- ('Tcl', '8.5.12'),
- ('Tk', '8.5.12'),
-]
-
-sanity_check_paths = {
- 'files': ['bin/fltk-config', 'bin/fluid'],
- 'dirs': ['lib'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/FLTK/FLTK-1.3.2-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/f/FLTK/FLTK-1.3.2-ictce-5.3.0.eb
deleted file mode 100644
index cdb8c791111..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FLTK/FLTK-1.3.2-ictce-5.3.0.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-#
-# author: Dina Mahmoud Ibrahim ( Cairo University )
-#
-easyblock = 'ConfigureMake'
-
-name = 'FLTK'
-version = '1.3.2'
-
-homepage = 'http://www.fltk.org'
-description = """FLTK is a cross-platform C++ GUI toolkit for UNIX/Linux (X11), Microsoft Windows,
- and MacOS X. FLTK provides modern GUI functionality without the bloat and supports 3D graphics via OpenGL
- and its built-in GLUT emulation."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sources = ['%(namelower)s-%(version)s-source.tar.gz']
-source_urls = ['http://fltk.org/pub/%(namelower)s/%(version)s/']
-
-dependencies = [
- ('Tcl', '8.5.12'),
- ('Tk', '8.5.12'),
-]
-
-sanity_check_paths = {
- 'files': ['bin/fltk-config', 'bin/fluid'],
- 'dirs': ['lib'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/FLTK/FLTK-1.3.2-intel-2014b.eb b/easybuild/easyconfigs/__archive__/f/FLTK/FLTK-1.3.2-intel-2014b.eb
deleted file mode 100644
index a70eaf38710..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FLTK/FLTK-1.3.2-intel-2014b.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-#
-# author: Dina Mahmoud Ibrahim ( Cairo University )
-#
-easyblock = 'ConfigureMake'
-
-name = 'FLTK'
-version = '1.3.2'
-
-homepage = 'http://www.fltk.org'
-description = """FLTK is a cross-platform C++ GUI toolkit for UNIX/Linux (X11), Microsoft Windows,
- and MacOS X. FLTK provides modern GUI functionality without the bloat and supports 3D graphics via OpenGL
- and its built-in GLUT emulation."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-toolchainopts = {'optarch': True, 'pic': True}
-
-sources = ['%(namelower)s-%(version)s-source.tar.gz']
-source_urls = ['http://fltk.org/pub/%(namelower)s/%(version)s/']
-
-dependencies = [
- ('Tcl', '8.5.12'),
- ('Tk', '8.5.12'),
-]
-
-sanity_check_paths = {
- 'files': ['bin/fltk-config', 'bin/fluid'],
- 'dirs': ['lib'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/FRC_align/FRC_align-20130521-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/FRC_align/FRC_align-20130521-goolf-1.4.10.eb
deleted file mode 100644
index aa0ce18c0cd..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FRC_align/FRC_align-20130521-goolf-1.4.10.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'FRC_align'
-version = '20130521'
-
-homepage = 'https://github.com/vezzi/FRC_align'
-description = """Computes FRC from SAM/BAM file and not from afg files."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-git_commit_id = '77a4bc7b8b'
-sources = ['%s.tar.gz' % git_commit_id]
-source_urls = ['https://github.com/vezzi/FRC_align/archive']
-
-dependencies = [
- ('Boost', '1.51.0'),
- ('bzip2', '1.0.6'),
- ('zlib', '1.2.7'),
- ('ncurses', '5.9'),
-]
-
-preconfigopts = 'cd src/samtools && make LIBPATH="-L$EBROOTZLIB/lib -L$EBROOTNCURSES/lib" && cd - && '
-preconfigopts += 'BOOST_ROOT=$EBROOTBOOST'
-buildopts = 'BOOST_LDFLAGS="-L$EBROOTBZIP2/lib -L$EBROOTZLIB/lib -L$EBROOTBOOST/lib" '
-buildopts += 'BOOST_IOSTREAMS_LIBS="-lboost_iostreams"'
-
-sanity_check_paths = {
- 'files': ['bin/FRC', 'bin/FRC_debug'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/FSA/FSA-1.15.8-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/FSA/FSA-1.15.8-goolf-1.4.10.eb
deleted file mode 100644
index 7e45a7cbdc6..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FSA/FSA-1.15.8-goolf-1.4.10.eb
+++ /dev/null
@@ -1,39 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/NTUA, Swiss Institute of Bioinformatics
-# Authors:: Fotis Georgatos , Pablo Escobar Lopez
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = "FSA"
-version = "1.15.8"
-
-homepage = 'http://fsa.sourceforge.net/'
-description = """ FSA:Fast Statistical Alignment, is a probabilistic multiple sequence
- alignment algorithm which uses a distance-based approach to aligning homologous protein,
- RNA or DNA sequences."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'opt': True, 'optarch': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [
- ('MUMmer', '3.23'),
- ('Exonerate', '2.2.0')
-]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["fsa", "gapcleaner", "map_gff_coords"]],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/FSA/FSA-1.15.8-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/f/FSA/FSA-1.15.8-ictce-5.3.0.eb
deleted file mode 100644
index c0b720f5c0b..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FSA/FSA-1.15.8-ictce-5.3.0.eb
+++ /dev/null
@@ -1,39 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/NTUA, Swiss Institute of Bioinformatics
-# Authors:: Fotis Georgatos , Pablo Escobar Lopez
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_2012-94.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = "FSA"
-version = "1.15.8"
-
-homepage = 'http://fsa.sourceforge.net/'
-description = """ FSA:Fast Statistical Alignment, is a probabilistic multiple sequence
- alignment algorithm which uses a distance-based approach to aligning homologous protein,
- RNA or DNA sequences."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'opt': True, 'optarch': True}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [
- ('MUMmer', '3.23'),
- ('Exonerate', '2.2.0')
-]
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ["fsa", "gapcleaner", "map_gff_coords"]],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/FSL/FSL-4.1.9-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/FSL/FSL-4.1.9-goolf-1.4.10.eb
deleted file mode 100644
index d3b4c2b6a29..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FSL/FSL-4.1.9-goolf-1.4.10.eb
+++ /dev/null
@@ -1,17 +0,0 @@
-name = 'FSL'
-version = '4.1.9'
-
-homepage = 'http://www.fmrib.ox.ac.uk/fsl/'
-description = """FSL is a comprehensive library of analysis tools for FMRI, MRI and DTI brain imaging data."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ["http://www.fmrib.ox.ac.uk/fsldownloads/"]
-sources = ['%s-%s-sources.tar.gz' % (name.lower(), version)]
-
-patches = ['FSL_makefile_fixes.patch']
-
-# libX11-devel is required for X11/Xlib.h, required by tk build
-osdependencies = ['libX11-devel']
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/FSL/FSL-4.1.9-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/f/FSL/FSL-4.1.9-ictce-5.3.0.eb
deleted file mode 100644
index af52a657456..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FSL/FSL-4.1.9-ictce-5.3.0.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'FSL'
-version = '4.1.9'
-
-homepage = 'http://www.fmrib.ox.ac.uk/fsl/'
-description = """FSL is a comprehensive library of analysis tools for FMRI, MRI and DTI brain imaging data."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ["http://www.fmrib.ox.ac.uk/fsldownloads/"]
-sources = ['%s-%s-sources.tar.gz' % (name.lower(), version)]
-
-patches = [
- 'FSL_makefile_fixes.patch',
- 'FSL_icc_nan-inf_fix.patch'
-]
-
-# libX11-devel is required for X11/Xlib.h, required by tk build
-osdependencies = ['libX11-devel']
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/FSL/FSL-5.0.4-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/FSL/FSL-5.0.4-goolf-1.4.10.eb
deleted file mode 100644
index ff7768c9c15..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FSL/FSL-5.0.4-goolf-1.4.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-name = 'FSL'
-version = '5.0.4'
-
-homepage = 'http://www.fmrib.ox.ac.uk/fsl/'
-description = """FSL is a comprehensive library of analysis tools for FMRI, MRI and DTI brain imaging data."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ["http://www.fmrib.ox.ac.uk/fsldownloads/"]
-sources = ['%(namelower)s-%(version)s-sources.tar.gz']
-
-patches = [
- 'FSL-%(version)s_makefile_fixes.patch',
- 'FSL-5.0.4_GCC-4.7.patch',
-]
-
-dependencies = [
- ('freeglut', '2.8.1'),
- ('expat', '2.1.0'),
-]
-
-# libX11-devel is required for X11/Xlib.h, required by tk build
-osdependencies = ['libX11-devel']
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/FSL/FSL-5.0.4-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/f/FSL/FSL-5.0.4-ictce-5.3.0.eb
deleted file mode 100644
index 295efc5d977..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FSL/FSL-5.0.4-ictce-5.3.0.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-name = 'FSL'
-version = '5.0.4'
-
-homepage = 'http://www.fmrib.ox.ac.uk/fsl/'
-description = """FSL is a comprehensive library of analysis tools for FMRI, MRI and DTI brain imaging data."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ["http://www.fmrib.ox.ac.uk/fsldownloads/"]
-sources = ['%(namelower)s-%(version)s-sources.tar.gz']
-
-patches = [
- 'FSL-%(version)s_makefile_fixes.patch',
- 'FSL-%(version)s_ictce-wd803.patch',
- 'FSL_icc_nan-inf_fix.patch',
-]
-
-dependencies = [
- ('freeglut', '2.8.1'),
- ('expat', '2.1.0'),
-]
-
-# libX11-devel is required for X11/Xlib.h, required by tk build
-osdependencies = ['libX11-devel']
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/FSL/FSL-5.0.8-intel-2015a.eb b/easybuild/easyconfigs/__archive__/f/FSL/FSL-5.0.8-intel-2015a.eb
deleted file mode 100644
index dd4d60386c2..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FSL/FSL-5.0.8-intel-2015a.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-name = 'FSL'
-version = '5.0.8'
-
-homepage = 'http://www.fmrib.ox.ac.uk/fsl/'
-description = """FSL is a comprehensive library of analysis tools for FMRI, MRI and DTI brain imaging data."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ["http://www.fmrib.ox.ac.uk/fsldownloads/"]
-sources = ['%(namelower)s-%(version)s-sources.tar.gz']
-
-patches = [
- 'FSL-%(version)s_makefile_fixes.patch',
- 'FSL-%(version)s_ictce-wd803.patch',
- 'FSL_icc_nan-inf_fix.patch',
-]
-
-dependencies = [
- ('freeglut', '2.8.1'),
- ('expat', '2.1.0'),
- ('libX11', '1.6.3', '-Python-2.7.9'),
-]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/FSL/FSL-5.0.9-intel-2015b.eb b/easybuild/easyconfigs/__archive__/f/FSL/FSL-5.0.9-intel-2015b.eb
deleted file mode 100644
index 23eb91ffe52..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FSL/FSL-5.0.9-intel-2015b.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-name = 'FSL'
-version = '5.0.9'
-
-homepage = 'http://www.fmrib.ox.ac.uk/fsl/'
-description = """FSL is a comprehensive library of analysis tools for FMRI, MRI and DTI brain imaging data."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ["http://www.fmrib.ox.ac.uk/fsldownloads/"]
-sources = ['%(namelower)s-%(version)s-sources.tar.gz']
-
-patches = [
- 'FSL-%(version)s_makefile_fixes.patch',
- 'FSL_icc_nan-inf_fix.patch',
-]
-
-dependencies = [
- ('freeglut', '2.8.1'),
- ('expat', '2.1.0'),
- ('libX11', '1.6.3', '-Python-2.7.10'),
-]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/FastTree/FastTree-2.1.7-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/FastTree/FastTree-2.1.7-goolf-1.4.10.eb
deleted file mode 100644
index 3352880d36f..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FastTree/FastTree-2.1.7-goolf-1.4.10.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-easyblock = 'CmdCp'
-
-name = 'FastTree'
-version = '2.1.7'
-
-homepage = 'http://www.microbesonline.org/fasttree/'
-description = """FastTree infers approximately-maximum-likelihood phylogenetic trees from alignments of nucleotide
- or protein sequences. FastTree can handle alignments with up to a million of sequences in a reasonable amount of
- time and memory. """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'openmp': True}
-
-source_urls = ['http://www.microbesonline.org/fasttree/']
-sources = ['%(name)s-%(version)s.c']
-
-skipsteps = ['source']
-
-cmds_map = [('FastTree.*.c', '$CC -DOPENMP $CFLAGS $LIBS %%(source)s -o %(name)s')]
-
-files_to_copy = [(['FastTree'], 'bin')]
-
-sanity_check_paths = {
- 'files': ['bin/FastTree'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/FastTree/FastTree-2.1.7-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/f/FastTree/FastTree-2.1.7-ictce-5.5.0.eb
deleted file mode 100644
index 7447f915f32..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FastTree/FastTree-2.1.7-ictce-5.5.0.eb
+++ /dev/null
@@ -1,28 +0,0 @@
-easyblock = 'CmdCp'
-
-name = 'FastTree'
-version = '2.1.7'
-
-homepage = 'http://www.microbesonline.org/fasttree/'
-description = """FastTree infers approximately-maximum-likelihood phylogenetic trees from alignments of nucleotide
- or protein sequences. FastTree can handle alignments with up to a million of sequences in a reasonable amount of
- time and memory. """
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'openmp': True}
-
-source_urls = ['http://www.microbesonline.org/fasttree/']
-sources = ['%(name)s-%(version)s.c']
-
-skipsteps = ['source']
-
-cmds_map = [('FastTree.*.c', '$CC -DOPENMP $CFLAGS $LIBS %%(source)s -o %(name)s')]
-
-files_to_copy = [(['FastTree'], 'bin')]
-
-sanity_check_paths = {
- 'files': ['bin/FastTree'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/Ferret/Ferret-6.72-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/Ferret/Ferret-6.72-goolf-1.4.10.eb
deleted file mode 100644
index d05befd06c3..00000000000
--- a/easybuild/easyconfigs/__archive__/f/Ferret/Ferret-6.72-goolf-1.4.10.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-name = 'Ferret'
-version = '6.72'
-
-homepage = 'http://ferret.pmel.noaa.gov/'
-description = """Ferret is an interactive computer visualization and analysis environment
-designed to meet the needs of oceanographers and meteorologists analyzing large and complex gridded data sets."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'usempi': True}
-
-sources = ['fer_source.v%s.tar.gz' % ''.join(version.split('.'))]
-source_urls = ['ftp://ftp.pmel.noaa.gov/ferret/pub/source']
-
-dependencies = [
- ('netCDF', '4.1.3'),
- ('zlib', '1.2.7'),
- ('Szip', '2.1'),
- ('cURL', '7.27.0'),
- ('ncurses', '5.9'),
- ('libreadline', '6.2'),
- ('Java', '1.7.0_10', '', True),
-]
-
-parallel = 1
-
-patches = ['Ferret-lib64-hardcoded.patch']
-
-buildopts = 'LD="$CC"'
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/FragGeneScan/FragGeneScan-1.19-intel-2014b.eb b/easybuild/easyconfigs/__archive__/f/FragGeneScan/FragGeneScan-1.19-intel-2014b.eb
deleted file mode 100644
index 807f2d8eb84..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FragGeneScan/FragGeneScan-1.19-intel-2014b.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'MakeCp'
-
-name = 'FragGeneScan'
-version = '1.19'
-
-homepage = 'http://omics.informatics.indiana.edu/FragGeneScan/'
-description = "FragGeneScan is an application for finding (fragmented) genes in short reads."
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = [SOURCEFORGE_SOURCE]
-sources = ['%(name)s%(version)s.tar.gz']
-
-buildopts = 'CC="$CC" CFLAG="$CFLAGS" fgs && chmod -R go+rx *.py *.pl train example'
-
-files_to_copy = ['FragGeneScan', 'FGS_gff.py', 'post_process.pl', 'run_FragGeneScan.pl', 'example', 'train']
-
-modextrapaths = {'PATH': ['']}
-
-sanity_check_paths = {
- 'files': ['FGS_gff.py', 'FragGeneScan', 'post_process.pl', 'run_FragGeneScan.pl'],
- 'dirs': ['example', 'train'],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/FreeXL/FreeXL-1.0.0g-goolf-1.5.14.eb b/easybuild/easyconfigs/__archive__/f/FreeXL/FreeXL-1.0.0g-goolf-1.5.14.eb
deleted file mode 100644
index 94b4d8c173c..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FreeXL/FreeXL-1.0.0g-goolf-1.5.14.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-name = 'FreeXL'
-version = '1.0.0g'
-
-easyblock = 'ConfigureMake'
-
-homepage = "https://www.gaia-gis.it/fossil/freexl/index"
-description = "FreeXL is an open source library to extract valid data from within an Excel (.xls) spreadsheet."
-
-toolchain = {'name': 'goolf', 'version': '1.5.14'}
-toolchainopts = {'usempi': False, 'pic': True}
-
-source_urls = ['http://www.gaia-gis.it/gaia-sins/freexl-sources/']
-sources = [SOURCELOWER_TAR_GZ]
-
-builddependencies = [('CMake', '2.8.10.2')]
-
-sanity_check_paths = {
- 'files': ["lib/libfreexl.la"],
- 'dirs': ["lib"]
-}
-
-moduleclass = 'lib'
diff --git a/easybuild/easyconfigs/__archive__/f/FreeXL/FreeXL-1.0.1-intel-2015a.eb b/easybuild/easyconfigs/__archive__/f/FreeXL/FreeXL-1.0.1-intel-2015a.eb
deleted file mode 100644
index e2833c7203f..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FreeXL/FreeXL-1.0.1-intel-2015a.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-name = 'FreeXL'
-version = '1.0.1'
-
-easyblock = 'ConfigureMake'
-
-homepage = "https://www.gaia-gis.it/fossil/freexl/index"
-description = "FreeXL is an open source library to extract valid data from within an Excel (.xls) spreadsheet."
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'usempi': False, 'pic': True}
-
-source_urls = ['http://www.gaia-gis.it/gaia-sins/freexl-sources/']
-sources = [SOURCELOWER_TAR_GZ]
-
-builddependencies = [('CMake', '3.2.2')]
-
-sanity_check_paths = {
- 'files': ["lib/libfreexl.la"],
- 'dirs': ["lib"]
-}
-
-moduleclass = 'lib'
diff --git a/easybuild/easyconfigs/__archive__/f/FreeXL/FreeXL-1.0.2-foss-2015a.eb b/easybuild/easyconfigs/__archive__/f/FreeXL/FreeXL-1.0.2-foss-2015a.eb
deleted file mode 100644
index 40bff9f9103..00000000000
--- a/easybuild/easyconfigs/__archive__/f/FreeXL/FreeXL-1.0.2-foss-2015a.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-name = 'FreeXL'
-version = '1.0.2'
-
-easyblock = 'ConfigureMake'
-
-homepage = "https://www.gaia-gis.it/fossil/freexl/index"
-description = "FreeXL is an open source library to extract valid data from within an Excel (.xls) spreadsheet."
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-toolchainopts = {'usempi': False, 'pic': True}
-
-source_urls = ['http://www.gaia-gis.it/gaia-sins/freexl-sources/']
-sources = [SOURCELOWER_TAR_GZ]
-
-builddependencies = [('CMake', '3.4.1')]
-
-sanity_check_paths = {
- 'files': ["lib/libfreexl.la"],
- 'dirs': ["lib"]
-}
-
-moduleclass = 'lib'
diff --git a/easybuild/easyconfigs/__archive__/f/f90nml/f90nml-1.4.4-GCCcore-10.2.0.eb b/easybuild/easyconfigs/__archive__/f/f90nml/f90nml-1.4.4-GCCcore-10.2.0.eb
deleted file mode 100644
index 5aff63728f9..00000000000
--- a/easybuild/easyconfigs/__archive__/f/f90nml/f90nml-1.4.4-GCCcore-10.2.0.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-easyblock = 'PythonPackage'
-
-name = 'f90nml'
-version = '1.4.4'
-
-homepage = 'https://github.com/marshallward/f90nml'
-description = """A Python module and command line tool for parsing
- Fortran namelist files"""
-
-toolchain = {'name': 'GCCcore', 'version': '10.2.0'}
-
-sources = [SOURCE_TAR_GZ]
-checksums = ['65e8e135779895245238cbf6be5b1b80d6c2b8c9350c9cdce6183a31bdfd7622']
-
-builddependencies = [
- ('binutils', '2.35'),
-]
-dependencies = [
- ('Python', '3.8.6'),
- ('PyYAML', '5.3.1')
-]
-
-use_pip = True
-download_dep_fail = True
-sanity_pip_check = True
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/f/fastQValidator/fastQValidator-0.1.1a-20151214-goolf-1.7.20-aadc6f9.eb b/easybuild/easyconfigs/__archive__/f/fastQValidator/fastQValidator-0.1.1a-20151214-goolf-1.7.20-aadc6f9.eb
deleted file mode 100644
index fa8db6dbc22..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fastQValidator/fastQValidator-0.1.1a-20151214-goolf-1.7.20-aadc6f9.eb
+++ /dev/null
@@ -1,56 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-easyblock = 'MakeCp'
-
-name = 'fastQValidator'
-version = '0.1.1a-20151214'
-fastqvalidator_git_commit = 'aadc6f9'
-libstatgen_git_commit = '8246906'
-versionsuffix = '-%s' % fastqvalidator_git_commit
-
-homepage = 'http://genome.sph.umich.edu/wiki/FastQValidator'
-description = """Validate FastQ Files"""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-# we download latest source available in github for fastQValidator and libStatGen (dependency)
-# using latest release tags doesn't work
-# https://github.com/statgen/fastQValidator/issues/9
-source_urls = [
- 'https://github.com/statgen/fastQValidator/archive/',
- 'https://github.com/statgen/libStatGen/archive/'
-]
-
-sources = [
- '%s.tar.gz' % fastqvalidator_git_commit,
- '%s.tar.gz' % libstatgen_git_commit
-]
-
-dependencies = [
- ('zlib', '1.2.8'),
- # OS dependency should be preferred if the os version is more recent then this version,
- # it's nice to have an up to date openssl for security reasons
- # ('OpenSSL', '1.0.1q'),
-]
-
-# openssl required by libStatgen
-osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
-
-prebuildopts = 'CFLAGS="$CFLAGS -L${EBROOTZLIB}/lib" && '
-prebuildopts += 'mv %(builddir)s/libStatGen-* %(builddir)s/libStatGen && '
-
-buildopts = ' LIB_PATH_GENERAL=../libStatGen '
-
-files_to_copy = [(['bin/fastQValidator'], 'bin')]
-
-parallel = 1
-
-sanity_check_paths = {
- 'files': ['bin/fastQValidator'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/fastahack/fastahack-20110215-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/fastahack/fastahack-20110215-goolf-1.4.10.eb
deleted file mode 100644
index ff46f9ce33b..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fastahack/fastahack-20110215-goolf-1.4.10.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'MakeCp'
-
-name = 'fastahack'
-version = '20110215'
-
-homepage = 'https://github.com/ekg/fastahack'
-description = """Utilities for indexing and sequence extraction from FASTA files"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-# no versioned source tarballs available, download from https://github.com/ekg/fastahack/archive/master.tar.gz
-sources = [SOURCE_TAR_GZ]
-
-patches = ['fastahack-%(version)s_Makefile-fix.patch']
-
-buildopts = 'CXX="$CXX" CXXFLAGS="$CXXFLAGS"'
-
-files_to_copy = [(['fastahack'], 'bin')]
-
-sanity_check_paths = {
- 'files': ['bin/fastahack'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/f/findutils/findutils-4.2.33-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/findutils/findutils-4.2.33-goolf-1.4.10.eb
deleted file mode 100644
index 56642aa7aba..00000000000
--- a/easybuild/easyconfigs/__archive__/f/findutils/findutils-4.2.33-goolf-1.4.10.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'findutils'
-version = '4.2.33'
-
-homepage = 'http://www.gnu.org/software/findutils/findutils.html'
-description = "findutils: The GNU find, locate, updatedb, and xargs utilities"
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sanity_check_paths = {
- 'files': ['bin/find', 'bin/locate', 'bin/updatedb', 'bin/xargs'],
- 'dirs': []
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/f/findutils/findutils-4.2.33-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/f/findutils/findutils-4.2.33-ictce-5.3.0.eb
deleted file mode 100644
index 34097eba865..00000000000
--- a/easybuild/easyconfigs/__archive__/f/findutils/findutils-4.2.33-ictce-5.3.0.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'findutils'
-version = '4.2.33'
-
-homepage = 'http://www.gnu.org/software/findutils/findutils.html'
-description = "findutils: The GNU find, locate, updatedb, and xargs utilities"
-
-source_urls = [GNU_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sanity_check_paths = {
- 'files': ['bin/find', 'bin/locate', 'bin/updatedb', 'bin/xargs'],
- 'dirs': []
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/f/fixesproto/fixesproto-5.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/fixesproto/fixesproto-5.0-goolf-1.4.10.eb
deleted file mode 100644
index 574d6d02de6..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fixesproto/fixesproto-5.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'fixesproto'
-version = '5.0'
-
-homepage = "http://www.freedesktop.org/wiki/Software/xlibs"
-description = """X.org FixesProto protocol headers."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = [SOURCE_TAR_GZ]
-source_urls = [XORG_PROTO_SOURCE]
-
-sanity_check_paths = {
- 'files': ['include/X11/extensions/xfixesproto.h', 'include/X11/extensions/xfixeswire.h'],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/fixesproto/fixesproto-5.0-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/f/fixesproto/fixesproto-5.0-ictce-5.3.0.eb
deleted file mode 100644
index 4df2be2be9a..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fixesproto/fixesproto-5.0-ictce-5.3.0.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'fixesproto'
-version = '5.0'
-
-homepage = "http://www.freedesktop.org/wiki/Software/xlibs"
-description = """X.org FixesProto protocol headers."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sources = [SOURCE_TAR_GZ]
-source_urls = [XORG_PROTO_SOURCE]
-
-sanity_check_paths = {
- 'files': ['include/X11/extensions/xfixesproto.h', 'include/X11/extensions/xfixeswire.h'],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/fixesproto/fixesproto-5.0-intel-2015a.eb b/easybuild/easyconfigs/__archive__/f/fixesproto/fixesproto-5.0-intel-2015a.eb
deleted file mode 100644
index 8b11789fcaf..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fixesproto/fixesproto-5.0-intel-2015a.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'fixesproto'
-version = '5.0'
-
-homepage = "http://www.freedesktop.org/wiki/Software/xlibs"
-description = """X.org FixesProto protocol headers."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-sources = [SOURCE_TAR_GZ]
-source_urls = [XORG_PROTO_SOURCE]
-
-sanity_check_paths = {
- 'files': ['include/X11/extensions/xfixesproto.h', 'include/X11/extensions/xfixeswire.h'],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/fixesproto/fixesproto-5.0-intel-2015b.eb b/easybuild/easyconfigs/__archive__/f/fixesproto/fixesproto-5.0-intel-2015b.eb
deleted file mode 100644
index fd373c373ac..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fixesproto/fixesproto-5.0-intel-2015b.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'fixesproto'
-version = '5.0'
-
-homepage = "http://www.freedesktop.org/wiki/Software/xlibs"
-description = """X.org FixesProto protocol headers."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-sources = [SOURCE_TAR_GZ]
-source_urls = [XORG_PROTO_SOURCE]
-
-sanity_check_paths = {
- 'files': ['include/X11/extensions/xfixesproto.h', 'include/X11/extensions/xfixeswire.h'],
- 'dirs': ['lib/pkgconfig'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.35-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.35-goolf-1.4.10.eb
deleted file mode 100644
index ecd44437fe4..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.35-goolf-1.4.10.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'flex'
-version = '2.5.35'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
-sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.35-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.35-ictce-5.3.0.eb
deleted file mode 100644
index e3ea27dcf27..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.35-ictce-5.3.0.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'flex'
-version = '2.5.35'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.35-ictce-5.4.0.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.35-ictce-5.4.0.eb
deleted file mode 100644
index 653b53ec920..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.35-ictce-5.4.0.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'flex'
-version = '2.5.35'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'ictce', 'version': '5.4.0'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.35-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.35-ictce-5.5.0.eb
deleted file mode 100644
index 4cd202259c3..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.35-ictce-5.5.0.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'flex'
-version = '2.5.35'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-goolf-1.4.10.eb
deleted file mode 100644
index ba3095d0fdc..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-goolf-1.4.10.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'flex'
-version = '2.5.37'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
-sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-goolf-1.5.14.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-goolf-1.5.14.eb
deleted file mode 100644
index 852837bf5be..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-goolf-1.5.14.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'flex'
-version = '2.5.37'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
-sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'goolf', 'version': '1.5.14'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-ictce-5.3.0.eb
deleted file mode 100644
index b90cbad63f9..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-ictce-5.3.0.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'flex'
-version = '2.5.37'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-ictce-5.4.0.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-ictce-5.4.0.eb
deleted file mode 100644
index bf5ece9d3c3..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-ictce-5.4.0.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'flex'
-version = '2.5.37'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'ictce', 'version': '5.4.0'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-ictce-5.5.0.eb
deleted file mode 100644
index add73d92863..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-ictce-5.5.0.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'flex'
-version = '2.5.37'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-ictce-6.1.5.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-ictce-6.1.5.eb
deleted file mode 100644
index 15e30d50fbf..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-ictce-6.1.5.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'flex'
-version = '2.5.37'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'ictce', 'version': '6.1.5'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-ictce-7.1.2.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-ictce-7.1.2.eb
deleted file mode 100644
index 49b33f6544d..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-ictce-7.1.2.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'flex'
-version = '2.5.37'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'ictce', 'version': '7.1.2'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-intel-2014b.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-intel-2014b.eb
deleted file mode 100644
index 70f81245b83..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-intel-2014b.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'flex'
-version = '2.5.37'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-intel-2015a.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-intel-2015a.eb
deleted file mode 100644
index 086db50be89..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.37-intel-2015a.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'flex'
-version = '2.5.37'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.38-ictce-6.1.5.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.38-ictce-6.1.5.eb
deleted file mode 100644
index 82f9831d98e..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.38-ictce-6.1.5.eb
+++ /dev/null
@@ -1,14 +0,0 @@
-name = 'flex'
-version = '2.5.38'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'ictce', 'version': '6.1.5'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-CrayGNU-2015.06.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-CrayGNU-2015.06.eb
deleted file mode 100644
index 0542fac499f..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-CrayGNU-2015.06.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'flex'
-version = '2.5.39'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'CrayGNU', 'version': '2015.06'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-checksums = [
- 'e133e9ead8ec0a58d81166b461244fde', # flex-2.5.39.tar.gz
-]
-
-dependencies = [('M4', '1.4.17')]
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-CrayGNU-2015.11.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-CrayGNU-2015.11.eb
deleted file mode 100644
index ce034a2f5d4..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-CrayGNU-2015.11.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'flex'
-version = '2.5.39'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'CrayGNU', 'version': '2015.11'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-checksums = [
- 'e133e9ead8ec0a58d81166b461244fde', # flex-2.5.39.tar.gz
-]
-
-dependencies = [('M4', '1.4.17')]
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-foss-2014b.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-foss-2014b.eb
deleted file mode 100644
index 72f37c4db66..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-foss-2014b.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'flex'
-version = '2.5.39'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'foss', 'version': '2014b'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-checksums = [
- 'e133e9ead8ec0a58d81166b461244fde', # flex-2.5.39.tar.gz
-]
-
-dependencies = [('M4', '1.4.17')]
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-foss-2015.05.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-foss-2015.05.eb
deleted file mode 100644
index 1ad0409c77d..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-foss-2015.05.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'flex'
-version = '2.5.39'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'foss', 'version': '2015.05'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-checksums = [
- 'e133e9ead8ec0a58d81166b461244fde', # flex-2.5.39.tar.gz
-]
-
-dependencies = [('M4', '1.4.17')]
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-foss-2015a.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-foss-2015a.eb
deleted file mode 100644
index 11968e16401..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-foss-2015a.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'flex'
-version = '2.5.39'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-checksums = [
- 'e133e9ead8ec0a58d81166b461244fde', # flex-2.5.39.tar.gz
-]
-
-dependencies = [('M4', '1.4.17')]
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-foss-2015b.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-foss-2015b.eb
deleted file mode 100644
index 3f2d3b24f60..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-foss-2015b.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'flex'
-version = '2.5.39'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-checksums = [
- 'e133e9ead8ec0a58d81166b461244fde', # flex-2.5.39.tar.gz
-]
-
-dependencies = [('M4', '1.4.17', '', ('GNU', '4.9.3-2.25'))]
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-ictce-7.1.2.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-ictce-7.1.2.eb
deleted file mode 100644
index 0f6d234b9e7..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-ictce-7.1.2.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'flex'
-version = '2.5.39'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'ictce', 'version': '7.1.2'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-checksums = [
- 'e133e9ead8ec0a58d81166b461244fde', # flex-2.5.39.tar.gz
-]
-
-dependencies = [('M4', '1.4.17')]
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-intel-2014b.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-intel-2014b.eb
deleted file mode 100644
index 37e678754d0..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-intel-2014b.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'flex'
-version = '2.5.39'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-checksums = [
- 'e133e9ead8ec0a58d81166b461244fde', # flex-2.5.39.tar.gz
-]
-
-dependencies = [('M4', '1.4.17')]
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-intel-2015a.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-intel-2015a.eb
deleted file mode 100644
index 7f2ee18cbd5..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-intel-2015a.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'flex'
-version = '2.5.39'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-checksums = [
- 'e133e9ead8ec0a58d81166b461244fde', # flex-2.5.39.tar.gz
-]
-
-dependencies = [('M4', '1.4.17')]
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-intel-2015b.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-intel-2015b.eb
deleted file mode 100644
index cc528417f16..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.5.39-intel-2015b.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-name = 'flex'
-version = '2.5.39'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-checksums = [
- 'e133e9ead8ec0a58d81166b461244fde', # flex-2.5.39.tar.gz
-]
-
-dependencies = [('M4', '1.4.17', '', ('GNU', '4.9.3-2.25'))]
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.6.0-foss-2015a.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.6.0-foss-2015a.eb
deleted file mode 100644
index 5c0eb6b59dd..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.6.0-foss-2015a.eb
+++ /dev/null
@@ -1,21 +0,0 @@
-name = 'flex'
-version = '2.6.0'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-checksums = [
- '5724bcffed4ebe39e9b55a9be80859ec', # flex-2.6.0.tar.gz
-]
-
-dependencies = [('M4', '1.4.17')]
-builddependencies = [('Bison', '3.0.4')]
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/flex/flex-2.6.0-intel-2015b.eb b/easybuild/easyconfigs/__archive__/f/flex/flex-2.6.0-intel-2015b.eb
deleted file mode 100644
index 098c6168e74..00000000000
--- a/easybuild/easyconfigs/__archive__/f/flex/flex-2.6.0-intel-2015b.eb
+++ /dev/null
@@ -1,21 +0,0 @@
-name = 'flex'
-version = '2.6.0'
-
-homepage = 'http://flex.sourceforge.net/'
-description = """Flex (Fast Lexical Analyzer) is a tool for generating scanners. A scanner,
- sometimes called a tokenizer, is a program which recognizes lexical patterns in text."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'pic': True}
-
-sources = [SOURCELOWER_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(namelower)s']
-
-checksums = [
- '5724bcffed4ebe39e9b55a9be80859ec', # flex-2.6.0.tar.gz
-]
-
-dependencies = [('M4', '1.4.17')]
-builddependencies = [('Bison', '3.0.4')]
-
-moduleclass = 'lang'
diff --git a/easybuild/easyconfigs/__archive__/f/fmri/fmri-1.4-8-ictce-5.3.0-R-2.15.2.eb b/easybuild/easyconfigs/__archive__/f/fmri/fmri-1.4-8-ictce-5.3.0-R-2.15.2.eb
deleted file mode 100644
index ebe8dc05d0e..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fmri/fmri-1.4-8-ictce-5.3.0-R-2.15.2.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'RPackage'
-
-name = 'fmri'
-version = '1.4-8'
-
-homepage = 'http://cran.r-project.org/web/packages/fmri'
-description = """The package contains R-functions to perform an fmri analysis as described in K. Tabelow,
- J. Polzehl, H.U. Voss, and V. Spokoiny, Analysing fMRI experiments with structure adaptive smoothing procedures,
- NeuroImage, 33:55-62 (2006) and J. Polzehl, H.U. Voss, K. Tabelow, Structural adaptive segmentation for statistical
- parametric mapping, NeuroImage, 52:515-523 (2010)."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['http://cran.r-project.org/src/contrib/']
-sources = ['%(name)s_%(version)s.tar.gz']
-
-r = 'R'
-rver = '2.15.2'
-versionsuffix = '-%s-%s' % (r, rver)
-
-tcltkver = '8.5.12'
-
-dependencies = [
- (r, rver),
- ('Tcl', tcltkver),
- ('Tk', tcltkver),
-]
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['fmri'],
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/f/fmri/fmri-1.5-0-ictce-5.3.0-R-2.15.3.eb b/easybuild/easyconfigs/__archive__/f/fmri/fmri-1.5-0-ictce-5.3.0-R-2.15.3.eb
deleted file mode 100644
index b6097690db0..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fmri/fmri-1.5-0-ictce-5.3.0-R-2.15.3.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-easyblock = 'RPackage'
-
-name = 'fmri'
-version = '1.5-0'
-
-homepage = 'http://cran.r-project.org/web/packages/fmri'
-description = """The package contains R-functions to perform an fmri analysis as described in K. Tabelow,
- J. Polzehl, H.U. Voss, and V. Spokoiny, Analysing fMRI experiments with structure adaptive smoothing procedures,
- NeuroImage, 33:55-62 (2006) and J. Polzehl, H.U. Voss, K. Tabelow, Structural adaptive segmentation for statistical
- parametric mapping, NeuroImage, 52:515-523 (2010)."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['http://cran.r-project.org/src/contrib/']
-sources = ['%(name)s_%(version)s.tar.gz']
-
-r = 'R'
-rver = '2.15.3'
-versionsuffix = '-%s-%s' % (r, rver)
-
-tcltkver = '8.5.15'
-
-dependencies = [
- (r, rver),
- ('Tcl', tcltkver),
- ('Tk', tcltkver),
-]
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['fmri'],
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.10.91-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.10.91-goolf-1.4.10.eb
deleted file mode 100644
index dd066a598ff..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.10.91-goolf-1.4.10.eb
+++ /dev/null
@@ -1,17 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = "fontconfig"
-version = '2.10.91'
-
-homepage = 'http://www.freedesktop.org/software/fontconfig'
-description = """Fontconfig is a library designed to provide system-wide font configuration, customization and
-application access."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://www.freedesktop.org/software/fontconfig/release/']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('expat', '2.1.0')]
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.1-foss-2014b.eb b/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.1-foss-2014b.eb
deleted file mode 100644
index c1ab6dd32ff..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.1-foss-2014b.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = "fontconfig"
-version = '2.11.1'
-
-homepage = 'http://www.freedesktop.org/software/fontconfig'
-description = """Fontconfig is a library designed to provide system-wide font configuration, customization and
-application access."""
-
-toolchain = {'name': 'foss', 'version': '2014b'}
-
-source_urls = ['http://www.freedesktop.org/software/fontconfig/release/']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [
- ('expat', '2.1.0'),
- ('freetype', '2.5.3'),
-]
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.1-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.1-goolf-1.7.20.eb
deleted file mode 100644
index 51c9c97afb6..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.1-goolf-1.7.20.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = "fontconfig"
-version = '2.11.1'
-
-homepage = 'http://www.freedesktop.org/software/fontconfig'
-description = """Fontconfig is a library designed to provide system-wide font configuration, customization and
-application access."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = ['http://www.freedesktop.org/software/fontconfig/release/']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [
- ('expat', '2.1.0'),
- ('freetype', '2.5.3'),
-]
-
-configopts = '--disable-docs '
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.1-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.1-ictce-5.5.0.eb
deleted file mode 100644
index bd134c69d53..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.1-ictce-5.5.0.eb
+++ /dev/null
@@ -1,17 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = "fontconfig"
-version = '2.11.1'
-
-homepage = 'http://www.freedesktop.org/software/fontconfig'
-description = """Fontconfig is a library designed to provide system-wide font configuration, customization and
-application access."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = ['http://www.freedesktop.org/software/fontconfig/release/']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('expat', '2.1.0')]
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.1-intel-2014b.eb b/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.1-intel-2014b.eb
deleted file mode 100644
index 0cbc9d12008..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.1-intel-2014b.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = "fontconfig"
-version = '2.11.1'
-
-homepage = 'http://www.freedesktop.org/software/fontconfig'
-description = """Fontconfig is a library designed to provide system-wide font configuration, customization and
-application access."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = ['http://www.freedesktop.org/software/fontconfig/release/']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [
- ('expat', '2.1.0'),
- ('freetype', '2.5.3'),
-]
-
-configopts = '--disable-docs '
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.1-intel-2015a.eb b/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.1-intel-2015a.eb
deleted file mode 100644
index 54455c5111b..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.1-intel-2015a.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = "fontconfig"
-version = '2.11.1'
-
-homepage = 'http://www.freedesktop.org/software/fontconfig'
-description = """Fontconfig is a library designed to provide system-wide font configuration, customization and
-application access."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://www.freedesktop.org/software/fontconfig/release/']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [
- ('expat', '2.1.0'),
- ('freetype', '2.5.5'),
-]
-
-configopts = '--disable-docs '
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.93-intel-2015a.eb b/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.93-intel-2015a.eb
deleted file mode 100644
index 77235f32a1a..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.93-intel-2015a.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = "fontconfig"
-version = '2.11.93'
-
-homepage = 'http://www.freedesktop.org/software/fontconfig'
-description = """Fontconfig is a library designed to provide system-wide font configuration, customization and
-application access."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://www.freedesktop.org/software/fontconfig/release/']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [
- ('expat', '2.1.0'),
- ('freetype', '2.5.5'),
-]
-
-configopts = '--disable-docs '
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.94-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.94-goolf-1.7.20.eb
deleted file mode 100644
index 6e68a31103a..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.94-goolf-1.7.20.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = "fontconfig"
-version = '2.11.94'
-
-homepage = 'http://www.freedesktop.org/software/fontconfig'
-description = """Fontconfig is a library designed to provide system-wide font configuration, customization and
-application access."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = ['http://www.freedesktop.org/software/fontconfig/release/']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [
- ('expat', '2.1.0'),
- ('freetype', '2.6'),
-]
-
-configopts = '--disable-docs '
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.94-intel-2015a.eb b/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.94-intel-2015a.eb
deleted file mode 100644
index df68da2489b..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.94-intel-2015a.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'fontconfig'
-version = '2.11.94'
-
-homepage = 'http://www.freedesktop.org/software/fontconfig'
-description = """Fontconfig is a library designed to provide system-wide font configuration, customization and
-application access."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://www.freedesktop.org/software/fontconfig/release/']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [
- ('expat', '2.1.0'),
- ('freetype', '2.6'),
-]
-
-configopts = '--disable-docs '
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.94-intel-2015b-libpng-1.6.19.eb b/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.94-intel-2015b-libpng-1.6.19.eb
deleted file mode 100644
index aea523adeeb..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.94-intel-2015b-libpng-1.6.19.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'fontconfig'
-version = '2.11.94'
-versionsuffix = '-libpng-1.6.19'
-
-homepage = 'http://www.freedesktop.org/software/fontconfig'
-description = """Fontconfig is a library designed to provide system-wide font configuration, customization and
-application access."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['http://www.freedesktop.org/software/fontconfig/release/']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [
- ('expat', '2.1.0'),
- ('freetype', '2.6.1', versionsuffix),
-]
-
-configopts = '--disable-docs '
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.94-intel-2015b.eb b/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.94-intel-2015b.eb
deleted file mode 100644
index c270297963c..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.11.94-intel-2015b.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'fontconfig'
-version = '2.11.94'
-
-homepage = 'http://www.freedesktop.org/software/fontconfig'
-description = """Fontconfig is a library designed to provide system-wide font configuration, customization and
-application access."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['http://www.freedesktop.org/software/fontconfig/release/']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [
- ('expat', '2.1.0'),
- ('freetype', '2.6.1'),
-]
-
-configopts = '--disable-docs '
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.12.1-foss-2015a.eb b/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.12.1-foss-2015a.eb
deleted file mode 100644
index 48b96c691c0..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fontconfig/fontconfig-2.12.1-foss-2015a.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'fontconfig'
-version = '2.12.1'
-
-homepage = 'http://www.freedesktop.org/software/fontconfig'
-description = """Fontconfig is a library designed to provide system-wide font configuration, customization and
-application access."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = ['http://www.freedesktop.org/software/fontconfig/release/']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [
- ('expat', '2.1.0'),
- ('freetype', '2.6.2'),
-]
-
-builddependencies = [
- ('pkg-config', '0.29.1'),
-]
-
-configopts = '--disable-docs '
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/fontsproto/fontsproto-2.1.3-intel-2015a.eb b/easybuild/easyconfigs/__archive__/f/fontsproto/fontsproto-2.1.3-intel-2015a.eb
deleted file mode 100644
index 47f2d3c961f..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fontsproto/fontsproto-2.1.3-intel-2015a.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'fontsproto'
-version = '2.1.3'
-
-homepage = "http://www.freedesktop.org/wiki/Software/xlibs"
-description = "X11 font extension wire protocol"
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'optarch': True}
-
-sources = [SOURCE_TAR_GZ]
-source_urls = [XORG_PROTO_SOURCE]
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['include/X11/fonts'],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/f/fontsproto/fontsproto-2.1.3-intel-2015b.eb b/easybuild/easyconfigs/__archive__/f/fontsproto/fontsproto-2.1.3-intel-2015b.eb
deleted file mode 100644
index 062cfdbcf85..00000000000
--- a/easybuild/easyconfigs/__archive__/f/fontsproto/fontsproto-2.1.3-intel-2015b.eb
+++ /dev/null
@@ -1,20 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'fontsproto'
-version = '2.1.3'
-
-homepage = "http://www.freedesktop.org/wiki/Software/xlibs"
-description = "X11 font extension wire protocol"
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-toolchainopts = {'optarch': True}
-
-sources = [SOURCE_TAR_GZ]
-source_urls = [XORG_PROTO_SOURCE]
-
-sanity_check_paths = {
- 'files': [],
- 'dirs': ['include/X11/fonts'],
-}
-
-moduleclass = 'devel'
diff --git a/easybuild/easyconfigs/__archive__/f/foss/foss-2014b.eb b/easybuild/easyconfigs/__archive__/f/foss/foss-2014b.eb
deleted file mode 100644
index 82a7ece124c..00000000000
--- a/easybuild/easyconfigs/__archive__/f/foss/foss-2014b.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-easyblock = "Toolchain"
-
-name = 'foss'
-version = '2014b'
-
-homepage = 'https://easybuild.readthedocs.io/en/master/Common-toolchains.html#foss-toolchain'
-description = """GNU Compiler Collection (GCC) based compiler toolchain, including
- OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK."""
-
-toolchain = SYSTEM
-
-comp_name = 'GCC'
-comp_version = '4.8.3'
-comp = (comp_name, comp_version)
-
-blaslib = 'OpenBLAS'
-blasver = '0.2.9'
-blas = '%s-%s' % (blaslib, blasver)
-blassuff = '-LAPACK-3.5.0'
-
-# toolchain used to build goolf dependencies
-comp_mpi_tc_name = 'gompi'
-comp_mpi_tc_ver = "%s" % version
-comp_mpi_tc = (comp_mpi_tc_name, comp_mpi_tc_ver)
-
-# compiler toolchain depencies
-# we need GCC and OpenMPI as explicit dependencies instead of gompi toolchain
-# because of toolchain preperation functions
-dependencies = [
- ('GCC', '4.8.3'),
- ('OpenMPI', '1.8.1', '', comp),
- (blaslib, blasver, blassuff, comp),
- ('FFTW', '3.3.4', '', comp_mpi_tc),
- ('ScaLAPACK', '2.0.2', '-%s%s' % (blas, blassuff), comp_mpi_tc),
-]
-
-moduleclass = 'toolchain'
diff --git a/easybuild/easyconfigs/__archive__/f/foss/foss-2015.05.eb b/easybuild/easyconfigs/__archive__/f/foss/foss-2015.05.eb
deleted file mode 100644
index 471b1446812..00000000000
--- a/easybuild/easyconfigs/__archive__/f/foss/foss-2015.05.eb
+++ /dev/null
@@ -1,39 +0,0 @@
-easyblock = "Toolchain"
-
-name = 'foss'
-version = '2015.05'
-
-homepage = 'https://easybuild.readthedocs.io/en/master/Common-toolchains.html#foss-toolchain'
-description = """GNU Compiler Collection (GCC) based compiler toolchain, including
- OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK."""
-
-toolchain = SYSTEM
-
-gccver = '4.9.2'
-binutilsver = '2.25'
-tcver = '%s-binutils-%s' % (gccver, binutilsver)
-
-blaslib = 'OpenBLAS'
-blasver = '0.2.14'
-blas = '%s-%s' % (blaslib, blasver)
-blassuff = '-LAPACK-3.5.0'
-
-# toolchain used to build foss dependencies
-comp_mpi_tc_name = 'gompi'
-comp_mpi_tc_ver = "%s" % version
-comp_mpi_tc = (comp_mpi_tc_name, comp_mpi_tc_ver)
-
-# compiler toolchain depencies
-# we need GCC and OpenMPI as explicit dependencies instead of gompi toolchain
-# because of toolchain preperation functions
-# For binutils, stick to http://wiki.osdev.org/Cross-Compiler_Successful_Builds
-dependencies = [
- ('GCC', gccver, '-binutils-%s' % binutilsver),
- ('binutils', binutilsver, '', ('GCC', tcver)),
- ('OpenMPI', '1.8.5', '', ('GNU', '%s-%s' % (gccver, binutilsver))),
- (blaslib, blasver, blassuff, ('GNU', '%s-%s' % (gccver, binutilsver))),
- ('FFTW', '3.3.4', '', comp_mpi_tc),
- ('ScaLAPACK', '2.0.2', '-%s%s' % (blas, blassuff), comp_mpi_tc),
-]
-
-moduleclass = 'toolchain'
diff --git a/easybuild/easyconfigs/__archive__/f/foss/foss-2015a.eb b/easybuild/easyconfigs/__archive__/f/foss/foss-2015a.eb
deleted file mode 100644
index 5527a0e07c9..00000000000
--- a/easybuild/easyconfigs/__archive__/f/foss/foss-2015a.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-easyblock = "Toolchain"
-
-name = 'foss'
-version = '2015a'
-
-homepage = 'https://easybuild.readthedocs.io/en/master/Common-toolchains.html#foss-toolchain'
-description = """GNU Compiler Collection (GCC) based compiler toolchain, including
- OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK."""
-
-toolchain = SYSTEM
-
-comp_name = 'GCC'
-comp_version = '4.9.2'
-comp = (comp_name, comp_version)
-
-blaslib = 'OpenBLAS'
-blasver = '0.2.13'
-blas = '%s-%s' % (blaslib, blasver)
-blassuff = '-LAPACK-3.5.0'
-
-# toolchain used to build goolf dependencies
-comp_mpi_tc_name = 'gompi'
-comp_mpi_tc_ver = "%s" % version
-comp_mpi_tc = (comp_mpi_tc_name, comp_mpi_tc_ver)
-
-# compiler toolchain depencies
-# we need GCC and OpenMPI as explicit dependencies instead of gompi toolchain
-# because of toolchain preperation functions
-dependencies = [
- comp,
- ('OpenMPI', '1.8.4', '', comp),
- (blaslib, blasver, blassuff, comp),
- ('FFTW', '3.3.4', '', comp_mpi_tc),
- ('ScaLAPACK', '2.0.2', '-%s%s' % (blas, blassuff), comp_mpi_tc),
-]
-
-moduleclass = 'toolchain'
diff --git a/easybuild/easyconfigs/__archive__/f/foss/foss-2015b.eb b/easybuild/easyconfigs/__archive__/f/foss/foss-2015b.eb
deleted file mode 100644
index d28d199a5c9..00000000000
--- a/easybuild/easyconfigs/__archive__/f/foss/foss-2015b.eb
+++ /dev/null
@@ -1,39 +0,0 @@
-easyblock = "Toolchain"
-
-name = 'foss'
-version = '2015b'
-
-homepage = 'https://easybuild.readthedocs.io/en/master/Common-toolchains.html#foss-toolchain'
-description = """GNU Compiler Collection (GCC) based compiler toolchain, including
- OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK."""
-
-toolchain = SYSTEM
-
-gccver = '4.9.3'
-binutilsver = '2.25'
-tcver = '%s-binutils-%s' % (gccver, binutilsver)
-
-blaslib = 'OpenBLAS'
-blasver = '0.2.14'
-blas = '%s-%s' % (blaslib, blasver)
-blassuff = '-LAPACK-3.5.0'
-
-# toolchain used to build foss dependencies
-comp_mpi_tc_name = 'gompi'
-comp_mpi_tc_ver = "%s" % version
-comp_mpi_tc = (comp_mpi_tc_name, comp_mpi_tc_ver)
-
-# compiler toolchain depencies
-# we need GCC and OpenMPI as explicit dependencies instead of gompi toolchain
-# because of toolchain preperation functions
-# For binutils, stick to http://wiki.osdev.org/Cross-Compiler_Successful_Builds
-dependencies = [
- ('GCC', gccver, '-binutils-%s' % binutilsver),
- ('binutils', binutilsver, '', ('GCC', tcver)),
- ('OpenMPI', '1.8.8', '', ('GNU', '%s-%s' % (gccver, binutilsver))),
- (blaslib, blasver, blassuff, ('GNU', '%s-%s' % (gccver, binutilsver))),
- ('FFTW', '3.3.4', '', comp_mpi_tc),
- ('ScaLAPACK', '2.0.2', '-%s%s' % (blas, blassuff), comp_mpi_tc),
-]
-
-moduleclass = 'toolchain'
diff --git a/easybuild/easyconfigs/__archive__/f/frealign/frealign-9.09-intel-2015a-avx-mp.eb b/easybuild/easyconfigs/__archive__/f/frealign/frealign-9.09-intel-2015a-avx-mp.eb
deleted file mode 100644
index a6b21fbfffc..00000000000
--- a/easybuild/easyconfigs/__archive__/f/frealign/frealign-9.09-intel-2015a-avx-mp.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'MakeCp'
-
-name = 'frealign'
-version = '9.09'
-versionsuffix = '-avx-mp'
-
-homepage = 'http://grigoriefflab.janelia.org/frealign'
-description = """Frealign is a program for high-resolution refinement of 3D reconstructions from cryo-EM images of
- single particles."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://grigoriefflab.janelia.org/sites/default/files/']
-sources = ['frealign_v%(version)s_150422.tar.gz']
-
-start_dir = 'src'
-
-parallel = 1
-
-# clean all included binaries first
-prebuildopts = "rm ../bin/* && "
-buildopts = "-f Makefile_linux_avx_intel_mp_static"
-
-files_to_copy = ['bin']
-
-sanity_check_paths = {
- 'files': ['bin/resample_mp.exe', 'bin/merge_3d_mp.exe', 'bin/frealign_v%(version_major)s_mp.exe'],
- 'dirs': [],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freeglut/freeglut-2.8.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/freeglut/freeglut-2.8.1-goolf-1.4.10.eb
deleted file mode 100644
index c1785a1f92e..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freeglut/freeglut-2.8.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,21 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'freeglut'
-version = '2.8.1'
-
-homepage = 'http://freeglut.sourceforge.net/'
-description = "freeglut is a completely OpenSourced alternative to the OpenGL Utility Toolkit (GLUT) library."
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = [SOURCE_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(name)s']
-
-dependencies = [('libXi', '1.7.2')]
-
-sanity_check_paths = {
- 'files': ['lib/libglut.a', 'lib/libglut.%s' % SHLIB_EXT],
- 'dirs': ['include/GL'],
-}
-
-moduleclass = 'lib'
diff --git a/easybuild/easyconfigs/__archive__/f/freeglut/freeglut-2.8.1-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/f/freeglut/freeglut-2.8.1-ictce-5.3.0.eb
deleted file mode 100644
index bed452773a5..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freeglut/freeglut-2.8.1-ictce-5.3.0.eb
+++ /dev/null
@@ -1,21 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'freeglut'
-version = '2.8.1'
-
-homepage = 'http://freeglut.sourceforge.net/'
-description = "freeglut is a completely OpenSourced alternative to the OpenGL Utility Toolkit (GLUT) library."
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-sources = [SOURCE_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(name)s']
-
-dependencies = [('libXi', '1.7.2')]
-
-sanity_check_paths = {
- 'files': ['lib/libglut.a', 'lib/libglut.%s' % SHLIB_EXT],
- 'dirs': ['include/GL'],
-}
-
-moduleclass = 'lib'
diff --git a/easybuild/easyconfigs/__archive__/f/freeglut/freeglut-2.8.1-intel-2015a.eb b/easybuild/easyconfigs/__archive__/f/freeglut/freeglut-2.8.1-intel-2015a.eb
deleted file mode 100644
index 6625f21f90e..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freeglut/freeglut-2.8.1-intel-2015a.eb
+++ /dev/null
@@ -1,21 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'freeglut'
-version = '2.8.1'
-
-homepage = 'http://freeglut.sourceforge.net/'
-description = "freeglut is a completely OpenSourced alternative to the OpenGL Utility Toolkit (GLUT) library."
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-sources = [SOURCE_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(name)s']
-
-dependencies = [('libXi', '1.7.4')]
-
-sanity_check_paths = {
- 'files': ['lib/libglut.a', 'lib/libglut.%s' % SHLIB_EXT],
- 'dirs': ['include/GL'],
-}
-
-moduleclass = 'lib'
diff --git a/easybuild/easyconfigs/__archive__/f/freeglut/freeglut-2.8.1-intel-2015b.eb b/easybuild/easyconfigs/__archive__/f/freeglut/freeglut-2.8.1-intel-2015b.eb
deleted file mode 100644
index 1b9b08eda76..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freeglut/freeglut-2.8.1-intel-2015b.eb
+++ /dev/null
@@ -1,21 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'freeglut'
-version = '2.8.1'
-
-homepage = 'http://freeglut.sourceforge.net/'
-description = "freeglut is a completely OpenSourced alternative to the OpenGL Utility Toolkit (GLUT) library."
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-sources = [SOURCE_TAR_GZ]
-source_urls = ['http://prdownloads.sourceforge.net/%(name)s']
-
-dependencies = [('libXi', '1.7.4')]
-
-sanity_check_paths = {
- 'files': ['lib/libglut.a', 'lib/libglut.%s' % SHLIB_EXT],
- 'dirs': ['include/GL'],
-}
-
-moduleclass = 'lib'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.4.10-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.4.10-goolf-1.4.10.eb
deleted file mode 100644
index e8bc65d782f..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.4.10-goolf-1.4.10.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-name = 'freetype'
-version = '2.4.10'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
-portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
-servers, font conversion tools, text image generation tools, and many other products as well.
-"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.4.10-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.4.10-ictce-5.3.0.eb
deleted file mode 100644
index 7e75acce833..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.4.10-ictce-5.3.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-name = 'freetype'
-version = '2.4.10'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.4.11-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.4.11-goolf-1.4.10.eb
deleted file mode 100644
index dedbe863ab7..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.4.11-goolf-1.4.10.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-name = 'freetype'
-version = '2.4.11'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
-portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
-servers, font conversion tools, text image generation tools, and many other products as well.
-"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.4.11-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.4.11-ictce-5.3.0.eb
deleted file mode 100644
index 10444c4ad79..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.4.11-ictce-5.3.0.eb
+++ /dev/null
@@ -1,22 +0,0 @@
-name = 'freetype'
-version = '2.4.11'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['http://download.savannah.gnu.org/releases/freetype/']
-sources = [SOURCE_TAR_GZ]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.0.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.0.1-goolf-1.4.10.eb
deleted file mode 100644
index b0e7a6a30e1..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.0.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-name = 'freetype'
-version = '2.5.0.1'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://download.savannah.gnu.org/releases/freetype/']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('libpng', '1.6.6')]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.0.1-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.0.1-ictce-5.3.0.eb
deleted file mode 100644
index d1983d85296..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.0.1-ictce-5.3.0.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-name = 'freetype'
-version = '2.5.0.1'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['http://download.savannah.gnu.org/releases/freetype/']
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('libpng', '1.6.6')]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.0.1-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.0.1-ictce-5.5.0.eb
deleted file mode 100644
index 415101e28dc..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.0.1-ictce-5.5.0.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-name = 'freetype'
-version = '2.5.0.1'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('libpng', '1.6.6')]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.2-ictce-5.5.0.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.2-ictce-5.5.0.eb
deleted file mode 100644
index 64e6ea7181c..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.2-ictce-5.5.0.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-name = 'freetype'
-version = '2.5.2'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('libpng', '1.6.9')]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.3-foss-2014b.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.3-foss-2014b.eb
deleted file mode 100644
index 0d671ee5bbe..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.3-foss-2014b.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-name = 'freetype'
-version = '2.5.3'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'foss', 'version': '2014b'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('libpng', '1.6.12')]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.3-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.3-goolf-1.7.20.eb
deleted file mode 100644
index f35d8dc0c15..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.3-goolf-1.7.20.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-name = 'freetype'
-version = '2.5.3'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('libpng', '1.6.12')]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.3-intel-2014b.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.3-intel-2014b.eb
deleted file mode 100644
index fb9b9599e8b..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.3-intel-2014b.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-name = 'freetype'
-version = '2.5.3'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('libpng', '1.6.12')]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.5-foss-2015a.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.5-foss-2015a.eb
deleted file mode 100644
index 13b13e9cc77..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.5-foss-2015a.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-name = 'freetype'
-version = '2.5.5'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('libpng', '1.6.16')]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.5-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.5-goolf-1.7.20.eb
deleted file mode 100644
index 415f10d8744..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.5-goolf-1.7.20.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-name = 'freetype'
-version = '2.5.5'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [
- ('libpng', '1.6.18'),
- ('zlib', '1.2.8')
-]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.5-intel-2015a.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.5-intel-2015a.eb
deleted file mode 100644
index 3b19e214126..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.5-intel-2015a.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-name = 'freetype'
-version = '2.5.5'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('libpng', '1.6.16')]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.5-intel-2015b.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.5-intel-2015b.eb
deleted file mode 100644
index 6d539701a6b..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.5.5-intel-2015b.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-name = 'freetype'
-version = '2.5.5'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('libpng', '1.6.16')]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6-foss-2015a.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6-foss-2015a.eb
deleted file mode 100644
index 352ce2f725e..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6-foss-2015a.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-name = 'freetype'
-version = '2.6'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('libpng', '1.6.17')]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6-goolf-1.7.20.eb
deleted file mode 100644
index 5930e1dad73..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6-goolf-1.7.20.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-name = 'freetype'
-version = '2.6'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('libpng', '1.6.17')]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6-intel-2015a.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6-intel-2015a.eb
deleted file mode 100644
index febe99790f1..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6-intel-2015a.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-name = 'freetype'
-version = '2.6'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('libpng', '1.6.17')]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.1-intel-2015b-libpng-1.6.19.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.1-intel-2015b-libpng-1.6.19.eb
deleted file mode 100644
index 4ed20bab251..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.1-intel-2015b-libpng-1.6.19.eb
+++ /dev/null
@@ -1,26 +0,0 @@
-name = 'freetype'
-version = '2.6.1'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-libpngver = '1.6.19'
-versionsuffix = '-libpng-%s' % libpngver
-dependencies = [('libpng', libpngver)]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.1-intel-2015b.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.1-intel-2015b.eb
deleted file mode 100644
index 2b433c81404..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.1-intel-2015b.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-name = 'freetype'
-version = '2.6.1'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('libpng', '1.6.18')]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.2-CrayGNU-2015.11.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.2-CrayGNU-2015.11.eb
deleted file mode 100644
index b8dc673ae85..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.2-CrayGNU-2015.11.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-name = 'freetype'
-version = '2.6.2'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'CrayGNU', 'version': '2015.11'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('libpng', '1.6.21')]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.2-foss-2015a.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.2-foss-2015a.eb
deleted file mode 100644
index 8d1ddddc16f..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.2-foss-2015a.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-name = 'freetype'
-version = '2.6.2'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('libpng', '1.6.20')]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.2-foss-2015b.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.2-foss-2015b.eb
deleted file mode 100644
index 446146f3b1b..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.2-foss-2015b.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-name = 'freetype'
-version = '2.6.2'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('libpng', '1.6.21')]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.2-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.2-goolf-1.7.20.eb
deleted file mode 100644
index e7a7a3593df..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.2-goolf-1.7.20.eb
+++ /dev/null
@@ -1,27 +0,0 @@
-name = 'freetype'
-version = '2.6.2'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [
- ('libpng', '1.6.21'),
- ('zlib', '1.2.8')
-]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.2-intel-2015b.eb b/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.2-intel-2015b.eb
deleted file mode 100644
index 896545c2ea1..00000000000
--- a/easybuild/easyconfigs/__archive__/f/freetype/freetype-2.6.2-intel-2015b.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-name = 'freetype'
-version = '2.6.2'
-
-homepage = 'http://freetype.org'
-description = """FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and
- portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display
- servers, font conversion tools, text image generation tools, and many other products as well."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = [GNU_SAVANNAH_SOURCE]
-sources = [SOURCE_TAR_GZ]
-
-dependencies = [('libpng', '1.6.21')]
-
-configopts = '--with-harfbuzz=no'
-
-sanity_check_paths = {
- 'files': ['bin/freetype-config', 'lib/libfreetype.a', 'lib/libfreetype.%s' % SHLIB_EXT,
- 'lib/pkgconfig/freetype2.pc'],
- 'dirs': ['include/freetype2'],
-}
-
-moduleclass = 'vis'
diff --git a/easybuild/easyconfigs/__archive__/g/GAMESS-US/GAMESS-US-20130501-R1-intel-2015a.eb b/easybuild/easyconfigs/__archive__/g/GAMESS-US/GAMESS-US-20130501-R1-intel-2015a.eb
deleted file mode 100644
index 9ef05a983e7..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GAMESS-US/GAMESS-US-20130501-R1-intel-2015a.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-name = 'GAMESS-US'
-version = '20130501-R1'
-
-homepage = 'http://www.msg.chem.iastate.edu/gamess/index.html'
-description = """ The General Atomic and Molecular Electronic Structure System (GAMESS)
- is a general ab initio quantum chemistry package. """
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'usempi': True}
-
-# manually download via http://www.msg.chem.iastate.edu/gamess/download.html (requires registration)
-# rename gamess-current.tar.gz by changing 'current' to the proper version
-sources = ['gamess-%(version)s.tar.gz']
-checksums = ['977a01a8958238c67b707f125999fcec']
-
-patches = ['GAMESS-US_rungms-slurm.patch']
-
-# increase these numbers if your system is bigger in terms of cores-per-node or number of nodes
-# it's OK if these values are larger than what your system provides
-maxcpus = '1000'
-maxnodes = '100000'
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/g/GAMESS-US/GAMESS-US-20141205-R1-intel-2015a.eb b/easybuild/easyconfigs/__archive__/g/GAMESS-US/GAMESS-US-20141205-R1-intel-2015a.eb
deleted file mode 100644
index 00832c574cd..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GAMESS-US/GAMESS-US-20141205-R1-intel-2015a.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-name = 'GAMESS-US'
-version = '20141205-R1'
-
-homepage = 'http://www.msg.chem.iastate.edu/gamess/index.html'
-description = """ The General Atomic and Molecular Electronic Structure System (GAMESS)
- is a general ab initio quantum chemistry package. """
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-toolchainopts = {'usempi': True}
-
-# manually download via http://www.msg.chem.iastate.edu/gamess/download.html (requires registration)
-# rename gamess-current.tar.gz by changing 'current' to the proper version
-sources = ['gamess-%(version)s.tar.gz']
-checksums = ['6403592eaa885cb3691505964d684516']
-
-patches = ['GAMESS-US_rungms-slurm.patch']
-
-# increase these numbers if your system is bigger in terms of cores-per-node or number of nodes
-# it's OK if these values are larger than what your system provides
-maxcpus = '1000'
-maxnodes = '100000'
-
-moduleclass = 'chem'
diff --git a/easybuild/easyconfigs/__archive__/g/GATE/GATE-6.2-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/g/GATE/GATE-6.2-goolf-1.4.10.eb
deleted file mode 100644
index 57cba680960..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GATE/GATE-6.2-goolf-1.4.10.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-name = 'GATE'
-version = '6.2'
-
-homepage = 'http://www.opengatecollaboration.org/'
-description = """GATE is an advanced opensource software developed by the international OpenGATE collaboration and
- dedicated to the numerical simulations in medical imaging. It currently supports simulations of Emission Tomography
- (Positron Emission Tomography - PET and Single Photon Emission Computed Tomography - SPECT), and Computed Tomography"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://www.opengatecollaboration.org/sites/default/files/']
-sources = ['%(namelower)s_v%(version)s.tar.gz']
-patches = [
- 'GATE-%(version)s_Makefile-prefix.patch',
- 'GATE-%(version)s_GCC-4.7.patch',
-]
-checksums = [
- 'd1f75b7a8358e6acb8c61ab13f25a3df49fc46f16f55f494f2eaca2fc141e08d', # gate_v6.2.tar.gz
- '53715a84fbfae778c01cb04352f2353589f64b723d412d8a9d7e5bc1bc28205c', # GATE-6.2_Makefile-prefix.patch
- '5607ea4f13e4778b233bceb3dd65eff48b53dfc2c32012d8e9d86a9e9077aa1b', # GATE-6.2_GCC-4.7.patch
-]
-
-dependencies = [
- ('Geant4', '9.5.p01'),
- ('CLHEP', '2.1.1.0'),
- ('ROOT', 'v5.34.01'),
-]
-builddependencies = [('CMake', '2.8.4')]
-
-moduleclass = 'cae'
diff --git a/easybuild/easyconfigs/__archive__/g/GATE/GATE-6.2-intel-2015a.eb b/easybuild/easyconfigs/__archive__/g/GATE/GATE-6.2-intel-2015a.eb
deleted file mode 100644
index 78682d75917..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GATE/GATE-6.2-intel-2015a.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-name = 'GATE'
-version = '6.2'
-
-homepage = 'http://www.opengatecollaboration.org/'
-description = """GATE is an advanced opensource software developed by the international OpenGATE collaboration and
- dedicated to the numerical simulations in medical imaging. It currently supports simulations of Emission Tomography
- (Positron Emission Tomography - PET and Single Photon Emission Computed Tomography - SPECT), and Computed Tomography"""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://www.opengatecollaboration.org/sites/default/files/']
-sources = ['%(namelower)s_v%(version)s.tar.gz']
-patches = [
- 'GATE-%(version)s_Makefile-prefix.patch',
- 'GATE-%(version)s_GCC-4.7.patch',
-]
-checksums = [
- 'd1f75b7a8358e6acb8c61ab13f25a3df49fc46f16f55f494f2eaca2fc141e08d', # gate_v6.2.tar.gz
- '53715a84fbfae778c01cb04352f2353589f64b723d412d8a9d7e5bc1bc28205c', # GATE-6.2_Makefile-prefix.patch
- '5607ea4f13e4778b233bceb3dd65eff48b53dfc2c32012d8e9d86a9e9077aa1b', # GATE-6.2_GCC-4.7.patch
-]
-
-dependencies = [
- ('Geant4', '9.5.p01'),
- ('CLHEP', '2.1.1.0'),
- ('ROOT', 'v5.34.01'),
-]
-builddependencies = [('CMake', '2.8.4')]
-
-moduleclass = 'cae'
diff --git a/easybuild/easyconfigs/__archive__/g/GATE/GATE-7.0-intel-2015a.eb b/easybuild/easyconfigs/__archive__/g/GATE/GATE-7.0-intel-2015a.eb
deleted file mode 100644
index 8e3e0c5acf3..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GATE/GATE-7.0-intel-2015a.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-name = 'GATE'
-version = '7.0'
-
-homepage = 'http://www.opengatecollaboration.org/'
-description = """GATE is an advanced opensource software developed by the international OpenGATE collaboration and
- dedicated to the numerical simulations in medical imaging. It currently supports simulations of Emission Tomography
- (Positron Emission Tomography - PET and Single Photon Emission Computed Tomography - SPECT), and Computed Tomography"""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://www.opengatecollaboration.org/sites/default/files/']
-sources = ['%(namelower)s_v%(version)s.tar.gz']
-patches = [
- 'GATE-%(version)s_Makefile-prefix.patch',
- 'GATE-%(version)s_unistdh.patch',
-]
-checksums = [
- 'de65db471b08bcc6d59aef7913bade9b807bd147125da24ad6213f0f7880a35f', # gate_v7.0.tar.gz
- 'e72c230df1cdd05c07ac405b22bf26931abdcd3e5f7b942e9c88251ac24cc6af', # GATE-7.0_Makefile-prefix.patch
- '96fc4235e586edd61dbd4b5b9403b1ef6c5d619650043fae88ed7398539cdb4d', # GATE-7.0_unistdh.patch
-]
-
-builddependencies = [
- ('CMake', '3.1.3'),
-]
-
-dependencies = [
- ('Geant4', '9.6.p04'),
- ('CLHEP', '2.1.3.1'),
- ('ROOT', 'v5.34.26'),
-]
-
-moduleclass = 'cae'
diff --git a/easybuild/easyconfigs/__archive__/g/GC3Pie/GC3Pie-2.2.3.eb b/easybuild/easyconfigs/__archive__/g/GC3Pie/GC3Pie-2.2.3.eb
deleted file mode 100644
index 53e2ff2549b..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GC3Pie/GC3Pie-2.2.3.eb
+++ /dev/null
@@ -1,107 +0,0 @@
-easyblock = 'Bundle'
-
-name = 'GC3Pie'
-version = '2.2.3'
-
-homepage = 'https://gc3pie.readthedocs.org'
-description = """GC3Pie is a Python package for running large job campaigns on diverse batch-oriented execution
- environments."""
-
-toolchain = SYSTEM
-
-osdependencies = [('python-devel', 'python-dev')]
-
-# this is a bundle of Python packages
-exts_defaultclass = 'PythonPackage'
-
-# allow use of system Python
-allow_system_deps = [('Python', SYS_PYTHON_VERSION)]
-
-exts_list = [
- ('setuptools', '17.1.1', {
- 'source_urls': ['https://pypi.python.org/packages/source/s/setuptools/'],
- }),
- # required for paramiko
- ('ecdsa', '0.11', {
- 'source_urls': ['https://pypi.python.org/packages/source/e/ecdsa/'],
- }),
- # required for paramiko
- ('pycrypto', '2.6.1', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/pycrypto/'],
- 'modulename': 'Crypto',
- }),
- ('paramiko', '1.13.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/paramiko/'],
- }),
- ('PrettyTable', '0.7.2', {
- 'source_urls': ['https://pypi.python.org/packages/source/P/PrettyTable/'],
- 'source_tmpl': 'prettytable-%(version)s.tar.gz',
- }),
- ('pyCLI', '2.0.3', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/pyCLI/'],
- 'modulename': 'cli',
- }),
- ('SQLAlchemy', '0.7.9', {
- 'source_urls': ['https://pypi.python.org/packages/source/S/SQLAlchemy/'],
- }),
- ('parsedatetime', '0.8.7', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/parsedatetime/'],
- }),
- ('boto', '2.9.4', {
- 'source_urls': ['https://pypi.python.org/packages/source/b/boto/'],
- }),
- # required for pbr
- ('pip', '7.0.3', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/pip/'],
- }),
- # required for python-novaclient
- ('pbr', '0.11.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/pbr/'],
- }),
- # required for python-novaclient
- ('Babel', '1.3', {
- 'source_urls': ['https://pypi.python.org/packages/source/B/Babel/'],
- }),
- # required for python-novaclient
- ('simplejson', '3.7.3', {
- 'source_urls': ['https://pypi.python.org/packages/source/s/simplejson/'],
- }),
- # required for python-novaclient
- ('requests', '2.4.2', {
- 'source_urls': ['https://pypi.python.org/packages/source/r/requests/'],
- }),
- # required for python-novaclient
- ('iso8601', '0.1.10', {
- 'source_urls': ['https://pypi.python.org/packages/source/i/iso8601/'],
- }),
- # required for python-novaclient
- ('argparse', '1.3.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/a/argparse/'],
- }),
- # required for python-novaclient
- ('six', '1.9.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/s/six/'],
- }),
- ('python-novaclient', '2.15.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/python-novaclient/'],
- 'modulename': 'novaclient',
- }),
- (name.lower(), version, {
- 'source_urls': ['https://pypi.python.org/packages/source/g/gc3pie/'],
- 'modulename': 'gc3libs',
- }),
-]
-
-pyshortver = '.'.join(SYS_PYTHON_VERSION.split('.')[:2])
-
-# on RHEL-based systems, some extensions get installed to lib, some to lib64
-modextrapaths = {'PYTHONPATH': ['lib/python%s/site-packages' % pyshortver, 'lib64/python%s/site-packages' % pyshortver]}
-
-sanity_check_paths = {
- 'files': ['bin/gc3utils'],
- 'dirs': ['lib/python%(pyver)s/site-packages/gc3pie-%%(version)s-py%(pyver)s.egg/gc3libs' % {'pyver': pyshortver}],
-}
-
-sanity_check_commands = [('gc3utils', 'info --version')]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/g/GC3Pie/GC3Pie-2.3.eb b/easybuild/easyconfigs/__archive__/g/GC3Pie/GC3Pie-2.3.eb
deleted file mode 100644
index 0eff44a892a..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GC3Pie/GC3Pie-2.3.eb
+++ /dev/null
@@ -1,107 +0,0 @@
-easyblock = 'Bundle'
-
-name = 'GC3Pie'
-version = '2.3'
-
-homepage = 'https://gc3pie.readthedocs.org'
-description = """GC3Pie is a Python package for running large job campaigns on diverse batch-oriented execution
- environments."""
-
-toolchain = SYSTEM
-
-osdependencies = [('python-devel', 'python-dev')]
-
-# this is a bundle of Python packages
-exts_defaultclass = 'PythonPackage'
-
-# allow use of system Python
-allow_system_deps = [('Python', SYS_PYTHON_VERSION)]
-
-exts_list = [
- ('setuptools', '18.0.1', {
- 'source_urls': ['https://pypi.python.org/packages/source/s/setuptools/'],
- }),
- # required for paramiko
- ('ecdsa', '0.13', {
- 'source_urls': ['https://pypi.python.org/packages/source/e/ecdsa/'],
- }),
- # required for paramiko
- ('pycrypto', '2.6.1', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/pycrypto/'],
- 'modulename': 'Crypto',
- }),
- ('paramiko', '1.15.2', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/paramiko/'],
- }),
- ('PrettyTable', '0.7.2', {
- 'source_urls': ['https://pypi.python.org/packages/source/P/PrettyTable/'],
- 'source_tmpl': 'prettytable-%(version)s.tar.gz',
- }),
- ('pyCLI', 'devel', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/pyCLI/'],
- 'modulename': 'cli',
- }),
- ('SQLAlchemy', '1.0.6', {
- 'source_urls': ['https://pypi.python.org/packages/source/S/SQLAlchemy/'],
- }),
- ('parsedatetime', '1.5', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/parsedatetime/'],
- }),
- ('boto', '2.38.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/b/boto/'],
- }),
- # required for pbr
- ('pip', '7.0.3', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/pip/'],
- }),
- # required for python-novaclient
- ('pbr', '1.2.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/pbr/'],
- }),
- # required for python-novaclient
- ('Babel', '1.3', {
- 'source_urls': ['https://pypi.python.org/packages/source/B/Babel/'],
- }),
- # required for python-novaclient
- ('simplejson', '3.7.3', {
- 'source_urls': ['https://pypi.python.org/packages/source/s/simplejson/'],
- }),
- # required for python-novaclient
- ('requests', '2.7.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/r/requests/'],
- }),
- # required for python-novaclient
- ('iso8601', '0.1.10', {
- 'source_urls': ['https://pypi.python.org/packages/source/i/iso8601/'],
- }),
- # required for python-novaclient
- ('argparse', '1.3.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/a/argparse/'],
- }),
- # required for python-novaclient
- ('six', '1.9.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/s/six/'],
- }),
- ('python-novaclient', '2.26.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/python-novaclient/'],
- 'modulename': 'novaclient',
- }),
- (name.lower(), version, {
- 'source_urls': ['https://pypi.python.org/packages/source/g/gc3pie/'],
- 'modulename': 'gc3libs',
- }),
-]
-
-pyver = '.'.join(SYS_PYTHON_VERSION.split('.')[:2])
-
-# on RHEL-based systems, some extensions get installed to lib, some to lib64
-modextrapaths = {'PYTHONPATH': ['lib/python%s/site-packages' % pyver, 'lib64/python%s/site-packages' % pyver]}
-
-sanity_check_paths = {
- 'files': ['bin/gc3utils'],
- 'dirs': [('lib/python%s/site-packages' % pyver, 'lib64/python%s/site-packages' % pyver)],
-}
-
-sanity_check_commands = [('gc3utils', 'info --version')]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/g/GC3Pie/GC3Pie-2.4.0.eb b/easybuild/easyconfigs/__archive__/g/GC3Pie/GC3Pie-2.4.0.eb
deleted file mode 100644
index 0a8ac7a577d..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GC3Pie/GC3Pie-2.4.0.eb
+++ /dev/null
@@ -1,107 +0,0 @@
-easyblock = 'Bundle'
-
-name = 'GC3Pie'
-version = '2.4.0'
-
-homepage = 'https://gc3pie.readthedocs.org'
-description = """GC3Pie is a Python package for running large job campaigns on diverse batch-oriented execution
- environments."""
-
-toolchain = SYSTEM
-
-osdependencies = [('python-devel', 'python-dev')]
-
-# this is a bundle of Python packages
-exts_defaultclass = 'PythonPackage'
-
-# allow use of system Python
-allow_system_deps = [('Python', SYS_PYTHON_VERSION)]
-
-exts_list = [
- ('setuptools', '18.0.1', {
- 'source_urls': ['https://pypi.python.org/packages/source/s/setuptools/'],
- }),
- # required for paramiko
- ('ecdsa', '0.13', {
- 'source_urls': ['https://pypi.python.org/packages/source/e/ecdsa/'],
- }),
- # required for paramiko
- ('pycrypto', '2.6.1', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/pycrypto/'],
- 'modulename': 'Crypto',
- }),
- ('paramiko', '1.15.2', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/paramiko/'],
- }),
- ('PrettyTable', '0.7.2', {
- 'source_urls': ['https://pypi.python.org/packages/source/P/PrettyTable/'],
- 'source_tmpl': 'prettytable-%(version)s.tar.gz',
- }),
- ('pyCLI', 'devel', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/pyCLI/'],
- 'modulename': 'cli',
- }),
- ('SQLAlchemy', '1.0.6', {
- 'source_urls': ['https://pypi.python.org/packages/source/S/SQLAlchemy/'],
- }),
- ('parsedatetime', '1.5', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/parsedatetime/'],
- }),
- ('boto', '2.38.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/b/boto/'],
- }),
- # required for pbr
- ('pip', '7.1.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/pip/'],
- }),
- # required for python-novaclient
- ('pbr', '1.2.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/pbr/'],
- }),
- # required for python-novaclient
- ('Babel', '1.3', {
- 'source_urls': ['https://pypi.python.org/packages/source/B/Babel/'],
- }),
- # required for python-novaclient
- ('simplejson', '3.7.3', {
- 'source_urls': ['https://pypi.python.org/packages/source/s/simplejson/'],
- }),
- # required for python-novaclient
- ('requests', '2.7.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/r/requests/'],
- }),
- # required for python-novaclient
- ('iso8601', '0.1.10', {
- 'source_urls': ['https://pypi.python.org/packages/source/i/iso8601/'],
- }),
- # required for python-novaclient
- ('argparse', '1.3.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/a/argparse/'],
- }),
- # required for python-novaclient
- ('six', '1.9.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/s/six/'],
- }),
- ('python-novaclient', '2.26.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/python-novaclient/'],
- 'modulename': 'novaclient',
- }),
- (name.lower(), version, {
- 'source_urls': ['https://pypi.python.org/packages/source/g/gc3pie/'],
- 'modulename': 'gc3libs',
- }),
-]
-
-pyver = '.'.join(SYS_PYTHON_VERSION.split('.')[:2])
-
-# on RHEL-based systems, some extensions get installed to lib, some to lib64
-modextrapaths = {'PYTHONPATH': ['lib/python%s/site-packages' % pyver, 'lib64/python%s/site-packages' % pyver]}
-
-sanity_check_paths = {
- 'files': ['bin/gc3utils'],
- 'dirs': [('lib/python%s/site-packages' % pyver, 'lib64/python%s/site-packages' % pyver)],
-}
-
-sanity_check_commands = [('gc3utils', 'info --version')]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/g/GC3Pie/GC3Pie-2.4.1.eb b/easybuild/easyconfigs/__archive__/g/GC3Pie/GC3Pie-2.4.1.eb
deleted file mode 100644
index fda459ae303..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GC3Pie/GC3Pie-2.4.1.eb
+++ /dev/null
@@ -1,107 +0,0 @@
-easyblock = 'Bundle'
-
-name = 'GC3Pie'
-version = '2.4.1'
-
-homepage = 'https://gc3pie.readthedocs.org'
-description = """GC3Pie is a Python package for running large job campaigns on diverse batch-oriented execution
- environments."""
-
-toolchain = SYSTEM
-
-osdependencies = [('python-devel', 'python-dev')]
-
-# this is a bundle of Python packages
-exts_defaultclass = 'PythonPackage'
-
-# allow use of system Python
-allow_system_deps = [('Python', SYS_PYTHON_VERSION)]
-
-exts_list = [
- ('setuptools', '18.1', {
- 'source_urls': ['https://pypi.python.org/packages/source/s/setuptools/'],
- }),
- # required for paramiko
- ('ecdsa', '0.13', {
- 'source_urls': ['https://pypi.python.org/packages/source/e/ecdsa/'],
- }),
- # required for paramiko
- ('pycrypto', '2.6.1', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/pycrypto/'],
- 'modulename': 'Crypto',
- }),
- ('paramiko', '1.15.2', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/paramiko/'],
- }),
- ('PrettyTable', '0.7.2', {
- 'source_urls': ['https://pypi.python.org/packages/source/P/PrettyTable/'],
- 'source_tmpl': 'prettytable-%(version)s.tar.gz',
- }),
- ('pyCLI', 'devel', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/pyCLI/'],
- 'modulename': 'cli',
- }),
- ('SQLAlchemy', '1.0.8', {
- 'source_urls': ['https://pypi.python.org/packages/source/S/SQLAlchemy/'],
- }),
- ('parsedatetime', '1.5', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/parsedatetime/'],
- }),
- ('boto', '2.38.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/b/boto/'],
- }),
- # required for pbr
- ('pip', '7.1.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/pip/'],
- }),
- # required for python-novaclient
- ('pbr', '1.4.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/pbr/'],
- }),
- # required for python-novaclient
- ('Babel', '2.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/B/Babel/'],
- }),
- # required for python-novaclient
- ('simplejson', '3.8.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/s/simplejson/'],
- }),
- # required for python-novaclient
- ('requests', '2.7.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/r/requests/'],
- }),
- # required for python-novaclient
- ('iso8601', '0.1.10', {
- 'source_urls': ['https://pypi.python.org/packages/source/i/iso8601/'],
- }),
- # required for python-novaclient
- ('argparse', '1.3.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/a/argparse/'],
- }),
- # required for python-novaclient
- ('six', '1.9.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/s/six/'],
- }),
- ('python-novaclient', '2.23.1', {
- 'source_urls': ['https://pypi.python.org/packages/source/p/python-novaclient/'],
- 'modulename': 'novaclient',
- }),
- (name.lower(), version, {
- 'source_urls': ['https://pypi.python.org/packages/source/g/gc3pie/'],
- 'modulename': 'gc3libs',
- }),
-]
-
-pyver = '.'.join(SYS_PYTHON_VERSION.split('.')[:2])
-
-# on RHEL-based systems, some extensions get installed to lib, some to lib64
-modextrapaths = {'PYTHONPATH': ['lib/python%s/site-packages' % pyver, 'lib64/python%s/site-packages' % pyver]}
-
-sanity_check_paths = {
- 'files': ['bin/gc3utils'],
- 'dirs': [('lib/python%s/site-packages' % pyver, 'lib64/python%s/site-packages' % pyver)],
-}
-
-sanity_check_commands = [('gc3utils', 'info --version')]
-
-moduleclass = 'tools'
diff --git a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.1.2.eb b/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.1.2.eb
deleted file mode 100644
index ee46a3a5ffa..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.1.2.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-name = "GCC"
-version = '4.1.2'
-
-homepage = 'http://gcc.gnu.org/'
-description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran,
- Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...)."""
-
-toolchain = SYSTEM # empty version to ensure that dependencies are loaded
-
-source_urls = ['http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s']
-sources = [SOURCELOWER_TAR_BZ2]
-
-checksums = [
- 'a4a3eb15c96030906d8494959eeda23c', # gcc-4.1.2.tar.bz2
-]
-
-dependencies = [
- ('GMP', '4.3.2'),
- ('MPFR', '2.4.2'),
-]
-
-# building GCC v4.1.2 requires an old GCC version, so don't rely on system compiler
-builddependencies = [('GCC', '4.2.4')]
-
-languages = ['c', 'c++', 'fortran']
-
-configopts = "--with-gmp=$EBROOTGMP --with-mpfr=$EBROOTMPFR"
-
-# building GCC sometimes fails if make parallelism is too high, so let's limit it
-maxparallel = 4
-
-withlto = False
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.2.4.eb b/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.2.4.eb
deleted file mode 100644
index 4bf5e668782..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.2.4.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-name = "GCC"
-version = '4.2.4'
-
-homepage = 'http://gcc.gnu.org/'
-description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran,
- Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...)."""
-
-toolchain = SYSTEM # empty version to ensure that dependencies are loaded
-
-source_urls = ['http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s']
-sources = [SOURCELOWER_TAR_BZ2]
-
-checksums = [
- 'd79f553e7916ea21c556329eacfeaa16', # gcc-4.2.4.tar.bz2
-]
-
-dependencies = [
- ('GMP', '4.3.2'),
- ('MPFR', '2.4.2'),
-]
-
-languages = ['c', 'c++', 'fortran']
-
-configopts = "--with-gmp=$EBROOTGMP --with-mpfr=$EBROOTMPFR"
-
-# building GCC sometimes fails if make parallelism is too high, so let's limit it
-maxparallel = 4
-
-withlto = False
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.3.6.eb b/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.3.6.eb
deleted file mode 100644
index 409cef1b46c..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.3.6.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-name = "GCC"
-version = '4.3.6'
-
-homepage = 'http://gcc.gnu.org/'
-description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran,
- Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...)."""
-
-toolchain = SYSTEM # empty version to ensure that dependencies are loaded
-
-source_urls = ['http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s']
-sources = [SOURCELOWER_TAR_BZ2]
-
-checksums = [
- '55ddf934bc9f8d1eaff7a77e7d598a85', # gcc-4.3.6.tar.bz2
-]
-
-dependencies = [
- ('GMP', '4.3.2'),
- ('MPFR', '2.4.2'),
-]
-
-languages = ['c', 'c++', 'fortran']
-
-configopts = "--with-gmp=$EBROOTGMP --with-mpfr=$EBROOTMPFR"
-
-# building GCC sometimes fails if make parallelism is too high, so let's limit it
-maxparallel = 4
-
-withlto = False
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.4.7.eb b/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.4.7.eb
deleted file mode 100644
index fd3cf319ba9..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.4.7.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-name = "GCC"
-version = '4.4.7'
-
-homepage = 'http://gcc.gnu.org/'
-description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran,
- Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...)."""
-
-toolchain = SYSTEM # empty version to ensure that dependencies are loaded
-
-source_urls = ['http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s']
-sources = [SOURCELOWER_TAR_BZ2]
-
-checksums = [
- '295709feb4441b04e87dea3f1bab4281', # gcc-4.4.7.tar.bz2
-]
-
-dependencies = [
- ('GMP', '4.3.2'),
- ('MPFR', '2.4.2'),
-]
-
-languages = ['c', 'c++', 'fortran']
-
-# the build will fail if a new version of texinfo is found, so disable
-configopts = "--with-gmp=$EBROOTGMP --with-mpfr=$EBROOTMPFR MAKEINFO=MISSING"
-
-# building GCC sometimes fails if make parallelism is too high, so let's limit it
-maxparallel = 4
-
-withlto = False
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.5.2.eb b/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.5.2.eb
deleted file mode 100644
index b9d82bae824..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.5.2.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-name = "GCC"
-version = '4.5.2'
-
-homepage = 'http://gcc.gnu.org/'
-description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran,
- Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...)."""
-
-toolchain = SYSTEM
-
-source_urls = [
- 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror
- 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP
- 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR
- 'http://www.multiprecision.org/downloads', # MPC official
-]
-sources = [
- SOURCELOWER_TAR_GZ,
- 'gmp-5.0.2.tar.gz',
- 'mpfr-3.0.1.tar.gz',
- 'mpc-0.8.2.tar.gz',
-]
-
-checksums = [
- 'e31fe695d7235f11fb5a63eafdfbfe88', # gcc-4.5.2.tar.gz
- '87e73447afdc2ca5cefd987da865da51', # gmp-5.0.2.tar.gz
- 'e9c191fc46a4f5741f8a0a11ab33b8bf', # mpfr-3.0.1.tar.gz
- 'e98267ebd5648a39f881d66797122fb6', # mpc-0.8.2.tar.gz
-]
-
-languages = ['c', 'c++', 'fortran']
-
-# building GCC sometimes fails if make parallelism is too high, so let's limit it
-maxparallel = 4
-
-withlto = False
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.5.3-CLooG-PPL.eb b/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.5.3-CLooG-PPL.eb
deleted file mode 100644
index f1d8e765544..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.5.3-CLooG-PPL.eb
+++ /dev/null
@@ -1,51 +0,0 @@
-name = "GCC"
-version = '4.5.3'
-versionsuffix = "-CLooG-PPL"
-
-homepage = 'http://gcc.gnu.org/'
-description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran,
- Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...)."""
-
-toolchain = SYSTEM
-
-pplver = '0.11'
-
-source_urls = [
- 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror
- 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP
- 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR
- 'http://www.multiprecision.org/downloads', # MPC official
- 'http://bugseng.com/products/ppl/download/ftp/releases/%s' % pplver, # PPL official
- 'http://www.bastoul.net/cloog/pages/download/count.php3?url=.', # CLooG official
- 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies, for PPL and CLooG-PPL
- 'http://gcc.cybermirror.org/infrastructure/', # HTTP mirror for GCC dependencies
-]
-sources = [
- SOURCELOWER_TAR_GZ,
- 'gmp-5.0.2.tar.gz',
- 'mpfr-3.0.1.tar.gz',
- 'mpc-0.8.2.tar.gz',
- 'cloog-ppl-0.15.11.tar.gz',
- 'ppl-%s.tar.gz' % pplver,
-]
-
-checksums = [
- 'bf100d5b3b88f7938752e43c90e48f48', # gcc-4.5.3.tar.gz
- '87e73447afdc2ca5cefd987da865da51', # gmp-5.0.2.tar.gz
- 'e9c191fc46a4f5741f8a0a11ab33b8bf', # mpfr-3.0.1.tar.gz
- 'e98267ebd5648a39f881d66797122fb6', # mpc-0.8.2.tar.gz
- '060ae4df6fb8176e021b4d033a6c0b9e', # cloog-ppl-0.15.11.tar.gz
- 'ba527ec0ffc830ce16fad8a4195a337e', # ppl-0.11.tar.gz
-]
-
-languages = ['c', 'c++', 'fortran']
-
-withcloog = True
-withppl = True
-
-# building GCC sometimes fails if make parallelism is too high, so let's limit it
-maxparallel = 4
-
-withlto = False
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.5.3.eb b/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.5.3.eb
deleted file mode 100644
index d62b4a5f696..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.5.3.eb
+++ /dev/null
@@ -1,37 +0,0 @@
-name = "GCC"
-version = '4.5.3'
-
-homepage = 'http://gcc.gnu.org/'
-description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran,
- Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...)."""
-
-toolchain = SYSTEM
-
-source_urls = [
- 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror
- 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP
- 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR
- 'http://www.multiprecision.org/downloads', # MPC official
-]
-sources = [
- SOURCELOWER_TAR_GZ,
- 'gmp-5.0.2.tar.gz',
- 'mpfr-3.0.1.tar.gz',
- 'mpc-0.8.2.tar.gz',
-]
-
-checksums = [
- 'bf100d5b3b88f7938752e43c90e48f48', # gcc-4.5.3.tar.gz
- '87e73447afdc2ca5cefd987da865da51', # gmp-5.0.2.tar.gz
- 'e9c191fc46a4f5741f8a0a11ab33b8bf', # mpfr-3.0.1.tar.gz
- 'e98267ebd5648a39f881d66797122fb6', # mpc-0.8.2.tar.gz
-]
-
-languages = ['c', 'c++', 'fortran']
-
-# building GCC sometimes fails if make parallelism is too high, so let's limit it
-maxparallel = 4
-
-withlto = False
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.6.0.eb b/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.6.0.eb
deleted file mode 100644
index a1bcd7bba4f..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.6.0.eb
+++ /dev/null
@@ -1,35 +0,0 @@
-name = "GCC"
-version = '4.6.0'
-
-homepage = 'http://gcc.gnu.org/'
-description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran,
- Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...)."""
-
-toolchain = SYSTEM
-
-source_urls = [
- 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror
- 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP
- 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR
- 'http://www.multiprecision.org/downloads', # MPC official
-]
-sources = [
- SOURCELOWER_TAR_GZ,
- 'gmp-5.0.4.tar.bz2',
- 'mpfr-3.0.1.tar.gz',
- 'mpc-0.9.tar.gz',
-]
-
-checksums = [
- '009f59ee0f9c8100c12939140698cf33', # gcc-4.6.0.tar.gz
- '50c3edcb7c9438e04377ee9a1a061b79', # gmp-5.0.4.tar.bz2
- 'e9c191fc46a4f5741f8a0a11ab33b8bf', # mpfr-3.0.1.tar.gz
- '0d6acab8d214bd7d1fbbc593e83dd00d', # mpc-0.9.tar.gz
-]
-
-languages = ['c', 'c++', 'fortran']
-
-# building GCC sometimes fails if make parallelism is too high, so let's limit it
-maxparallel = 4
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.6.3-CLooG-PPL.eb b/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.6.3-CLooG-PPL.eb
deleted file mode 100644
index ed181e7d6c4..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.6.3-CLooG-PPL.eb
+++ /dev/null
@@ -1,49 +0,0 @@
-name = "GCC"
-version = '4.6.3'
-versionsuffix = "-CLooG-PPL"
-
-homepage = 'http://gcc.gnu.org/'
-description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran,
- Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...)."""
-
-toolchain = SYSTEM
-
-pplver = '0.12'
-
-source_urls = [
- 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror
- 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP
- 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR
- 'http://www.multiprecision.org/downloads', # MPC official
- 'http://bugseng.com/products/ppl/download/ftp/releases/%s' % pplver, # PPL official
- 'http://www.bastoul.net/cloog/pages/download/count.php3?url=.', # CLooG official
- 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies, for PPL and CLooG-PPL
- 'http://gcc.cybermirror.org/infrastructure/', # HTTP mirror for GCC dependencies
-]
-sources = [
- SOURCELOWER_TAR_GZ,
- 'gmp-5.0.4.tar.bz2',
- 'mpfr-3.0.1.tar.gz',
- 'mpc-0.9.tar.gz',
- 'cloog-ppl-0.15.11.tar.gz',
- 'ppl-%s.tar.gz' % pplver,
-]
-
-checksums = [
- 'c51e55130ab9ca3e5f34014cac15dd39', # gcc-4.6.3.tar.gz
- '50c3edcb7c9438e04377ee9a1a061b79', # gmp-5.0.4.tar.bz2
- 'e9c191fc46a4f5741f8a0a11ab33b8bf', # mpfr-3.0.1.tar.gz
- '0d6acab8d214bd7d1fbbc593e83dd00d', # mpc-0.9.tar.gz
- '060ae4df6fb8176e021b4d033a6c0b9e', # cloog-ppl-0.15.11.tar.gz
- '47a5548d4e3d98cf6b97e4fd3e5db513', # ppl-0.12.tar.gz
-]
-
-languages = ['c', 'c++', 'fortran']
-
-withcloog = True
-withppl = True
-
-# building GCC sometimes fails if make parallelism is too high, so let's limit it
-maxparallel = 4
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.6.3.eb b/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.6.3.eb
deleted file mode 100644
index ac8a50e61f5..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.6.3.eb
+++ /dev/null
@@ -1,35 +0,0 @@
-name = "GCC"
-version = '4.6.3'
-
-homepage = 'http://gcc.gnu.org/'
-description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran,
- Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...)."""
-
-toolchain = SYSTEM
-
-source_urls = [
- 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror
- 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP
- 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR
- 'http://www.multiprecision.org/downloads', # MPC official
-]
-sources = [
- SOURCELOWER_TAR_GZ,
- 'gmp-5.0.4.tar.bz2',
- 'mpfr-3.0.1.tar.gz',
- 'mpc-0.9.tar.gz',
-]
-
-checksums = [
- 'c51e55130ab9ca3e5f34014cac15dd39', # gcc-4.6.3.tar.gz
- '50c3edcb7c9438e04377ee9a1a061b79', # gmp-5.0.4.tar.bz2
- 'e9c191fc46a4f5741f8a0a11ab33b8bf', # mpfr-3.0.1.tar.gz
- '0d6acab8d214bd7d1fbbc593e83dd00d', # mpc-0.9.tar.gz
-]
-
-languages = ['c', 'c++', 'fortran']
-
-# building GCC sometimes fails if make parallelism is too high, so let's limit it
-maxparallel = 4
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.6.4.eb b/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.6.4.eb
deleted file mode 100644
index 2c60a9a2a19..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.6.4.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-name = "GCC"
-version = '4.6.4'
-
-homepage = 'http://gcc.gnu.org/'
-description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran,
- Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...)."""
-
-toolchain = SYSTEM
-
-source_urls = [
- 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror
- 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP
- 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR
- 'http://ftpmirror.gnu.org/gnu/mpc/', # idem for MPC
-]
-sources = [
- '%(namelower)s-%(version)s.tar.gz',
- 'gmp-5.1.1.tar.bz2',
- 'mpfr-3.1.2.tar.gz',
- 'mpc-1.0.1.tar.gz',
-]
-
-patches = ['mpfr-3.1.0-changes_fix.patch']
-
-checksums = [
- 'a8f15fc233589924ccd8cc8140b0ca3c', # gcc-4.6.4.tar.gz
- '2fa018a7cd193c78494525f236d02dd6', # gmp-5.1.1.tar.bz2
- '181aa7bb0e452c409f2788a4a7f38476', # mpfr-3.1.2.tar.gz
- 'b32a2e1a3daa392372fbd586d1ed3679', # mpc-1.0.1.tar.gz
- 'fa4095252d843d465ac9aa5e2d760dd8', # mpfr-3.1.0-changes_fix.patch
-]
-
-languages = ['c', 'c++', 'fortran']
-
-# building GCC sometimes fails if make parallelism is too high, so let's limit it
-maxparallel = 4
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.0-CLooG-PPL.eb b/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.0-CLooG-PPL.eb
deleted file mode 100644
index 2da8bd96b6a..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.0-CLooG-PPL.eb
+++ /dev/null
@@ -1,54 +0,0 @@
-name = "GCC"
-version = '4.7.0'
-versionsuffix = "-CLooG-PPL"
-
-homepage = 'http://gcc.gnu.org/'
-description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran,
- Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...)."""
-
-toolchain = SYSTEM
-
-pplver = '0.12'
-
-source_urls = [
- 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror
- 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP
- 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR
- 'http://www.multiprecision.org/downloads', # MPC official
- 'http://bugseng.com/products/ppl/download/ftp/releases/%s' % pplver, # PPL official
- 'http://www.bastoul.net/cloog/pages/download/count.php3?url=.', # CLooG official
- 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies, for PPL and CLooG-PPL
- 'http://gcc.cybermirror.org/infrastructure/', # HTTP mirror for GCC dependencies
-]
-sources = [
- SOURCELOWER_TAR_GZ,
- 'gmp-5.0.4.tar.bz2',
- 'mpfr-3.1.0.tar.gz',
- 'mpc-0.9.tar.gz',
- 'cloog-0.16.1.tar.gz',
- 'ppl-%s.tar.gz' % pplver,
-]
-
-patches = ['mpfr-3.1.0-changes_fix.patch']
-
-checksums = [
- 'ef5117788e27ffef05f8b8adf46f91d8', # gcc-4.7.0.tar.gz
- '50c3edcb7c9438e04377ee9a1a061b79', # gmp-5.0.4.tar.bz2
- '10968131acc26d79311ac4f8982ff078', # mpfr-3.1.0.tar.gz
- '0d6acab8d214bd7d1fbbc593e83dd00d', # mpc-0.9.tar.gz
- '947123350d1ff6dcb4b0774947ac015a', # cloog-0.16.1.tar.gz
- '47a5548d4e3d98cf6b97e4fd3e5db513', # ppl-0.12.tar.gz
- 'fa4095252d843d465ac9aa5e2d760dd8', # mpfr-3.1.0-changes_fix.patch
-]
-
-languages = ['c', 'c++', 'fortran']
-
-withcloog = True
-withppl = True
-
-clooguseisl = True
-
-# building GCC sometimes fails if make parallelism is too high, so let's limit it
-maxparallel = 4
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.0.eb b/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.0.eb
deleted file mode 100644
index 331b66a1a4f..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.0.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-name = "GCC"
-version = '4.7.0'
-
-homepage = 'http://gcc.gnu.org/'
-description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran,
- Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...)."""
-
-toolchain = SYSTEM
-
-source_urls = [
- 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror
- 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP
- 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR
- 'http://www.multiprecision.org/downloads', # MPC official
-]
-sources = [
- SOURCELOWER_TAR_GZ,
- 'gmp-5.0.4.tar.bz2',
- 'mpfr-3.1.0.tar.gz',
- 'mpc-0.9.tar.gz',
-]
-
-patches = ['mpfr-3.1.0-changes_fix.patch']
-
-checksums = [
- 'ef5117788e27ffef05f8b8adf46f91d8', # gcc-4.7.0.tar.gz
- '50c3edcb7c9438e04377ee9a1a061b79', # gmp-5.0.4.tar.bz2
- '10968131acc26d79311ac4f8982ff078', # mpfr-3.1.0.tar.gz
- '0d6acab8d214bd7d1fbbc593e83dd00d', # mpc-0.9.tar.gz
- 'fa4095252d843d465ac9aa5e2d760dd8', # mpfr-3.1.0-changes_fix.patch
-]
-
-languages = ['c', 'c++', 'fortran']
-
-# building GCC sometimes fails if make parallelism is too high, so let's limit it
-maxparallel = 4
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.1-CLooG-PPL.eb b/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.1-CLooG-PPL.eb
deleted file mode 100644
index cae768a4e6c..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.1-CLooG-PPL.eb
+++ /dev/null
@@ -1,54 +0,0 @@
-name = "GCC"
-version = '4.7.1'
-versionsuffix = "-CLooG-PPL"
-
-homepage = 'http://gcc.gnu.org/'
-description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran,
- Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...)."""
-
-toolchain = SYSTEM
-
-pplver = '0.12'
-
-source_urls = [
- 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror
- 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP
- 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR
- 'http://www.multiprecision.org/downloads', # MPC official
- 'http://bugseng.com/products/ppl/download/ftp/releases/%s' % pplver, # PPL official
- 'http://www.bastoul.net/cloog/pages/download/', # CLooG official
- 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies, for PPL and CLooG-PPL
- 'http://gcc.cybermirror.org/infrastructure/', # HTTP mirror for GCC dependencies
-]
-sources = [
- SOURCELOWER_TAR_GZ,
- 'gmp-5.0.5.tar.bz2',
- 'mpfr-3.1.1.tar.gz',
- 'mpc-1.0.tar.gz',
- 'cloog-0.16.3.tar.gz',
- 'ppl-%s.tar.gz' % pplver,
-]
-
-patches = ['mpfr-3.1.0-changes_fix.patch']
-
-checksums = [
- '3d06e24570635c91eed6b114687513a6', # gcc-4.7.1.tar.gz
- '041487d25e9c230b0c42b106361055fe', # gmp-5.0.5.tar.bz2
- '769411e241a3f063ae1319eb5fac2462', # mpfr-3.1.1.tar.gz
- '13370ceb2e266c5eeb2f7e78c24b7858', # mpc-1.0.tar.gz
- 'a0f8a241cd1c4f103f8d2c91642b3498', # cloog-0.16.3.tar.gz
- '47a5548d4e3d98cf6b97e4fd3e5db513', # ppl-0.12.tar.gz
- 'fa4095252d843d465ac9aa5e2d760dd8', # mpfr-3.1.0-changes_fix.patch
-]
-
-languages = ['c', 'c++', 'fortran']
-
-withcloog = True
-withppl = True
-
-clooguseisl = True
-
-# building GCC sometimes fails if make parallelism is too high, so let's limit it
-maxparallel = 4
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.1.eb b/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.1.eb
deleted file mode 100644
index 126f74f452a..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.1.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-name = "GCC"
-version = '4.7.1'
-
-homepage = 'http://gcc.gnu.org/'
-description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran,
- Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...)."""
-
-toolchain = SYSTEM
-
-source_urls = [
- 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror
- 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP
- 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR
- 'http://www.multiprecision.org/downloads', # MPC official
-]
-sources = [
- SOURCELOWER_TAR_GZ,
- 'gmp-5.0.5.tar.bz2',
- 'mpfr-3.1.1.tar.gz',
- 'mpc-1.0.tar.gz',
-]
-
-patches = ['mpfr-3.1.0-changes_fix.patch']
-
-checksums = [
- '3d06e24570635c91eed6b114687513a6', # gcc-4.7.1.tar.gz
- '041487d25e9c230b0c42b106361055fe', # gmp-5.0.5.tar.bz2
- '769411e241a3f063ae1319eb5fac2462', # mpfr-3.1.1.tar.gz
- '13370ceb2e266c5eeb2f7e78c24b7858', # mpc-1.0.tar.gz
- 'fa4095252d843d465ac9aa5e2d760dd8', # mpfr-3.1.0-changes_fix.patch
-]
-
-languages = ['c', 'c++', 'fortran']
-
-# building GCC sometimes fails if make parallelism is too high, so let's limit it
-maxparallel = 4
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.2.eb b/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.2.eb
deleted file mode 100644
index d262b97d044..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.2.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-name = "GCC"
-version = '4.7.2'
-
-homepage = 'http://gcc.gnu.org/'
-description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran,
- Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...)."""
-
-toolchain = SYSTEM
-
-source_urls = [
- 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror
- 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP
- 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR
- 'http://ftpmirror.gnu.org/gnu/mpc/', # idem for MPC
-]
-sources = [
- SOURCELOWER_TAR_GZ,
- 'gmp-5.0.5.tar.bz2',
- 'mpfr-3.1.1.tar.gz',
- 'mpc-1.0.1.tar.gz',
-]
-
-patches = ['mpfr-3.1.0-changes_fix.patch']
-
-checksums = [
- '5199d34506d4fa6528778ddba362d3f4', # gcc-4.7.2.tar.gz
- '041487d25e9c230b0c42b106361055fe', # gmp-5.0.5.tar.bz2
- '769411e241a3f063ae1319eb5fac2462', # mpfr-3.1.1.tar.gz
- 'b32a2e1a3daa392372fbd586d1ed3679', # mpc-1.0.1.tar.gz
- 'fa4095252d843d465ac9aa5e2d760dd8', # mpfr-3.1.0-changes_fix.patch
-]
-
-languages = ['c', 'c++', 'fortran']
-
-# building GCC sometimes fails if make parallelism is too high, so let's limit it
-maxparallel = 4
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.3-CLooG-PPL.eb b/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.3-CLooG-PPL.eb
deleted file mode 100644
index 94d92ba0efd..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.3-CLooG-PPL.eb
+++ /dev/null
@@ -1,58 +0,0 @@
-name = "GCC"
-version = '4.7.3'
-versionsuffix = "-CLooG-PPL"
-
-homepage = 'http://gcc.gnu.org/'
-description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran,
- Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...)."""
-
-toolchain = SYSTEM
-
-pplver = '0.12.1'
-
-source_urls = [
- 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror
- 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP
- 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR
- 'http://ftpmirror.gnu.org/gnu/mpc/', # idem for MPC
- 'http://bugseng.com/products/ppl/download/ftp/releases/%s' % pplver, # PPL official
- 'http://www.bastoul.net/cloog/pages/download/', # CLooG official
- 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies, for PPL and CLooG-PPL
- 'http://gcc.cybermirror.org/infrastructure/', # HTTP mirror for GCC dependencies
-]
-sources = [
- SOURCELOWER_TAR_GZ,
- 'gmp-5.1.2.tar.bz2',
- 'mpfr-3.1.2.tar.gz',
- 'mpc-1.0.1.tar.gz',
- 'cloog-0.16.3.tar.gz',
- 'ppl-%s.tar.gz' % pplver,
-]
-
-patches = [
- ('ppl-0.12.1-mpfr.patch', '../ppl-%s' % pplver),
- 'mpfr-3.1.0-changes_fix.patch',
-]
-
-checksums = [
- 'd518eace24a53aef59c2c69498ea4989', # gcc-4.7.3.tar.gz
- '7e3516128487956cd825fef01aafe4bc', # gmp-5.1.2.tar.bz2
- '181aa7bb0e452c409f2788a4a7f38476', # mpfr-3.1.2.tar.gz
- 'b32a2e1a3daa392372fbd586d1ed3679', # mpc-1.0.1.tar.gz
- 'a0f8a241cd1c4f103f8d2c91642b3498', # cloog-0.16.3.tar.gz
- 'cec8144f2072ac45a850214cca97d075', # ppl-0.12.1.tar.gz
- 'b6153bac75ee9e2a78e08ee97bf045f2', # ppl-0.12.1-mpfr.patch
- 'fa4095252d843d465ac9aa5e2d760dd8', # mpfr-3.1.0-changes_fix.patch
-]
-
-languages = ['c', 'c++', 'fortran']
-
-withcloog = True
-withppl = True
-
-clooguseisl = True
-
-# building GCC sometimes fails if make parallelism is too high, so let's limit it
-maxparallel = 4
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.3.eb b/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.3.eb
deleted file mode 100644
index 083996a1652..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.3.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-name = "GCC"
-version = '4.7.3'
-
-homepage = 'http://gcc.gnu.org/'
-description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran,
- Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...)."""
-
-toolchain = SYSTEM
-
-source_urls = [
- 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror
- 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP
- 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR
- 'http://ftpmirror.gnu.org/gnu/mpc/', # idem for MPC
-]
-sources = [
- SOURCELOWER_TAR_GZ,
- 'gmp-5.1.1.tar.bz2',
- 'mpfr-3.1.2.tar.gz',
- 'mpc-1.0.1.tar.gz',
-]
-
-patches = ['mpfr-3.1.0-changes_fix.patch']
-
-checksums = [
- 'd518eace24a53aef59c2c69498ea4989', # gcc-4.7.3.tar.gz
- '2fa018a7cd193c78494525f236d02dd6', # gmp-5.1.1.tar.bz2
- '181aa7bb0e452c409f2788a4a7f38476', # mpfr-3.1.2.tar.gz
- 'b32a2e1a3daa392372fbd586d1ed3679', # mpc-1.0.1.tar.gz
- 'fa4095252d843d465ac9aa5e2d760dd8', # mpfr-3.1.0-changes_fix.patch
-]
-
-languages = ['c', 'c++', 'fortran']
-
-# building GCC sometimes fails if make parallelism is too high, so let's limit it
-maxparallel = 4
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.4-CLooG-PPL.eb b/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.4-CLooG-PPL.eb
deleted file mode 100644
index 0f91e8e62c4..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.4-CLooG-PPL.eb
+++ /dev/null
@@ -1,58 +0,0 @@
-name = "GCC"
-version = '4.7.4'
-versionsuffix = "-CLooG-PPL"
-
-homepage = 'http://gcc.gnu.org/'
-description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran,
- Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...)."""
-
-toolchain = SYSTEM
-
-pplver = '0.12.1'
-
-source_urls = [
- 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror
- 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP
- 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR
- 'http://ftpmirror.gnu.org/gnu/mpc/', # idem for MPC
- 'http://bugseng.com/products/ppl/download/ftp/releases/%s' % pplver, # PPL official
- 'http://www.bastoul.net/cloog/pages/download/', # CLooG official
- 'ftp://gcc.gnu.org/pub/gcc/infrastructure/', # GCC dependencies, for PPL and CLooG-PPL
- 'http://gcc.cybermirror.org/infrastructure/', # HTTP mirror for GCC dependencies
-]
-sources = [
- SOURCELOWER_TAR_GZ,
- 'gmp-5.1.3.tar.bz2',
- 'mpfr-3.1.2.tar.gz',
- 'mpc-1.0.1.tar.gz',
- 'cloog-0.16.3.tar.gz',
- 'ppl-%s.tar.gz' % pplver,
-]
-
-patches = [
- ('ppl-0.12.1-mpfr.patch', '../ppl-%s' % pplver),
- 'mpfr-3.1.0-changes_fix.patch',
-]
-
-checksums = [
- 'f07a9c4078dbccdcc18bc840ab5e0fe9', # gcc-4.7.4.tar.gz
- 'a082867cbca5e898371a97bb27b31fea', # gmp-5.1.3.tar.bz2
- '181aa7bb0e452c409f2788a4a7f38476', # mpfr-3.1.2.tar.gz
- 'b32a2e1a3daa392372fbd586d1ed3679', # mpc-1.0.1.tar.gz
- 'a0f8a241cd1c4f103f8d2c91642b3498', # cloog-0.16.3.tar.gz
- 'cec8144f2072ac45a850214cca97d075', # ppl-0.12.1.tar.gz
- 'b6153bac75ee9e2a78e08ee97bf045f2', # ppl-0.12.1-mpfr.patch
- 'fa4095252d843d465ac9aa5e2d760dd8', # mpfr-3.1.0-changes_fix.patch
-]
-
-languages = ['c', 'c++', 'fortran']
-
-withcloog = True
-withppl = True
-
-clooguseisl = True
-
-# building GCC sometimes fails if make parallelism is too high, so let's limit it
-maxparallel = 4
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.4.eb b/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.4.eb
deleted file mode 100644
index 6b6c9d76622..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GCC/GCC-4.7.4.eb
+++ /dev/null
@@ -1,38 +0,0 @@
-name = "GCC"
-version = '4.7.4'
-
-homepage = 'http://gcc.gnu.org/'
-description = """The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran,
- Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...)."""
-
-toolchain = SYSTEM
-
-source_urls = [
- 'http://ftpmirror.gnu.org/gnu/%(namelower)s/%(namelower)s-%(version)s', # GCC auto-resolving HTTP mirror
- 'http://ftpmirror.gnu.org/gnu/gmp', # idem for GMP
- 'http://ftpmirror.gnu.org/gnu/mpfr', # idem for MPFR
- 'http://ftpmirror.gnu.org/gnu/mpc/', # idem for MPC
-]
-sources = [
- SOURCELOWER_TAR_GZ,
- 'gmp-5.1.3.tar.bz2',
- 'mpfr-3.1.2.tar.gz',
- 'mpc-1.0.1.tar.gz',
-]
-
-patches = ['mpfr-3.1.0-changes_fix.patch']
-
-checksums = [
- 'f07a9c4078dbccdcc18bc840ab5e0fe9', # gcc-4.7.4.tar.gz
- 'a082867cbca5e898371a97bb27b31fea', # gmp-5.1.3.tar.bz2
- '181aa7bb0e452c409f2788a4a7f38476', # mpfr-3.1.2.tar.gz
- 'b32a2e1a3daa392372fbd586d1ed3679', # mpc-1.0.1.tar.gz
- 'fa4095252d843d465ac9aa5e2d760dd8', # mpfr-3.1.0-changes_fix.patch
-]
-
-languages = ['c', 'c++', 'fortran']
-
-# building GCC sometimes fails if make parallelism is too high, so let's limit it
-maxparallel = 4
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GD/GD-2.52-ictce-5.5.0-Perl-5.18.2.eb b/easybuild/easyconfigs/__archive__/g/GD/GD-2.52-ictce-5.5.0-Perl-5.18.2.eb
deleted file mode 100644
index 020c907d431..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GD/GD-2.52-ictce-5.5.0-Perl-5.18.2.eb
+++ /dev/null
@@ -1,25 +0,0 @@
-easyblock = 'PerlModule'
-
-name = 'GD'
-version = '2.52'
-
-homepage = 'http://search.cpan.org/~lds/GD/'
-description = """GD.pm - Interface to Gd Graphics Library"""
-
-toolchain = {'name': 'ictce', 'version': '5.5.0'}
-
-source_urls = ['http://cpan.metacpan.org/authors/id/L/LD/LDS/']
-sources = [SOURCE_TAR_GZ]
-
-perl = 'Perl'
-perlver = '5.18.2'
-versionsuffix = '-%s-%s' % (perl, perlver)
-
-dependencies = [
- (perl, perlver),
- ('libgd', '2.1.0'),
- ('libpng', '1.6.10'),
- ('libjpeg-turbo', '1.3.1'),
-]
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-1.10.1-intel-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-1.10.1-intel-2015b-Python-2.7.10.eb
deleted file mode 100644
index 5eee8417931..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-1.10.1-intel-2015b-Python-2.7.10.eb
+++ /dev/null
@@ -1,54 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'GDAL'
-version = '1.10.1'
-
-homepage = 'http://www.gdal.org/'
-description = """GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style
- Open Source license by the Open Source Geospatial Foundation. As a library, it presents a single abstract data model
- to the calling application for all supported formats. It also comes with a variety of useful commandline utilities for
- data translation and processing."""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['http://download.osgeo.org/gdal/%(version)s/']
-sources = [SOURCELOWER_TAR_XZ]
-
-patches = ['GDAL-%(version)s-python.patch']
-
-pyver = '2.7.10'
-pyshortver = '.'.join(pyver.split('.')[0:2])
-versionsuffix = '-%s-%s' % ('Python', pyver)
-
-dependencies = [
- ('Python', pyver),
- ('netCDF', '4.3.2'),
- ('expat', '2.1.0'),
- ('GEOS', '3.5.0', versionsuffix),
- ('SQLite', '3.8.10.2'),
- ('libxml2', '2.9.3', versionsuffix),
- ('libpng', '1.6.18'),
- ('libjpeg-turbo', '1.4.2'),
- ('JasPer', '1.900.1'),
- ('LibTIFF', '4.0.3'),
- ('zlib', '1.2.8'),
- ('cURL', '7.43.0'),
- ('PCRE', '8.37'),
-]
-
-configopts = '--with-expat=$EBROOTEXPAT --with-libz=$EBROOTLIBZ --with-hdf5=$EBROOTHDF5 --with-netcdf=$EBROOTNETCDF'
-configopts += ' --with-xml2=$EBROOTLIBXML2 --with-geos=$EBROOTGEOS/bin/geos-config --with-jpeg=$EBROOTLIBJPEGMINTURBO'
-configopts += ' --with-png=$EBROOTLIBPNG --with-sqlite3=$EBROOTSQLITE --with-jasper=$EBROOTJASPER'
-configopts += ' --with-libtiff=$EBROOTLIBTIFF --with-pcre=$EBROOTPCRE --with-python=$EBROOTPYTHON/bin/python'
-# there is a bug in the build system causing the build with libtool to fail for the moment
-# (static library is also missing because of this)
-configopts += ' --without-libtool'
-
-modextrapaths = {'PYTHONPATH': 'lib/python%s/site-packages' % pyshortver}
-
-sanity_check_paths = {
- 'files': ['lib/libgdal.%s' % SHLIB_EXT],
- 'dirs': ['bin', 'include']
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-1.9.2-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-1.9.2-goolf-1.4.10.eb
deleted file mode 100644
index fa9ab627f31..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-1.9.2-goolf-1.4.10.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'GDAL'
-version = '1.9.2'
-
-homepage = 'http://www.gdal.org/'
-description = """GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style
- Open Source license by the Open Source Geospatial Foundation. As a library, it presents a single abstract data model
- to the calling application for all supported formats. It also comes with a variety of useful commandline utilities for
- data translation and processing."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://download.osgeo.org/gdal/']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('zlib', '1.2.7')]
-
-sanity_check_paths = {
- 'files': ['lib/libgdal.%s' % SHLIB_EXT, 'lib/libgdal.a'],
- 'dirs': ['bin', 'include']
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-1.9.2-goolf-1.5.16.eb b/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-1.9.2-goolf-1.5.16.eb
deleted file mode 100644
index 9be42926e7d..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-1.9.2-goolf-1.5.16.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'GDAL'
-version = '1.9.2'
-
-homepage = 'http://www.gdal.org/'
-description = """GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style
- Open Source license by the Open Source Geospatial Foundation. As a library, it presents a single abstract data model
- to the calling application for all supported formats. It also comes with a variety of useful commandline utilities for
- data translation and processing."""
-
-toolchain = {'name': 'goolf', 'version': '1.5.16'}
-
-source_urls = ['http://download.osgeo.org/gdal/']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('zlib', '1.2.8')]
-
-sanity_check_paths = {
- 'files': ['lib/libgdal.%s' % SHLIB_EXT, 'lib/libgdal.a'],
- 'dirs': ['bin', 'include']
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-1.9.2-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-1.9.2-ictce-5.3.0.eb
deleted file mode 100644
index 024ded503c2..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-1.9.2-ictce-5.3.0.eb
+++ /dev/null
@@ -1,24 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'GDAL'
-version = '1.9.2'
-
-homepage = 'http://www.gdal.org/'
-description = """GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style
- Open Source license by the Open Source Geospatial Foundation. As a library, it presents a single abstract data model
- to the calling application for all supported formats. It also comes with a variety of useful commandline utilities for
- data translation and processing."""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['http://download.osgeo.org/gdal/']
-sources = [SOURCELOWER_TAR_GZ]
-
-dependencies = [('zlib', '1.2.7')]
-
-sanity_check_paths = {
- 'files': ['lib/libgdal.%s' % SHLIB_EXT, 'lib/libgdal.a'],
- 'dirs': ['bin', 'include']
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-2.0.0-intel-2015a.eb b/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-2.0.0-intel-2015a.eb
deleted file mode 100644
index dbff74b1105..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-2.0.0-intel-2015a.eb
+++ /dev/null
@@ -1,29 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'GDAL'
-version = '2.0.0'
-
-homepage = 'http://www.gdal.org/'
-description = """GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style
- Open Source license by the Open Source Geospatial Foundation. As a library, it presents a single abstract data model
- to the calling application for all supported formats. It also comes with a variety of useful commandline utilities for
- data translation and processing."""
-
-toolchain = {'name': 'intel', 'version': '2015a'}
-
-source_urls = ['http://download.osgeo.org/gdal/%(version)s/']
-sources = [SOURCELOWER_TAR_XZ]
-
-dependencies = [
- ('netCDF', '4.3.3.1'),
- ('expat', '2.1.0'),
- ('libxml2', '2.9.2'),
- ('zlib', '1.2.8'),
-]
-
-sanity_check_paths = {
- 'files': ['lib/libgdal.%s' % SHLIB_EXT, 'lib/libgdal.a'],
- 'dirs': ['bin', 'include']
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-2.0.1-foss-2015a.eb b/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-2.0.1-foss-2015a.eb
deleted file mode 100644
index 001e2879dae..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-2.0.1-foss-2015a.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'GDAL'
-version = '2.0.1'
-
-homepage = 'http://www.gdal.org/'
-description = """GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style
- Open Source license by the Open Source Geospatial Foundation. As a library, it presents a single abstract data model
- to the calling application for all supported formats. It also comes with a variety of useful commandline utilities for
- data translation and processing."""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-toolchainopts = {'opt': True, 'usempi': True}
-
-source_urls = ['http://download.osgeo.org/gdal/%(version)s/']
-sources = [SOURCELOWER_TAR_XZ]
-
-dependencies = [
- ('KEALib', '1.4.4'),
- ('netCDF', '4.3.3.1'),
- ('HDF5', '1.8.16'),
- ('expat', '2.1.0'),
- ('libxml2', '2.9.3'),
- ('zlib', '1.2.8'),
-]
-
-sanity_check_paths = {
- 'files': ['lib/libgdal.%s' % SHLIB_EXT, 'lib/libgdal.a'],
- 'dirs': ['bin', 'include']
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-2.0.1-foss-2015b.eb b/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-2.0.1-foss-2015b.eb
deleted file mode 100644
index 304e10cc995..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GDAL/GDAL-2.0.1-foss-2015b.eb
+++ /dev/null
@@ -1,30 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'GDAL'
-version = '2.0.1'
-
-homepage = 'http://www.gdal.org/'
-description = """GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style
- Open Source license by the Open Source Geospatial Foundation. As a library, it presents a single abstract data model
- to the calling application for all supported formats. It also comes with a variety of useful commandline utilities for
- data translation and processing."""
-
-toolchain = {'name': 'foss', 'version': '2015b'}
-toolchainopts = {'usempi': True}
-
-source_urls = ['http://download.osgeo.org/gdal/%(version)s/']
-sources = [SOURCELOWER_TAR_XZ]
-
-dependencies = [
- ('netCDF', '4.3.3.1'),
- ('expat', '2.1.0'),
- ('libxml2', '2.9.2'),
- ('zlib', '1.2.8'),
-]
-
-sanity_check_paths = {
- 'files': ['lib/libgdal.%s' % SHLIB_EXT, 'lib/libgdal.a'],
- 'dirs': ['bin', 'include']
-}
-
-moduleclass = 'data'
diff --git a/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-goolf-1.4.10.eb
deleted file mode 100644
index 03c1be68ac2..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.5.1-goolf-1.4.10.eb
+++ /dev/null
@@ -1,33 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
-# Authors:: Fotis Georgatos
-# License:: MIT/GPL
-# $Id$
-#
-# This work implements a part of the HPCBIOS project and is a component of the policy:
-# http://hpcbios.readthedocs.org/en/latest/HPCBIOS_06-05.html
-##
-
-easyblock = 'ConfigureMake'
-
-name = 'GDB'
-version = '7.5.1'
-
-homepage = 'http://www.gnu.org/software/gdb/gdb.html'
-description = "GDB-7.5.1: The GNU Project Debugger"
-
-sources = [SOURCELOWER_TAR_BZ2]
-source_urls = [GNU_SOURCE]
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-dependencies = [('ncurses', '5.9')]
-
-sanity_check_paths = {
- 'files': ['bin/gdb', 'bin/gdbserver'],
- 'dirs': [],
-}
-
-moduleclass = 'debugger'
diff --git a/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.8-intel-2014b.eb b/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.8-intel-2014b.eb
deleted file mode 100644
index c2447f730c4..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GDB/GDB-7.8-intel-2014b.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'GDB'
-version = '7.8'
-
-homepage = 'http://www.gnu.org/software/gdb/gdb.html'
-description = "The GNU Project Debugger"
-
-sources = [SOURCELOWER_TAR_XZ]
-source_urls = [GNU_SOURCE]
-
-toolchain = {'name': 'intel', 'version': '2014b'}
-
-dependencies = [('ncurses', '5.9')]
-
-parallel = 1
-
-sanity_check_paths = {
- 'files': ['bin/gdb', 'bin/gdbserver'],
- 'dirs': [],
-}
-
-moduleclass = 'debugger'
diff --git a/easybuild/easyconfigs/__archive__/g/GEMSTAT/GEMSTAT-1.0-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/g/GEMSTAT/GEMSTAT-1.0-goolf-1.4.10.eb
deleted file mode 100644
index 4bfe15af380..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GEMSTAT/GEMSTAT-1.0-goolf-1.4.10.eb
+++ /dev/null
@@ -1,41 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# Swiss Institute of Bioinformatics
-# Biozentrum - University of Basel
-
-easyblock = 'MakeCp'
-
-name = 'GEMSTAT'
-version = '1.0'
-
-homepage = 'http://veda.cs.uiuc.edu/Seq2Expr/'
-description = """ thermodynamics-based model to predict gene expression driven by any
- DNA sequence, as a function of transcription factor concentrations and their DNA-binding
- specificities. """
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://veda.cs.uiuc.edu/Seq2Expr/']
-sources = ['%(namelower)s.tar.gz']
-
-dependencies = [('GSL', '1.16')]
-
-start_dir = "src"
-
-patches = ['Gemstat-missing-includes.patch']
-
-parallel = 1
-
-buildopts = ' GSL_DIR=$EBROOTGSL'
-
-files_to_copy = [
- (["seq2expr"], 'bin'),
- "README.txt", "data"
-]
-
-sanity_check_paths = {
- 'files': ["bin/seq2expr", "README.txt"],
- 'dirs': ["data"],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/g/GEOS/GEOS-3.3.5-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/g/GEOS/GEOS-3.3.5-goolf-1.4.10.eb
deleted file mode 100644
index dc750d20203..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GEOS/GEOS-3.3.5-goolf-1.4.10.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'GEOS'
-version = '3.3.5'
-
-homepage = 'http://trac.osgeo.org/geos'
-description = """GEOS (Geometry Engine - Open Source) is a C++ port of the Java Topology Suite (JTS)"""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://download.osgeo.org/geos/']
-sources = [SOURCELOWER_TAR_BZ2]
-
-sanity_check_paths = {
- 'files': ['bin/geos-config', 'lib/libgeos.so', 'lib/libgeos.a', 'include/geos.h'],
- 'dirs': []
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/g/GEOS/GEOS-3.3.5-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/g/GEOS/GEOS-3.3.5-ictce-5.3.0.eb
deleted file mode 100644
index 7d45ab8ba72..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GEOS/GEOS-3.3.5-ictce-5.3.0.eb
+++ /dev/null
@@ -1,19 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'GEOS'
-version = '3.3.5'
-
-homepage = 'http://trac.osgeo.org/geos'
-description = """GEOS (Geometry Engine - Open Source) is a C++ port of the Java Topology Suite (JTS)"""
-
-toolchain = {'name': 'ictce', 'version': '5.3.0'}
-
-source_urls = ['http://download.osgeo.org/geos/']
-sources = [SOURCELOWER_TAR_BZ2]
-
-sanity_check_paths = {
- 'files': ['bin/geos-config', 'lib/libgeos.so', 'lib/libgeos.a', 'include/geos.h'],
- 'dirs': []
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/g/GEOS/GEOS-3.5.0-foss-2015a-Python-2.7.11.eb b/easybuild/easyconfigs/__archive__/g/GEOS/GEOS-3.5.0-foss-2015a-Python-2.7.11.eb
deleted file mode 100644
index acdde9dd040..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GEOS/GEOS-3.5.0-foss-2015a-Python-2.7.11.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'GEOS'
-version = '3.5.0'
-
-homepage = 'http://trac.osgeo.org/geos'
-description = """GEOS (Geometry Engine - Open Source) is a C++ port of the Java Topology Suite (JTS)"""
-
-toolchain = {'name': 'foss', 'version': '2015a'}
-
-source_urls = ['http://download.osgeo.org/geos/']
-sources = [SOURCELOWER_TAR_BZ2]
-
-pyver = '2.7.11'
-pyshortver = '.'.join(pyver.split('.')[0:2])
-versionsuffix = '-Python-%s' % pyver
-
-dependencies = [('Python', pyver)]
-
-builddependencies = [('SWIG', '3.0.8', versionsuffix)]
-
-configopts = '--enable-python'
-
-modextrapaths = {'PYTHONPATH': 'lib/python%s/site-packages' % pyshortver}
-
-sanity_check_paths = {
- 'files': ['bin/geos-config', 'lib/libgeos.%s' % SHLIB_EXT, 'lib/libgeos.a', 'include/geos.h'],
- 'dirs': ['lib/python%s/site-packages/geos' % pyshortver]
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/g/GEOS/GEOS-3.5.0-intel-2015b-Python-2.7.10.eb b/easybuild/easyconfigs/__archive__/g/GEOS/GEOS-3.5.0-intel-2015b-Python-2.7.10.eb
deleted file mode 100644
index 35073f5ad2c..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GEOS/GEOS-3.5.0-intel-2015b-Python-2.7.10.eb
+++ /dev/null
@@ -1,31 +0,0 @@
-easyblock = 'ConfigureMake'
-
-name = 'GEOS'
-version = '3.5.0'
-
-homepage = 'http://trac.osgeo.org/geos'
-description = """GEOS (Geometry Engine - Open Source) is a C++ port of the Java Topology Suite (JTS)"""
-
-toolchain = {'name': 'intel', 'version': '2015b'}
-
-source_urls = ['http://download.osgeo.org/geos/']
-sources = [SOURCELOWER_TAR_BZ2]
-
-pyver = '2.7.10'
-pyshortver = '.'.join(pyver.split('.')[0:2])
-versionsuffix = '-Python-%s' % pyver
-
-dependencies = [('Python', pyver)]
-
-builddependencies = [('SWIG', '3.0.7', versionsuffix)]
-
-configopts = '--enable-python'
-
-modextrapaths = {'PYTHONPATH': 'lib/python%s/site-packages' % pyshortver}
-
-sanity_check_paths = {
- 'files': ['bin/geos-config', 'lib/libgeos.%s' % SHLIB_EXT, 'lib/libgeos.a', 'include/geos.h'],
- 'dirs': ['lib/python%s/site-packages/geos' % pyshortver]
-}
-
-moduleclass = 'math'
diff --git a/easybuild/easyconfigs/__archive__/g/GFOLD/GFOLD-1.1.4-goolf-1.7.20.eb b/easybuild/easyconfigs/__archive__/g/GFOLD/GFOLD-1.1.4-goolf-1.7.20.eb
deleted file mode 100644
index f2c4bc1afd4..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GFOLD/GFOLD-1.1.4-goolf-1.7.20.eb
+++ /dev/null
@@ -1,34 +0,0 @@
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-# Author: Pablo Escobar Lopez
-# sciCORE - University of Basel
-# SIB Swiss Institute of Bioinformatics
-
-easyblock = 'MakeCp'
-
-name = 'GFOLD'
-version = '1.1.4'
-
-homepage = 'http://www.tongji.edu.cn/~zhanglab/GFOLD/index.html'
-description = 'Generalized fold change for ranking differentially expressed genes from RNA-seq data'
-
-toolchain = {'name': 'goolf', 'version': '1.7.20'}
-
-source_urls = ['https://bitbucket.org/feeldead/gfold/downloads/']
-sources = ['%(namelower)s.V%(version)s.tar.gz']
-
-patches = ['gfold-%(version)s-makefile.patch']
-
-dependencies = [
- ('GSL', '1.16'),
-]
-
-files_to_copy = [(['gfold'], 'bin'), 'README', 'doc']
-
-parallel = 1
-
-sanity_check_paths = {
- 'files': ['bin/gfold'],
- 'dirs': [],
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/g/GHC/GHC-7.4.2-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/g/GHC/GHC-7.4.2-goolf-1.4.10.eb
deleted file mode 100644
index 2f7b37d7ff4..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GHC/GHC-7.4.2-goolf-1.4.10.eb
+++ /dev/null
@@ -1,23 +0,0 @@
-name = 'GHC'
-version = '7.4.2'
-
-homepage = 'http://haskell.org/ghc/'
-description = """The Glorious/Glasgow Haskell Compiler"""
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-toolchainopts = {'pic': True}
-
-sources = ['%(namelower)s-%(version)s-src.tar.bz2']
-source_urls = ['http://www.haskell.org/ghc/dist/%(version)s/']
-
-dependencies = [
- ('GMP', '5.0.5'),
- ('zlib', '1.2.7'),
- ('ncurses', '5.9'),
-]
-
-builddependencies = [
- ('GHC', '6.12.3', '', True),
- ('libxslt', '1.1.28'),
-]
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GHC/GHC-7.6.2-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/g/GHC/GHC-7.6.2-goolf-1.4.10.eb
deleted file mode 100644
index 60a039090d6..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GHC/GHC-7.6.2-goolf-1.4.10.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-name = 'GHC'
-version = '7.6.2'
-
-homepage = 'http://www.haskell.org/ghc'
-description = """GHC is the Glasgow Haskell Compiler."""
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = ['%(namelower)s-%(version)s-src.tar.bz2']
-source_urls = ['http://www.haskell.org/ghc/dist/%(version)s/']
-
-dependencies = [
- ('GMP', '5.0.5'),
- ('zlib', '1.2.7'),
- ('ncurses', '5.9'),
-]
-
-builddependencies = [
- ('GHC', '7.4.2'),
- ('libxslt', '1.1.28'),
-]
-
-configopts = " --enable-error-on-warning=no"
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['ghc', 'ghc-%(version)s', 'ghci', 'ghci-%(version)s', 'ghc-pkg',
- 'ghc-pkg-%(version)s', 'haddock', 'haddock-ghc-%(version)s',
- 'hp2ps', 'hpc', 'hsc2hs', 'runghc', 'runghc-%(version)s',
- 'runhaskell']],
- 'dirs': [],
-}
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GHC/GHC-7.8.3-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/g/GHC/GHC-7.8.3-goolf-1.4.10.eb
deleted file mode 100644
index 1a594faa37a..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GHC/GHC-7.8.3-goolf-1.4.10.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-name = 'GHC'
-version = '7.8.3'
-
-homepage = 'http://www.haskell.org/ghc'
-description = """GHC is the Glasgow Haskell Compiler."""
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-sources = ['%(namelower)s-%(version)s-src.tar.bz2']
-source_urls = ['http://www.haskell.org/ghc/dist/%(version)s/']
-
-dependencies = [
- ('GMP', '5.0.5'),
- ('zlib', '1.2.7'),
- ('ncurses', '5.9'),
-]
-
-builddependencies = [
- ('GHC', '7.4.2'),
- ('libxslt', '1.1.28'),
-]
-
-configopts = " --enable-error-on-warning=no"
-
-sanity_check_paths = {
- 'files': ["bin/%s" % x for x in ['ghc', 'ghc-%(version)s', 'ghci', 'ghci-%(version)s', 'ghc-pkg',
- 'ghc-pkg-%(version)s', 'haddock', 'haddock-ghc-%(version)s',
- 'hp2ps', 'hpc', 'hsc2hs', 'runghc', 'runghc-%(version)s',
- 'runhaskell']],
- 'dirs': [],
-}
-
-moduleclass = 'compiler'
diff --git a/easybuild/easyconfigs/__archive__/g/GLIMMER/GLIMMER-3.02b-goolf-1.4.10.eb b/easybuild/easyconfigs/__archive__/g/GLIMMER/GLIMMER-3.02b-goolf-1.4.10.eb
deleted file mode 100644
index 9224bccf7f9..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GLIMMER/GLIMMER-3.02b-goolf-1.4.10.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2013 The Cyprus Institute
-# Authors:: Andreas Panteli , Thekla Loizou
-# License:: MIT/GPL
-#
-##
-easyblock = 'MakeCp'
-
-name = "GLIMMER"
-version = "3.02b"
-
-homepage = 'http://www.cbcb.umd.edu/software/glimmer/'
-description = """Glimmer is a system for finding genes in microbial DNA, especially
-the genomes of bacteria, archaea, and viruses."""
-
-toolchain = {'name': 'goolf', 'version': '1.4.10'}
-
-source_urls = ['http://www.cbcb.umd.edu/software/glimmer']
-sources = ['%%(namelower)s%s.tar.gz' % ''.join(version.split('.'))]
-
-buildopts = '-C ./src'
-
-files_to_copy = ["bin", "docs", "glim302notes.pdf", "lib", "LICENSE", "sample-run", "scripts"]
-
-sanity_check_paths = {
- 'files': ["bin/glimmer3", "glim302notes.pdf", "LICENSE"],
- 'dirs': ["docs", "lib", "sample-run", "scripts"]
-}
-
-moduleclass = 'bio'
diff --git a/easybuild/easyconfigs/__archive__/g/GLIMMER/GLIMMER-3.02b-ictce-5.3.0.eb b/easybuild/easyconfigs/__archive__/g/GLIMMER/GLIMMER-3.02b-ictce-5.3.0.eb
deleted file mode 100644
index 90a24de0cf2..00000000000
--- a/easybuild/easyconfigs/__archive__/g/GLIMMER/GLIMMER-3.02b-ictce-5.3.0.eb
+++ /dev/null
@@ -1,32 +0,0 @@
-##
-# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
-#
-# Copyright:: Copyright 2012-2013 The Cyprus Institute
-# Authors:: Andreas Panteli