Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
d/rules: Correct for python3 build
· d73c272e
Gert Wollny
authored
Oct 23, 2019
d73c272e
d/changelog: Another upload
· f3de5fcd
Gert Wollny
authored
Oct 23, 2019
f3de5fcd
d/docs: Update file name
· 57e72587
Gert Wollny
authored
Oct 24, 2019
57e72587
d/changelog: New upload
· e1e10944
Gert Wollny
authored
Oct 24, 2019
e1e10944
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
e1e10944
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 ]
...
...
debian/control
View file @
e1e10944
...
...
@@ -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}, ${python
3
:Depends}
Conflicts: insighttoolkit-python
Replaces: insighttoolkit-python
Description: Image processing toolkit for registration and segmentation - Python bindings
...
...
debian/docs
View file @
e1e10944
GettingStarted.
txt
GettingStarted.
md
debian/rules
View file @
e1e10944
...
...
@@ -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 python
2
dh $@ --builddir=BUILD --parallel --with python
3
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/python
2.7
/* usr/lib/python
2
.7/
dh_install -p$(pkg_python) debian/tmp/usr/lib/python
*
/* usr/lib/python
3
.7/
endif
# remove build directory to save space
rm -rf BUILD debian/tmp
...
...