Accepting request 245163 from devel:libraries:c_c++

- Update to upstream version 2.5.2 
  * incorporated bugfixes since 2.5.1

- Update to upstream version 2.5.1
  * Lots of bugfixes
- Added a couple of post release bugfixes from trunk
- Removed patch incorporated upstream
  * no-return-in-non-void-adouble_tl_cpp.patch

OBS-URL: https://build.opensuse.org/request/show/245163
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/adolc?expand=0&rev=20
This commit is contained in:
Stephan Kulow 2014-08-27 05:45:42 +00:00 committed by Git OBS Bridge
commit 8204d00fe7
6 changed files with 25 additions and 25 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2c8182a910477d7c2f1455b43e1d2ec3027eca83805360466334cfc875346ba8
size 1975963

3
adolc-2.5.2.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0e616db2a16c10b3a14ece14610f9c21716db027d03935dcb3fc47db03ac5c3b
size 1738396

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Tue Aug 19 10:58:17 UTC 2014 - kkhere.geo@gmail.com
- Update to upstream version 2.5.2
* incorporated bugfixes since 2.5.1
-------------------------------------------------------------------
Sun Aug 17 12:22:22 UTC 2014 - kkhere.geo@gmail.com
- Update to upstream version 2.5.1
* Lots of bugfixes
- Added a couple of post release bugfixes from trunk
- Removed patch incorporated upstream
* no-return-in-non-void-adouble_tl_cpp.patch
-------------------------------------------------------------------
Tue Feb 25 11:44:46 UTC 2014 - kkhere.geo@gmail.com

View File

@ -17,16 +17,15 @@
Name: adolc
%define lname libadolc1
Version: 2.5.0
%define lname libadolc2
Version: 2.5.2
Release: 0
Summary: Algorithmic Differentiation Library for C/C++
License: GPL-2.0+ or EPL-1.0
Group: Development/Libraries/C and C++
Url: http://projects.coin-or.org/ADOL-C
Source: %{name}-%{version}.tar.bz2
Source: %{name}-%{version}.tar.xz
Source1: baselibs.conf
Patch1: no-return-in-non-void-adouble_tl_cpp.patch
BuildRequires: ColPack-devel
BuildRequires: autoconf
BuildRequires: automake
@ -34,6 +33,7 @@ BuildRequires: gcc-c++
BuildRequires: libstdc++-devel
BuildRequires: libtool
BuildRequires: pkg-config
BuildRequires: xz
# BuildRequires: texlive texlive-latex
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -103,12 +103,9 @@ This package provides the user´s manual for adolc
%prep
%setup -q -n %{name}-%{version}
%patch1 -p1
%build
%if 0%{?suse_version} && %{suse_version} > 1110
autoreconf -v --install --force
%endif
# autoreconf -v --install --force
%configure --prefix=/usr
make %{_smp_mflags}
# pushd ADOL-C/doc

View File

@ -1,4 +1,4 @@
libadolc1
libadolc2
adolc-devel
requires -adolc-<targettype>
requires "libadolc1-<targettype> = <version>"
requires "libadolc2-<targettype> = <version>"

View File

@ -1,12 +0,0 @@
diff --git a/ADOL-C/src/adouble_tl.cpp b/ADOL-C/src/adouble_tl.cpp
index d72c538..9deaec7 100644
--- a/ADOL-C/src/adouble_tl.cpp
+++ b/ADOL-C/src/adouble_tl.cpp
@@ -72,6 +72,7 @@ istream& operator >> ( istream& in, adouble& a) {
while (c!=')' && !in.eof());
return in;
}
+ return in;
}
/**************** ADOLC_TRACELESS_SPARSE_PATTERN ****************************/