Skip to content
Commits on Source (7)
camitk (4.1.2-4) unstable; urgency=medium
* Adapt (Build-)Depends of libgdcm to new names
Closes: #949349
* debhelper-compat 12 (routine-update)
* Standards-Version: 4.4.1 (routine-update)
* Respect DEB_BUILD_OPTIONS in override_dh_auto_test target (routine-
update)
* Rely on pre-initialized dpkg-architecture variables.
-- Andreas Tille <tille@debian.org> Mon, 20 Jan 2020 13:05:20 +0100
camitk (4.1.2-3) unstable; urgency=medium
[ Andreas Beckmann ]
......
......@@ -4,7 +4,7 @@ Uploaders: Andreas Tille <tille@debian.org>,
Emmanuel Promayon <Emmanuel.Promayon@univ-grenoble-alpes.fr>
Section: science
Priority: optional
Build-Depends: debhelper (>= 11~),
Build-Depends: debhelper-compat (= 12),
cmake,
libvtk7-dev,
libvtk7-qt-dev,
......@@ -15,13 +15,13 @@ Build-Depends: debhelper (>= 11~),
xsdcxx,
libinsighttoolkit4-dev,
libfftw3-dev,
libgdcm2-dev,
libvtkgdcm2-dev,
libgdcm-dev,
libvtkgdcm-dev,
xvfb,
xauth,
doxygen,
graphviz
Standards-Version: 4.3.0
Standards-Version: 4.4.1
Vcs-Browser: https://salsa.debian.org/med-team/camitk
Vcs-Git: https://salsa.debian.org/med-team/camitk.git
Homepage: https://camitk.imag.fr/
......@@ -73,8 +73,8 @@ Depends: libcamitk4 (= ${binary:Version}),
xsdcxx,
libinsighttoolkit4-dev,
libfftw3-dev,
libgdcm2-dev,
libvtkgdcm2-dev,
libgdcm-dev,
libvtkgdcm-dev,
xvfb,
xauth,
${misc:Depends},
......@@ -85,7 +85,7 @@ Breaks: libcamitk3-dev,
libvtk6-dev,
libvtk6-java,
libvtk6-jni,
libvtk6-qt-dev,
libvtk6-qt-dev
Replaces: libcamitk3-dev
Description: Computer Assisted Medical Intervention Tool Kit - development
Helps researchers and clinicians to easily and rapidly collaborate in
......
......@@ -24,7 +24,7 @@ pkg_imp = camitk-imp
pkg_asm = camitk-actionstatemachine
# multi-arch support
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
include /usr/share/dpkg/architecture.mk
# dpkg-shlibdeps needs to know about camitk extension directories to manage inner-dependencies
# between extensions (i.e., mml component extension depends on physicalmodel component extensions)
......@@ -73,15 +73,20 @@ override_dh_auto_build-indep:
# No tests needed for docs
override_dh_auto_test-indep:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
echo "No tests availaible just for the docs"
endif
# run all the available tests (only for Archictecture: any
# as tests can only be run if and once the framework is build)
override_dh_auto_test-arch:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
# Use the CamiTK test suite
# Note: all tests require an X server, xvfb-run is needed to have a virtual one
# Another way: xvfb-run --auto-servernum $(MAKE) -C camitk-build ARGS="-V" test
# e.g. to test config: (cd camitk-build && xvfb-run --auto-servernum --server-args="-screen 0 1024x768x24" ctest -VV --timeout 1800 -R application-config)
(cd camitk-build && xvfb-run --auto-servernum --server-args="-screen 0 1024x768x24" ctest -V --timeout 1800)
endif
# make packages
override_dh_install:
......