summaryrefslogtreecommitdiffstats
path: root/espresso
diff options
context:
space:
mode:
Diffstat (limited to 'espresso')
-rw-r--r--espresso/1056.patch214
-rw-r--r--espresso/espresso-8a021f5e8b1d508f356f4419d360bd9dfb7fec2c.tar.gzbin23621395 -> 0 bytes
-rw-r--r--espresso/espresso.spec320
3 files changed, 0 insertions, 534 deletions
diff --git a/espresso/1056.patch b/espresso/1056.patch
deleted file mode 100644
index f9343e1..0000000
--- a/espresso/1056.patch
+++ /dev/null
@@ -1,214 +0,0 @@
-From 41ed46726836f1dd654d9c771127f9c14c2304a3 Mon Sep 17 00:00:00 2001
-From: Christoph Junghans <junghans@votca.org>
-Date: Fri, 3 Mar 2017 16:05:45 -0700
-Subject: [PATCH] cmake: install all shared libs in back in libdir
-
-some libraries weren't installed and the python module path
-isn't in the LD_LIBRARY_PATH and hence partly revert
-80ad49e954f4a6590707fd86e4fd586682ad626d
----
- CMakeLists.txt | 8 ++++++++
- src/core/CMakeLists.txt | 6 ++++--
- src/core/actor/CMakeLists.txt | 6 ++++--
- src/core/constraints/CMakeLists.txt | 2 ++
- src/core/correlators/CMakeLists.txt | 2 ++
- src/core/immersed_boundary/CMakeLists.txt | 6 ++++--
- src/core/object-in-fluid/CMakeLists.txt | 3 ++-
- src/core/observables/CMakeLists.txt | 2 ++
- src/core/scafacos/CMakeLists.txt | 2 +-
- src/core/shapes/CMakeLists.txt | 2 ++
- src/core/utils/CMakeLists.txt | 2 ++
- src/script_interface/CMakeLists.txt | 2 ++
- 12 files changed, 35 insertions(+), 8 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index cf49c40..8b20b57 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -25,6 +25,10 @@ project(ESPResSo)
- enable_language(CXX)
-
- set(PROJECT_VERSION "4.0-dev")
-+string(REGEX REPLACE "^([1-9]+)\\.[0-9]+.*$" "\\1" SOVERSION "${PROJECT_VERSION}")
-+if (NOT ${SOVERSION} MATCHES "^[1-9]+$")
-+ message(FATAL_ERROR "Could not determind SOVERSION from ${PROJECT_VERSION}")
-+endif (NOT ${SOVERSION} MATCHES "^[1-9]+$")
-
- ######################################################################
- # CMake internal vars
-@@ -238,6 +242,10 @@ if (NOT DEFINED DATA)
- set(DATA "share/espresso")
- endif(NOT DEFINED DATA)
-
-+if (NOT DEFINED LIBDIR)
-+ set(LIBDIR "lib")
-+endif(NOT DEFINED LIBDIR)
-+
- if (NOT DEFINED BINDIR)
- set(BINDIR "bin")
- endif(NOT DEFINED BINDIR)
-diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt
-index 9982a54..1ff96ed 100644
---- a/src/core/CMakeLists.txt
-+++ b/src/core/CMakeLists.txt
-@@ -23,7 +23,8 @@ add_custom_target(EspressoConfig DEPENDS config-features.hpp config-features.cpp
- add_dependencies(EspressoConfig myconfig)
-
- add_library(EspressoCore SHARED ${EspressoCore_SRC} config-features.cpp config-version.cpp)
--install(TARGETS EspressoCore LIBRARY DESTINATION ${PYTHON_INSTDIR})
-+install(TARGETS EspressoCore LIBRARY DESTINATION ${LIBDIR})
-+set_target_properties(EspressoCore PROPERTIES SOVERSION ${SOVERSION})
- add_dependencies(EspressoCore EspressoConfig)
-
- target_link_libraries(EspressoCore ${LIBRARIES} Actor ObjectInFluid ImmersedBoundary Shapes Constraints EspressoUtils Correlators Observables)
-@@ -43,7 +44,8 @@ if(CUDA)
- cuda_include_directories(${CMAKE_CURRENT_BINARY_DIR})
-
- cuda_add_library(EspressoCuda SHARED ${EspressoCuda_SRC})
-- install(TARGETS EspressoCuda DESTINATION ${PYTHON_INSTDIR})
-+ install(TARGETS EspressoCuda DESTINATION ${LIBDIR})
-+ set_target_properties(EspressoCuda PROPERTIES SOVERSION ${SOVERSION})
- add_dependencies(EspressoCuda EspressoConfig)
-
- set_target_properties(EspressoCuda PROPERTIES MACOSX_RPATH TRUE)
-diff --git a/src/core/actor/CMakeLists.txt b/src/core/actor/CMakeLists.txt
-index 0421243..274c412 100644
---- a/src/core/actor/CMakeLists.txt
-+++ b/src/core/actor/CMakeLists.txt
-@@ -1,7 +1,8 @@
- file(GLOB Actor_SRC *.cpp)
-
- add_library(Actor SHARED ${Actor_SRC})
--install(TARGETS Actor LIBRARY DESTINATION ${PYTHON_INSTDIR} ARCHIVE DESTINATION ${PYTHON_INSTDIR})
-+install(TARGETS Actor LIBRARY DESTINATION ${LIBDIR} ARCHIVE DESTINATION ${LIBDIR})
-+set_target_properties(Actor PROPERTIES SOVERSION ${SOVERSION})
- add_dependencies(Actor EspressoConfig)
-
- set_target_properties(Actor PROPERTIES MACOSX_RPATH TRUE)
-@@ -9,7 +10,8 @@ set_target_properties(Actor PROPERTIES MACOSX_RPATH TRUE)
- if(CUDA)
- file(GLOB ActorCuda_SRC *.cu)
- cuda_add_library(ActorCuda SHARED ${ActorCuda_SRC})
-- install(TARGETS ActorCuda DESTINATION ${PYTHON_INSTDIR})
-+ install(TARGETS ActorCuda DESTINATION ${LIBDIR})
-+ set_target_properties(ActorCuda PROPERTIES SOVERSION ${SOVERSION})
- add_dependencies(ActorCuda EspressoConfig)
-
- add_dependencies(Actor ActorCuda)
-diff --git a/src/core/constraints/CMakeLists.txt b/src/core/constraints/CMakeLists.txt
-index 0f5c043..5bb414c 100644
---- a/src/core/constraints/CMakeLists.txt
-+++ b/src/core/constraints/CMakeLists.txt
-@@ -1,4 +1,6 @@
- file(GLOB Constraints_SRC Constraint.cpp)
- add_library(Constraints SHARED ${Constraints_SRC})
-+install(TARGETS Constraints LIBRARY DESTINATION ${LIBDIR})
-+set_target_properties(Constraints PROPERTIES SOVERSION ${SOVERSION})
- add_dependencies(Constraints EspressoConfig)
- set_target_properties(Constraints PROPERTIES MACOSX_RPATH TRUE)
-diff --git a/src/core/correlators/CMakeLists.txt b/src/core/correlators/CMakeLists.txt
-index c5ff02f..3eaf37f 100644
---- a/src/core/correlators/CMakeLists.txt
-+++ b/src/core/correlators/CMakeLists.txt
-@@ -1,4 +1,6 @@
- file(GLOB Correlators_SRC *.?pp)
- add_library(Correlators SHARED ${Correlators_SRC})
-+install(TARGETS Correlators LIBRARY DESTINATION ${LIBDIR})
-+set_target_properties(Correlators PROPERTIES SOVERSION ${SOVERSION})
- add_dependencies(Correlators EspressoConfig)
- set_target_properties(Correlators PROPERTIES MACOSX_RPATH TRUE)
-diff --git a/src/core/immersed_boundary/CMakeLists.txt b/src/core/immersed_boundary/CMakeLists.txt
-index ec7fb85..d41473e 100644
---- a/src/core/immersed_boundary/CMakeLists.txt
-+++ b/src/core/immersed_boundary/CMakeLists.txt
-@@ -1,13 +1,15 @@
- file(GLOB ImmersedBoundary_SRC *.cpp)
- add_library(ImmersedBoundary SHARED ${ImmersedBoundary_SRC})
- set_target_properties(ImmersedBoundary PROPERTIES MACOSX_RPATH TRUE)
--install(TARGETS ImmersedBoundary LIBRARY DESTINATION ${PYTHON_INSTDIR} ARCHIVE DESTINATION ${PYTHON_INSTDIR})
-+install(TARGETS ImmersedBoundary LIBRARY DESTINATION ${LIBDIR} ARCHIVE DESTINATION ${LIBDIR})
-+set_target_properties(ImmersedBoundary PROPERTIES SOVERSION ${SOVERSION})
- add_dependencies(ImmersedBoundary EspressoConfig)
-
- if(CUDA)
- file(GLOB ImmersedBoundaryCuda_SRC *.cu)
- cuda_add_library(ImmersedBoundaryCuda SHARED ${ImmersedBoundaryCuda_SRC})
-- install(TARGETS ImmersedBoundaryCuda DESTINATION ${PYTHON_INSTDIR})
-+ install(TARGETS ImmersedBoundaryCuda DESTINATION ${LIBDIR})
-+ set_target_properties(ImmersedBoundaryCuda PROPERTIES SOVERSION ${SOVERSION})
- add_dependencies(ImmersedBoundaryCuda EspressoConfig)
-
- set_target_properties(ImmersedBoundaryCuda PROPERTIES MACOSX_RPATH TRUE)
-diff --git a/src/core/object-in-fluid/CMakeLists.txt b/src/core/object-in-fluid/CMakeLists.txt
-index 7154486..cb64b91 100644
---- a/src/core/object-in-fluid/CMakeLists.txt
-+++ b/src/core/object-in-fluid/CMakeLists.txt
-@@ -1,5 +1,6 @@
- file(GLOB ObjectInFluid_SRC *.cpp)
- add_library(ObjectInFluid SHARED ${ObjectInFluid_SRC})
--install(TARGETS ObjectInFluid LIBRARY DESTINATION ${PYTHON_INSTDIR} ARCHIVE DESTINATION ${PYTHON_INSTDIR})
-+install(TARGETS ObjectInFluid LIBRARY DESTINATION ${LIBDIR} ARCHIVE DESTINATION ${LIBDIR})
-+set_target_properties(ObjectInFluid PROPERTIES SOVERSION ${SOVERSION})
- add_dependencies(ObjectInFluid EspressoConfig)
- set_target_properties(ObjectInFluid PROPERTIES MACOSX_RPATH TRUE)
-diff --git a/src/core/observables/CMakeLists.txt b/src/core/observables/CMakeLists.txt
-index 9813d86..573a362 100644
---- a/src/core/observables/CMakeLists.txt
-+++ b/src/core/observables/CMakeLists.txt
-@@ -1,4 +1,6 @@
- file(GLOB Observables_SRC *.?pp)
- add_library(Observables SHARED ${Observables_SRC})
-+install(TARGETS Observables LIBRARY DESTINATION ${LIBDIR})
-+set_target_properties(Observables PROPERTIES SOVERSION ${SOVERSION})
- add_dependencies(Observables EspressoConfig)
- set_target_properties(Observables PROPERTIES MACOSX_RPATH TRUE)
-diff --git a/src/core/scafacos/CMakeLists.txt b/src/core/scafacos/CMakeLists.txt
-index 1479683..3028ca0 100644
---- a/src/core/scafacos/CMakeLists.txt
-+++ b/src/core/scafacos/CMakeLists.txt
-@@ -2,7 +2,7 @@ include_directories(${SCAFACOS_INCLUDE_DIRS})
-
- file(GLOB Scafacos_SRC *.cpp)
- add_library(Scafacos SHARED ${Scafacos_SRC})
--install(TARGETS Scafacos DESTINATION ${PYTHON_INSTDIR})
-+install(TARGETS Scafacos DESTINATION ${PYTHON_INSTDIR}/espressomd)
- add_dependencies(Scafacos EspressoConfig)
-
- target_link_libraries(Scafacos ${SCAFACOS_LDFLAGS})
-diff --git a/src/core/shapes/CMakeLists.txt b/src/core/shapes/CMakeLists.txt
-index 0e5ecaa..b1779a9 100644
---- a/src/core/shapes/CMakeLists.txt
-+++ b/src/core/shapes/CMakeLists.txt
-@@ -1,4 +1,6 @@
- file(GLOB Shapes_SRC *.cpp)
- add_library(Shapes SHARED ${Shapes_SRC})
-+install(TARGETS Shapes LIBRARY DESTINATION ${LIBDIR})
-+set_target_properties(Shapes PROPERTIES SOVERSION ${SOVERSION})
- add_dependencies(Shapes EspressoConfig)
- set_target_properties(Shapes PROPERTIES MACOSX_RPATH TRUE)
-diff --git a/src/core/utils/CMakeLists.txt b/src/core/utils/CMakeLists.txt
-index ec0f6f7..f1f76e4 100644
---- a/src/core/utils/CMakeLists.txt
-+++ b/src/core/utils/CMakeLists.txt
-@@ -1,3 +1,5 @@
- file(GLOB EspressoUtils_SRC *.cpp)
- add_library(EspressoUtils SHARED ${EspressoUtils_SRC})
-+install(TARGETS EspressoUtils LIBRARY DESTINATION ${LIBDIR})
-+set_target_properties(EspressoUtils PROPERTIES SOVERSION ${SOVERSION})
- set_target_properties(EspressoUtils PROPERTIES MACOSX_RPATH TRUE)
-diff --git a/src/script_interface/CMakeLists.txt b/src/script_interface/CMakeLists.txt
-index 8aff034..259e8ee 100644
---- a/src/script_interface/CMakeLists.txt
-+++ b/src/script_interface/CMakeLists.txt
-@@ -28,6 +28,8 @@ if(H5MD)
- )
- endif(H5MD)
- add_library(EspressoScriptInterface SHARED ${EspressoScriptInterface_SRC})
-+install(TARGETS EspressoScriptInterface LIBRARY DESTINATION ${LIBDIR})
-+set_target_properties(EspressoScriptInterface PROPERTIES SOVERSION ${SOVERSION})
- add_dependencies(EspressoScriptInterface EspressoConfig EspressoConfig)
- set_target_properties(EspressoScriptInterface PROPERTIES MACOSX_RPATH TRUE)
- target_link_libraries(EspressoScriptInterface EspressoCore)
---
-2.10.2
-
diff --git a/espresso/espresso-8a021f5e8b1d508f356f4419d360bd9dfb7fec2c.tar.gz b/espresso/espresso-8a021f5e8b1d508f356f4419d360bd9dfb7fec2c.tar.gz
deleted file mode 100644
index 1d44e63..0000000
--- a/espresso/espresso-8a021f5e8b1d508f356f4419d360bd9dfb7fec2c.tar.gz
+++ /dev/null
Binary files differ
diff --git a/espresso/espresso.spec b/espresso/espresso.spec
deleted file mode 100644
index 9025402..0000000
--- a/espresso/espresso.spec
+++ /dev/null
@@ -1,320 +0,0 @@
-%global git 1
-%global commit 8a021f5e8b1d508f356f4419d360bd9dfb7fec2c
-%global shortcommit %(c=%{commit}; echo ${c:0:7})
-
-%if 0%{?fedora} > 12 || 0%{?rhel} > 6
-%global with_python3 1
-%else
-%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
-%endif
-
-### TESTSUITE ###
-# The testsuite currently fails only on the buildsystem, but works localy.
-# So to easy enable/disable the testsuite, I introduce the following
-# variables:
-#
-# * MPICH: if '1' enable mpich
-# * OPENMPI: if '1' enable openmpi
-%global MPICH 0
-%global OPENMPI 0
-
-Name: espresso
-Version: 4.0
-Release: 0.2.20170228git%{shortcommit}%{?dist}
-Summary: Extensible Simulation Package for Research on Soft matter
-
-License: GPLv3+
-URL: http://espressomd.org
-%if %{git}
-Source0: https://github.com/%{name}md/%{name}/archive/%{commit}/%{name}-%{commit}.tar.gz
-%else
-Source0: http://download.savannah.gnu.org/releases/espressomd/espresso-%{version}.tar.gz
-%endif
-# PATCH-FIX-UPSTREAM - 1056.patch - fix install
-Patch0: https://patch-diff.githubusercontent.com/raw/espressomd/espresso/pull/1056.patch
-
-
-BuildRequires: cmake
-BuildRequires: Cython
-BuildRequires: fftw-devel
-BuildRequires: numpy
-BuildRequires: python-devel
-BuildRequires: boost-devel
-BuildRequires: mpich-devel
-BuildRequires: boost-mpich-devel
-BuildRequires: openmpi-devel
-BuildRequires: boost-openmpi-devel
-
-Requires: numpy
-Requires: %{name}-common = %{version}-%{release}
-
-%description
-ESPResSo can perform Molecular Dynamics simulations of bead-spring models
-in various ensembles ((N,V,E), (N,V,T), and (N,p,T)).
-ESPResSo contains a number of advanced algorithms, e.g.
- * DPD thermostat (for hydrodynamics)
- * P3M, MMM2D, MMM1D, ELC for electrostatic interactions
- * Lattice-Boltzmann for hydrodynamics
-
-%package common
-Summary: Common files for %{name} packages
-BuildArch: noarch
-Requires: %{name}-common = %{version}-%{release}
-%description common
-ESPResSo can perform Molecular Dynamics simulations of bead-spring models
-in various ensembles ((N,V,E), (N,V,T), and (N,p,T)).
-ESPResSo contains a number of advanced algorithms, e.g.
- * DPD thermostat (for hydrodynamics)
- * P3M, MMM2D, MMM1D, ELC for electrostatic interactions
- * Lattice-Boltzmann for hydrodynamics
-This package contains the license file and data files shared between the
-sub-packages of %{name}.
-
-%package devel
-Summary: Development package for %{name} packages
-Requires: python2-%{name}-openmpi = %{version}-%{release}
-Requires: python2-%{name}-mpich = %{version}-%{release}
-%description devel
-ESPResSo can perform Molecular Dynamics simulations of bead-spring models
-in various ensembles ((N,V,E), (N,V,T), and (N,p,T)).
-ESPResSo contains a number of advanced algorithms, e.g.
- * DPD thermostat (for hydrodynamics)
- * P3M, MMM2D, MMM1D, ELC for electrostatic interactions
- * Lattice-Boltzmann for hydrodynamics
-This package contains the development libraries of %{name}.
-
-%package -n python2-%{name}-openmpi
-Requires: %{name}-common = %{version}-%{release}
-Summary: Extensible Simulation Package for Research on Soft matter
-Provides: %{name}-openmpi = %{version}-%{release}
-Obsoletes: %{name}-openmpi < 3.3.0-12
-%description -n python2-%{name}-openmpi
-ESPResSo can perform Molecular Dynamics simulations of bead-spring models
-in various ensembles ((N,V,E), (N,V,T), and (N,p,T)).
-ESPResSo contains a number of advanced algorithms, e.g.
- * DPD thermostat (for hydrodynamics)
- * P3M, MMM2D, MMM1D, ELC for electrostatic interactions
- * Lattice-Boltzmann for hydrodynamics
-
-This package contains %{name} compiled against Open MPI.
-
-
-%package -n python2-%{name}-mpich
-Requires: %{name}-common = %{version}-%{release}
-Summary: Extensible Simulation Package for Research on Soft matter
-Provides: %{name}-mpich2 = %{version}-%{release}
-Obsoletes: %{name}-mpich2 < 3.1.1-3
-Provides: %{name}-mpich = %{version}-%{release}
-Obsoletes: %{name}-mpich < 3.3.0-12
-%description -n python2-%{name}-mpich
-ESPResSo can perform Molecular Dynamics simulations of bead-spring models
-in various ensembles ((N,V,E), (N,V,T), and (N,p,T)).
-ESPResSo contains a number of advanced algorithms, e.g.
- * DPD thermostat (for hydrodynamics)
- * P3M, MMM2D, MMM1D, ELC for electrostatic interactions
- * Lattice-Boltzmann for hydrodynamics
-
-This package contains %{name} compiled against MPICH2.
-
-
-%prep
-%if %{git}
-%setup -q -n espresso-%{commit}
-%else
-%setup -q
-%endif
-%patch0 -p1
-find . -name "*.[ch]pp" -exec chmod -x {} \;
-chmod -x AUTHORS COPYING README NEWS ChangeLog
-mkdir openmpi_build mpich_build
-
-%build
-%global defopts \\\
- -DWITH_PYTHON=ON \\\
- -DWITH_TESTS=ON \\\
- -DWITH_SCAFACOS=ON \\\
- -DCMAKE_SKIP_RPATH:BOOL=ON \\\
- -DCMAKE_SKIP_BUILD_RPATH:BOOL=ON \\\
- -DINSTALL_PYPRESSO=OFF
-
-# Build OpenMPI version
-#see #756141 to understand why MPI_C_LIBRARIES needs to be set
-%{_openmpi_load}
-pushd openmpi_build
-%{cmake} \
- %{defopts} \
- -DLIBDIR=${MPI_LIB} \
- -DPYTHON_INSTDIR=${MPI_PYTHON2_SITEARCH} \
- -DMPI_C_LIBRARIES=${MPI_LIB}/libmpi.so \
- ..
-%make_build
-popd
-%{_openmpi_unload}
-
-# Build mpich version
-%{_mpich_load}
-pushd mpich_build
-%{cmake} \
- %{defopts} \
- -DLIBDIR=${MPI_LIB} \
- -DPYTHON_INSTDIR=${MPI_PYTHON2_SITEARCH} \
- -DMPI_C_LIBRARIES=${MPI_LIB}/libmpi.so \
- ..
-%make_build
-popd
-%{_mpich_unload}
-
-%install
-# first install mpi files and move around because MPI_SUFFIX above doesn't
-# work yet (will be fixed in a new version)
-%{_openmpi_load}
-pushd openmpi_build
-%make_install
-popd
-%{_openmpi_unload}
-
-%{_mpich_load}
-pushd mpich_build
-%make_install
-popd
-%{_mpich_unload}
-find %{buildroot}%{_prefix} -name "*.so" -exec chmod +x {} \;
-find %{buildroot}%{_prefix} -name "gen_pxiconfig" -exec chmod +x {} \;
-
-%check
-# test openmpi?
-%if 0%{?OPENMPI}
-%{_openmpi_load}
-pushd openmpi_build
-make check || cat testsuite/runtest.log || :
-popd
-%{_openmpi_unload}
-%endif
-
-# test mpich?
-%if 0%{?MPICH}
-%{_mpich_load}
-pushd mpich_build
-make check || cat testsuite/runtest.log || :
-popd
-%{_mpich_unload}
-%endif
-
-%files common
-%doc AUTHORS README NEWS ChangeLog
-%license COPYING
-
-%files devel
-%{_libdir}/*/lib/lib*.so
-
-%files -n python2-%{name}-openmpi
-%{_libdir}/openmpi/lib/lib*.so.*
-%{python_sitearch}/openmpi/%{name}md
-
-%files -n python2-%{name}-mpich
-%{_libdir}/mpich/lib/lib*.so.*
-%{python_sitearch}/mpich/%{name}md
-
-%changelog
-* Sun Mar 05 2017 Christoph Junghans <junghans@votca.org> - 4.0-0.2.20170228git8a021f5
-- Dropped 1042.patch, merged upstream
-- Add 1056.patch to fix install
-
-* Thu Feb 16 2017 Christoph Junghans <junghans@votca.org> - 4.0-0.1.20170220git7a9ac74
-- Bump to version 4.0 git version
-- Drop cypthon patch, incl. upstream
-- Add 1042.patch from upstream
-
-* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.0-11
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
-
-* Fri Oct 21 2016 Orion Poplawski <orion@cora.nwra.com> - 3.3.0-10
-- Rebuild for openmpi 2.0
-
-* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.0-9
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
-
-* Tue Sep 15 2015 Orion Poplawski <orion@cora.nwra.com> - 3.3.0-8
-- Rebuild for openmpi 1.10.0
-
-* Sat Aug 15 2015 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 3.3.0-7
-- Rebuild for MPI provides
-
-* Sun Jul 26 2015 Sandro Mani <manisandro@gmail.com> - 3.3.0-6
-- Rebuild for RPM MPI Requires Provides Change
-
-* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.0-5
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
-
-* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 3.3.0-4
-- Rebuilt for GCC 5 C++11 ABI change
-
-* Thu Mar 12 2015 Thomas Spura <tomspur@fedoraproject.org> - 3.3.0-3
-- Rebuild for changed mpich libraries
-- Added patch for building with cython-0.22
-- Remove group tag
-
-* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.0-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
-
-* Mon Aug 11 2014 Thomas Spura <tomspur@fedoraproject.org> - 3.3.0-1
-- update to 3.3.0
-
-* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.0-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
-
-* Wed May 28 2014 Thomas Spura <tomspur@fedoraproject.org> - 3.2.0-3
-- Rebuilt for https://fedoraproject.org/wiki/Changes/f21tcl86
-
-* Sun May 25 2014 Thomas Spura <tomspur@fedoraproject.org> - 3.2.0-2
-- run autoreconf in %%build to support aarch64
-
-* Sat May 24 2014 Thomas Spura <tomspur@fedoraproject.org> - 3.2.0-1
-- update to 3.2.0
-
-* Wed May 21 2014 Jaroslav Å karvada <jskarvad@redhat.com> - 3.1.1-6
-- Rebuilt for https://fedoraproject.org/wiki/Changes/f21tcl86
-
-* Sat Feb 22 2014 Deji Akingunola <dakingun@gmail.com> - 3.1.1-5
-- Rebuild for mpich-3.1
-
-* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.1-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
-
-* Sat Jul 20 2013 Deji Akingunola <dakingun@gmail.com> - 3.1.1-3
-- Rename mpich2 sub-packages to mpich and rebuild for mpich-3.0
-
-* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.1-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
-
-* Wed Nov 14 2012 Thomas Spura <tomspur@fedoraproject.org> - 3.1.1-1
-- rebuild for newer mpich2
-- update to new version
-- disable tk per upstream request
-- drop patch
-
-* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.2-4
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
-
-* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.2-3
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
-
-* Wed Oct 26 2011 Thomas Spura <tomspur@fedoraproject.org> - 3.0.2-2
-- add missing BR autoconf/automake
-- use _isa where possible
-- use general tclsh shebang
-- build --with-tk
-
-* Thu Oct 6 2011 Thomas Spura <tomspur@fedoraproject.org> - 3.0.2-1
-- update to new version
-- introduce configure_mpi
-
-* Sun Sep 25 2011 Thomas Spura <tomspur@fedoraproject.org> - 3.0.1-3
-- use correct MPI_SUFFIX
-- don't install library as upstream doesn't support it anymore
-
-* Sun Sep 25 2011 Thomas Spura <tomspur@fedoraproject.org> - 3.0.1-2
-- correctly install into _libdir/openmpi and not _libdir/name-openmpi
-
-* Fri Sep 16 2011 Thomas Spura <tomspur@fedoraproject.org> - 3.0.1-1
-- initial packaging