Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
d/control*, d/rules: Fix python dependencies, Closes: #906230
· 28093c90
Gert Wollny
authored
Aug 27, 2018
28093c90
Update changelog for upload
· e6d06240
Gert Wollny
authored
Aug 27, 2018
e6d06240
d/rules: Remove build dir right after installation
· 93757807
Gert Wollny
authored
Aug 28, 2018
93757807
Update changelog for upload
· 8d3e005f
Gert Wollny
authored
Aug 28, 2018
8d3e005f
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
8d3e005f
insighttoolkit4 (4.12.2-dfsg1-4) unstable; urgency=medium
* d/rules: Remove build dir right after installation
-- Gert Wollny <gewo@debian.org> Tue, 28 Aug 2018 16:27:47 +0200
insighttoolkit4 (4.12.2-dfsg1-3) unstable; urgency=medium
* d/control*, d/rules: Fix python dependencies, Closes: #906230
-- Gert Wollny <gewo@debian.org> Mon, 27 Aug 2018 20:18:54 +0200
insighttoolkit4 (4.12.2-dfsg1-2) unstable; urgency=medium
* d/p/remove_gcc_version_test.patch Closes: #897899
...
...
debian/control
View file @
8d3e005f
...
...
@@ -21,6 +21,7 @@ Build-Depends: debhelper (>= 9),
libminc-dev,
libnifti-dev,
libhdf5-dev,
dh-python,
python-all-dev
# libvtk6-dev -- only needed if we enable one of the following modules:
# VtkGlue, LevelSetsv4Visualization
...
...
@@ -90,7 +91,7 @@ Description: Image processing toolkit for registration and segmentation - exampl
Package: insighttoolkit4-python
Section: python
Architecture: amd64 i386
Depends: ${misc:Depends}, ${shlibs:Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
, ${python:Depends}
Conflicts: insighttoolkit-python
Replaces: insighttoolkit-python
Description: Image processing toolkit for registration and segmentation - Python bindings
...
...
debian/control.in
View file @
8d3e005f
...
...
@@ -21,6 +21,7 @@ Build-Depends: debhelper (>= 9),
libminc-dev,
libnifti-dev,
libhdf5-dev,
dh-python,
python-all-dev
# libvtk6-dev -- only needed if we enable one of the following modules:
# VtkGlue, LevelSetsv4Visualization
...
...
@@ -90,7 +91,7 @@ Description: Image processing toolkit for registration and segmentation - exampl
Package: insighttoolkit@VER_MAJOR@-python
Section: python
Architecture: amd64 i386
Depends: ${misc:Depends}, ${shlibs:Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
, ${python:Depends}
Conflicts: insighttoolkit-python
Replaces: insighttoolkit-python
Description: Image processing toolkit for registration and segmentation - Python bindings
...
...
debian/rules
View file @
8d3e005f
...
...
@@ -81,7 +81,7 @@ pkg_python = insighttoolkit$(VER_MAJOR)-python
%:
dh $@ --builddir=BUILD --parallel
dh $@ --builddir=BUILD --parallel
--with python2
override_dh_auto_configure-indep:
...
...
@@ -110,6 +110,7 @@ override_dh_makeshlibs:
override_dh_install-indep:
override_dh_install-arch:
rm -rf BUILD
# pkg_lib
dh_install -p$(pkg_lib) -XJava -XPython -XTcl debian/tmp/usr/lib/lib*.so.* usr/lib
cp CMake/InsightValgrind.supp Insight$(SOVERSION)Valgrind.supp
...
...
@@ -135,7 +136,7 @@ ifeq ($(ENABLE_PYTHON),1)
dh_install -p$(pkg_python) debian/tmp/usr/lib/python2.7/* usr/lib/python2.7/
endif
# remove build directory to save space
rm -rf
BUILD
debian/tmp
rm -rf debian/tmp
override_dh_installexamples:
# pkg_examples
...
...