Skip to content
Commits on Source (5)
ciftilib (1.5.3-3) unstable; urgency=medium
* Team upload.
* FTBFS with Boost 1.71
Closes: #948665
* debhelper-compat 12
* Standards-Version: 4.4.1
* Remove obsolete field Name from debian/upstream/metadata (already
present in machine-readable debian/copyright).
-- Andreas Tille <tille@debian.org> Sat, 11 Jan 2020 18:03:26 +0100
ciftilib (1.5.3-2) unstable; urgency=medium
* gbp.conf: drop pq settings
......
......@@ -4,13 +4,13 @@ Uploaders: Ghislain Antony Vaillant <ghisvail@gmail.com>
Section: libs
Priority: optional
Build-Depends: cmake,
debhelper (>= 12~),
debhelper-compat (= 12),
libboost-dev,
libboost-filesystem-dev,
libxml++2.6-dev,
zlib1g-dev
Build-Depends-Indep: doxygen
Standards-Version: 4.3.0
Standards-Version: 4.4.1
Vcs-Browser: https://salsa.debian.org/med-team/ciftilib
Vcs-Git: https://salsa.debian.org/med-team/ciftilib.git
Homepage: https://github.com/Washington-University/CiftiLib
......
From: Giovanni Mascellani <gio@debian.org>
Date: Sat, 11 Jan 2020 15:44:14 +0100
Bug-Debian: https://bugs.debian.org/948665
Subject: Fix compilation with Boost 1.71.
Method file_string() is now obsolete and just calls string().
---
src/CiftiFile.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/CiftiFile.cxx b/src/CiftiFile.cxx
index 9bbb16d..6b15311 100644
--- a/src/CiftiFile.cxx
+++ b/src/CiftiFile.cxx
@@ -100,7 +100,7 @@ namespace
return QFileInfo(mypath).absoluteFilePath();
#else
#ifdef CIFTILIB_BOOST_NO_FSV3
- return filesystem::complete(AString_to_std_string(mypath)).file_string();
+ return filesystem::complete(AString_to_std_string(mypath)).string();
#else
return filesystem::absolute(AString_to_std_string(mypath)).native();
#endif
@@ -113,7 +113,7 @@ namespace
return QFileInfo(mypath).canonicalFilePath();
#else
#ifdef CIFTILIB_BOOST_NO_FSV3
- return filesystem::complete(AString_to_std_string(mypath)).file_string();
+ return filesystem::complete(AString_to_std_string(mypath)).string();
#else
#ifdef CIFTILIB_BOOST_NO_CANONICAL
filesystem::path temp = AString_to_std_string(mypath);
0001-force-endian-of-datatype-example-to-make-tests-pass-.patch
0002-Fix-compilation-with-Boost-1.71.patch
Bug-Database: https://github.com/Washington-University/CiftiLib/issues
Bug-Submit: https://github.com/Washington-University/CiftiLib/issues/new
Name: CiftiLib
Repository: git@github.com:Washington-University/CiftiLib
Repository-Browse: https://github.com/Washington-University/CiftiLib