Skip to content
Commits on Source (4)
insighttoolkit4 (4.13.2-dfsg1-1~exp4) experimental; urgency=medium
* d/docs: Update file name
-- Gert Wollny <gewo@debian.org> Thu, 24 Oct 2019 08:57:41 +0200
insighttoolkit4 (4.13.2-dfsg1-1~exp3) experimental; urgency=medium
* d/rules: Correct for python3 build
-- Gert Wollny <gewo@debian.org> Wed, 23 Oct 2019 21:15:14 +0200
insighttoolkit4 (4.13.2-dfsg1-1~exp2) experimental; urgency=medium
[ Gianfranco Costamagna ]
......
......@@ -92,7 +92,7 @@ Description: Image processing toolkit for registration and segmentation - exampl
Package: insighttoolkit4-python
Section: python
Architecture: amd64 i386
Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}, ${python3:Depends}
Conflicts: insighttoolkit-python
Replaces: insighttoolkit-python
Description: Image processing toolkit for registration and segmentation - Python bindings
......
GettingStarted.txt
GettingStarted.md
......@@ -73,9 +73,7 @@ CMAKE_FLAGS = \
-DITK_WRAP_covariant_vector_double:BOOL=ON \
-DITK_WRAP_complex_double:BOOL=ON \
-DITK_WRAPPING:BOOL=$(ENABLE_PYTHON) \
-DITK_WRAP_PYTHON:BOOL=$(ENABLE_PYTHON) \
-DPython_ADDITIONAL_VERSIONS=2.7
-DITK_WRAP_PYTHON:BOOL=$(ENABLE_PYTHON)
pkg_lib = libinsighttoolkit$(SOVERSION)
pkg_dev = libinsighttoolkit$(VER_MAJOR)-dev
......@@ -84,7 +82,7 @@ pkg_python = insighttoolkit$(VER_MAJOR)-python
%:
dh $@ --builddir=BUILD --parallel --with python2
dh $@ --builddir=BUILD --parallel --with python3
override_dh_auto_configure-indep:
......@@ -137,7 +135,7 @@ endif
#
# pkg_python
ifeq ($(ENABLE_PYTHON),1)
dh_install -p$(pkg_python) debian/tmp/usr/lib/python2.7/* usr/lib/python2.7/
dh_install -p$(pkg_python) debian/tmp/usr/lib/python*/* usr/lib/python3.7/
endif
# remove build directory to save space
rm -rf BUILD debian/tmp
......