Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
Fix for build failure with boost 1.65
· 94bfa6c4
Andreas Tille
authored
Mar 20, 2018
94bfa6c4
Standards-Version: 4.1.3
· 8b227866
Andreas Tille
authored
Mar 20, 2018
8b227866
debhelper 11
· b68fb519
Andreas Tille
authored
Mar 20, 2018
b68fb519
Install NOTICE file, upload to unstable
· 6db5d304
Andreas Tille
authored
Mar 20, 2018
6db5d304
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
6db5d304
opensurgsim (0.7.0-7) unstable; urgency=medium
* Team upload.
[ Steve Langasek ]
* Fix for build failure with boost 1.65
[ Andreas Tille ]
* Standards-Version: 4.1.3
* debhelper 11
* Install NOTICE file
-- Andreas Tille <tille@debian.org> Tue, 20 Mar 2018 11:28:00 +0100
opensurgsim (0.7.0-6) unstable; urgency=medium
* Team upload
...
...
debian/compat
View file @
6db5d304
1
0
1
1
debian/control
View file @
6db5d304
...
...
@@ -3,7 +3,7 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.
Uploaders: Paul Novotny <paul@paulnovo.us>
Section: science
Priority: optional
Build-Depends: debhelper (>= 1
0
),
Build-Depends: debhelper (>= 1
1~
),
dh-linktree,
libboost-chrono-dev,
libboost-date-time-dev,
...
...
@@ -18,7 +18,7 @@ Build-Depends: debhelper (>= 10),
libjs-mathjax,
libopenscenegraph-dev,
libyaml-cpp-dev (>= 0.5.2)
Standards-Version: 4.1.
2
Standards-Version: 4.1.
3
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/opensurgsim.git
Vcs-Git: https://anonscm.debian.org/git/debian-med/opensurgsim.git
Homepage: http://www.opensurgsim.org/
...
...
debian/docs
0 → 100644
View file @
6db5d304
NOTICE
debian/patches/boost-1.65-compat.patch
0 → 100644
View file @
6db5d304
Description: make code compatible with boost 1.65.
The code previously worked by virtue of certain standard headers (iostream)
being indirectly included via boost. In boost 1.65 these headers are not
included for us, so include them directly.
Author: Steve Langasek <steve.langasek@ubuntu.com>
Last-Updated: 2018-03-19
Bug-Debian: https://bugs.debian.org/893589
Index: opensurgsim-0.7.0/SurgSim/Blocks/DebugDumpBehavior.cpp
===================================================================
--- opensurgsim-0.7.0.orig/SurgSim/Blocks/DebugDumpBehavior.cpp
+++ opensurgsim-0.7.0/SurgSim/Blocks/DebugDumpBehavior.cpp
@@ -13,6 +13,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
+#include <iostream>
+
#include "SurgSim/Blocks/DebugDumpBehavior.h"
#include "SurgSim/DataStructures/DataGroup.h"
@@ -163,4 +165,4 @@
}
}
-}
\ No newline at end of file
+}
debian/patches/series
View file @
6db5d304
...
...
@@ -6,3 +6,4 @@ fix-matrix-tests.patch
disable-thread-pool-on-armel.patch
Assert-death-only-if-supported.patch
ignore-failing-tests.patch
boost-1.65-compat.patch
debian/rules
View file @
6db5d304
...
...
@@ -4,7 +4,7 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=-format,+bindnow
export GOOGLEMOCK_DIR = /usr/src/googletest/googlemock
%:
dh $@
--parallel
--with linktree
dh $@ --with linktree
ifeq (,$(filter $(DEB_BUILD_ARCH),i386 arm64 armel armhf powerpc ppc64el ppc64))
EIGEN_ALIGNMENT=ON
...
...