Skip to content

Commit

Permalink
Merge pull request #572 from boegel/eb20
Browse files Browse the repository at this point in the history
bump to v2.0.0 + update release notes
  • Loading branch information
boegel committed Mar 6, 2015
2 parents 185c4ed + 5cbd967 commit efcc798
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 6 deletions.
45 changes: 41 additions & 4 deletions RELEASE_NOTES
Expand Up @@ -3,7 +3,44 @@ For more detailed information, please see the git log.

These release notes can also be consulted at http://easybuild.readthedocs.org/en/latest/Release_notes.html.

The latest version of easybuild-easyblocks provides 141 software-specific easyblocks and 20 generic easyblocks.
The latest version of easybuild-easyblocks provides 143 software-specific easyblocks and 21 generic easyblocks.


v2.0.0 (March 6th 2015)
-----------------------

feature + bugfix release
- one new generic easyblock for installing a bundle of modules: Bundle (#550)
- and let the Toolchain generic easyblock derive from Bundle
- new easyblocks for 2 software packages that require customized support:
- GAMESS-US (#470, #544, #558), Hadoop (#563)
- various other enhancements, including:
- move support for staged_install from CPLEX easyblock to generic Binary easyblock (#502)
- fix sanity check in picard easyblock for v1.119 that doesn't include sam.jar (#522)
- log warning message when unlinking jellyfish symlink fails in Trinity easyblock (#534)
- revamp EB_libint2 easyblock into EB_Libint that works for both Libint v1x and v2.x (#536)
- update CP2K easyblock for recent versions (no more 'fes') (#537)
- update SuiteSparse easyblock for recent versions (#541)
- fix easyblock unit tests after dropping support for deprecated behaviour in framework (#543)
- rework PSI easyblock to support future releases (#545)
- enable always generating a 'verbose' Makefile in the generic CMakeMake easyblock (#546)
- remove functionality in (generic) easyblocks that was deprecated for EasyBuild v2.0 (#547)
- enhance generic RPackage easyblock to support installing extensions in a separate prefix (#551)
- deprecate GenomeAnalysisTK easyblock, since it's basically equivalent to Tarball (#557)
- update SAMtools easyblock for v1.2 (#562)
- take preconfigopts easyconfig parameter into account in ROOT easyblock (#566)
- update easyblock for installing EasyBuild
- to support bootstrapping with provided source tarballs (#559)
- to also cover vsc-base dependency, and verify easy-install.pth (#567)
- update disabling sanitizer tests for Clang 3.6 (#570)
- various bug fixes, including:
- fix handling of LTO in GCC easyblock (#535)
- relocate FDTD RPM to fix installation on SL6 (#538)

v1.16.2 (March 6th 2015)
------------------------

- make EB_EasyBuildMeta easyblock aware of vsc-base to make upgrading to EasyBuild v2.0.0 possible (#573)

v1.16.1 (December 19th 2014)
----------------------------
Expand All @@ -14,7 +51,7 @@ v1.16.0 (December 18th 2014)
----------------------------

feature + bugfix release
- new easyblocks for 2 software packages that requires customized support:
- new easyblocks for 2 software packages that require customized support:
- Chimera (#524), GATE (#518)
- fix use of deprecated functionality, enhance unit tests to check for it (#523)
- various other enhancements, including:
Expand Down Expand Up @@ -60,7 +97,7 @@ v1.15.0 (September 12th 2014)
-----------------------------

feature + bugfix release
- added support for 2 new software packages that requires customized support: Modeller (#392), NAMD (#397)
- added support for 2 new software packages that require customized support: Modeller (#392), NAMD (#397)
- various enhancements, including:
- fix locale used for running Perl unit tests (#425)
- fix Rmpi easyblock to correctly configure for Intel MPI (#435)
Expand All @@ -85,7 +122,7 @@ v1.14.0 (July 9th 2014)

feature + bugfix release
- added one new generic easyblock: CmdCp (#395)
- added support for 2 new software packages that requires customized support: ANSYS (#398), HPCG (#408)
- added support for 2 new software packages that require customized support: ANSYS (#398), HPCG (#408)
- various enhancements, including:
- updated ABAQUS easyblock so that it works for version 13.2 (#406)
- enhance BLAT easyblock by using super's build_step and prebuildopts/buildopts (#423)
Expand Down
2 changes: 1 addition & 1 deletion easybuild/easyblocks/__init__.py
Expand Up @@ -33,7 +33,7 @@

# note: release candidates should be versioned as a pre-release, e.g. "1.1rc1"
# 1.1-rc1 would indicate a post-release, i.e., and update of 1.1, so beware
VERSION = LooseVersion("2.0.0dev")
VERSION = LooseVersion("2.0.0")
UNKNOWN = "UNKNOWN"


Expand Down
3 changes: 2 additions & 1 deletion easybuild/easyblocks/e/easybuildmeta.py
Expand Up @@ -81,7 +81,8 @@ def install_step(self):
for pkg in self.easybuild_pkgs:
seldirs = [x for x in subdirs if x.startswith(pkg)]
if not len(seldirs) == 1:
self.log.error("Failed to find EasyBuild %s package (subdirs: %s, seldirs: %s)" % (pkg, subdirs, seldirs))
tup = (pkg, subdirs, seldirs)
self.log.error("Failed to find EasyBuild %s package (subdirs: %s, seldirs: %s)" % tup)

self.log.debug("Installing EasyBuild package %s" % pkg)
os.chdir(os.path.join(self.builddir, seldirs[0]))
Expand Down

0 comments on commit efcc798

Please sign in to comment.