Commit 78ac75e2 authored by Julien Y. Dutheil's avatar Julien Y. Dutheil
Browse files

New upstream version 2.4.0

parent 30596ab2
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ ENDIF(NOT CMAKE_BUILD_TYPE)
#           library implements.
# In other words, the library implements all the interface numbers in the
# range from number current - age to current.
SET(${PROJECT_NAME}_VERSION_CURRENT "3")
SET(${PROJECT_NAME}_VERSION_CURRENT "4")
SET(${PROJECT_NAME}_VERSION_REVISION "0")
SET(${PROJECT_NAME}_VERSION_AGE "0")

@@ -77,10 +77,10 @@ ENDIF (DOXYGEN_FOUND)
# Packager
SET(CPACK_PACKAGE_NAME "libbpp-core")
SET(CPACK_PACKAGE_VENDOR "Bio++ Development Team")
SET(CPACK_PACKAGE_VERSION "2.3.1")
SET(CPACK_PACKAGE_VERSION "2.4.0")
SET(CPACK_PACKAGE_VERSION_MAJOR "2")
SET(CPACK_PACKAGE_VERSION_MINOR "3")
SET(CPACK_PACKAGE_VERSION_PATCH "1")
SET(CPACK_PACKAGE_VERSION_MINOR "4")
SET(CPACK_PACKAGE_VERSION_PATCH "0")
SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "The Bio++ Core library")
SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/COPYING.txt")
SET(CPACK_RESOURCE_FILE_AUTHORS "${CMAKE_SOURCE_DIR}/AUTHORS.txt")
@@ -89,6 +89,8 @@ SET(CPACK_SOURCE_GENERATOR "TGZ")
# /!\ This assumes that an external build is used
SET(CPACK_SOURCE_IGNORE_FILES 
       "/build/" 
       "/html/"
       "/BppCore.tag"
       "/\\\\.git/" 
       "/\\\\.gitignore" 
       ${CPACK_SOURCE_IGNORE_FILES}
+11 −1
Original line number Diff line number Diff line
10/0(/17 -*- Version 2.3.0 -*-
19/02/17 -*- Version 2.4.0 -*-

04/01/18 Laurent Guéguen
* Several bug fixes and improvements (interface break)

18/12/17 Laurent Guéguen 
* TreeGraphs improvements

08/12/17 -*- Version 2.3.2 -*-

10/05/17 -*- Version 2.3.0 -*-

26/04/16 Julien Dutheil
* Upgrading to C++11
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ PROJECT_NAME = bpp-core
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER         = 2.3.0
PROJECT_NUMBER         = 2.4.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
+17 −16
Original line number Diff line number Diff line
%define _basename bpp-core
%define _version 2.3.1
%define _release 1
%define _prefix /usr

URL: http://biopp.univ-montp2.fr/
URL: https://github.com/BioPP/bpp-core

Name: %{_basename}
Version: %{_version}
Release: %{_release}
Name: bpp-core
Version: 2.4.0
Release: 1%{?dist}
License: CECILL-2.0
Vendor: The Bio++ Project
Source: http://biopp.univ-montp2.fr/repos/sources/%{_basename}-%{_version}.tar.gz
Source: %{name}-%{version}.tar.gz
Summary: Bio++ Core library
Group: Development/Libraries/C and C++

BuildRoot: %{_builddir}/%{_basename}-root
BuildRoot: %{_builddir}/%{name}-root
BuildRequires: cmake >= 2.8.11
BuildRequires: gcc-c++ >= 4.7.0
AutoReq: yes
@@ -23,17 +20,17 @@ AutoProv: yes
%description
This library contains the core classes and utilitary functions of the Bio++ project.

%package -n libbpp-core3
%package -n libbpp-core4
Summary: Bio++ Core library
Group: Development/Libraries/C and C++

%description -n libbpp-core3
%description -n libbpp-core4
This library contains the core classes and utilitary functions of the Bio++ project.

%package -n libbpp-core-devel
Summary: Libraries, includes to develop applications with %{_basename}
Summary: Libraries, includes to develop applications with %{name}
Group: Development/Libraries/C and C++
Requires: libbpp-core3 = %{_version}
Requires: libbpp-core4 = %{version}

%description -n libbpp-core-devel
The libbpp-core-devel package contains the header files and static libraries for
@@ -54,11 +51,11 @@ make DESTDIR=$RPM_BUILD_ROOT install
%clean
rm -rf $RPM_BUILD_ROOT

%post -n libbpp-core3 -p /sbin/ldconfig
%post -n libbpp-core4 -p /sbin/ldconfig

%postun -n libbpp-core3 -p /sbin/ldconfig
%postun -n libbpp-core4 -p /sbin/ldconfig

%files -n libbpp-core3
%files -n libbpp-core4
%defattr(-,root,root)
%doc AUTHORS.txt COPYING.txt INSTALL.txt ChangeLog
%{_prefix}/%{_lib}/lib*.so.*
@@ -74,6 +71,10 @@ rm -rf $RPM_BUILD_ROOT
%{_prefix}/include/*

%changelog
* Mon Mar 12 2018 Julien Dutheil <julien.dutheil@univ-montp2.fr> 2.4.0-1
- Increased interface number
- Removed dynamic exceptions specifications.
- Graphs classes improvements
* Tue Jun 06 2017 Julien Dutheil <julien.dutheil@univ-montp2.fr> 2.3.1-1
- Increased interface number
* Wed May 10 2017 Julien Dutheil <julien.dutheil@univ-montp2.fr> 2.3.0-1
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ set (CMAKE_CXX_FLAGS "std=c++11 -Wall -Weffc++ -Wshadow -Wconversion")
# -> It also provides a "feature" property on targets which annotates, and auto selects the right -std=...

SET(${PROJECT_NAME}_VERSION_CURRENT "2")
SET(${PROJECT_NAME}_VERSION_REVISION "3")
SET(${PROJECT_NAME}_VERSION_REVISION "4")
SET(${PROJECT_NAME}_VERSION_AGE "0")
MATH(EXPR ${PROJECT_NAME}_VERSION_MAJOR "${${PROJECT_NAME}_VERSION_CURRENT} - ${${PROJECT_NAME}_VERSION_AGE}")
SET(${PROJECT_NAME}_VERSION_MINOR ${${PROJECT_NAME}_VERSION_AGE})
Loading