forked from pool/insighttoolkit
Compare commits
5 Commits
Author | SHA256 | Date | |
---|---|---|---|
6ac7858ef7 | |||
|
19932dcdd4 | ||
bc448ffc22 | |||
51948a71d9 | |||
c5b5aedc10 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d71a36fc0aee2c9257fe128f7657feb1e671461bd48561b620619f290c71795e
|
||||
size 22509357
|
3
insighttoolkit-5.4.3.tar.gz
Normal file
3
insighttoolkit-5.4.3.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3f2b768c52e92d9b8c274ac952e97ee8ad18e69ddfb7e4a3d7247aabf25bd3a1
|
||||
size 22563170
|
@@ -1,3 +1,38 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 23 09:14:44 UTC 2025 - Atri Bhattacharya <badshah400@gmail.com>
|
||||
|
||||
- Update to version 5.4.3:
|
||||
* Bug Fixes:
|
||||
- Resolved issues affecting the default number of threads,
|
||||
particularly in multi-threaded image processing pipelines
|
||||
where thread limits were not respected.
|
||||
- Corrected the b-spline size calculation for closed
|
||||
parametric dimensions, ensuring accurate interpolation in
|
||||
applications such as 3D image registration and deformation
|
||||
modeling..
|
||||
* Removed unused VNL Netlib rpoly files to ensure compliance
|
||||
with Apache 2.0 licensing requirements.
|
||||
* Improvements to the LabelErodeDilate and MeshToPolyData remote
|
||||
modules, including bug fixes and enhancements.
|
||||
- Changes from version 5.4.2:
|
||||
* Enhanced Label Map Handling: Improved unique label map filter
|
||||
behavior for segmentation workflows
|
||||
* Modern Library Support: Updated compatibility with recent
|
||||
libtiff versions
|
||||
* Large Data Optimization: Expanded VectorImage support for
|
||||
high-dimensional datasets
|
||||
* Performance Improvements: Fixed thread-based parallelism in
|
||||
SLIC filter implementations
|
||||
* Cross-Platform Enhancements: Build system updates and compiler
|
||||
compatibility fixes
|
||||
- Set up bconds to support builds with tests in the future
|
||||
(currently turned off due to missing data files).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Apr 1 20:10:17 UTC 2025 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||
|
||||
- Drop unneeded pcre build dependency via pkgconfig(libpcrecpp).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 8 06:30:25 UTC 2024 - Atri Bhattacharya <badshah400@gmail.com>
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package insighttoolkit
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
# Copyright (c) 2016 Angelos Tzotsos <tzotsos@opensuse.org>.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
@@ -37,8 +37,11 @@
|
||||
%bcond_with python
|
||||
%endif
|
||||
|
||||
# Tests disabled because they require downloading separate data files
|
||||
%bcond_with tests
|
||||
|
||||
Name: insighttoolkit
|
||||
Version: 5.4.0
|
||||
Version: 5.4.3
|
||||
Release: 0
|
||||
Summary: Toolkit for scientific image processing, segmentation, and registration
|
||||
License: Apache-2.0
|
||||
@@ -52,7 +55,6 @@ BuildRequires: fdupes
|
||||
BuildRequires: fftw3-threads-devel
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: gdcm-devel
|
||||
BuildRequires: gtest
|
||||
BuildRequires: hdf5-devel
|
||||
BuildRequires: ninja
|
||||
BuildRequires: pkgconfig
|
||||
@@ -63,7 +65,6 @@ BuildRequires: cmake(double-conversion)
|
||||
BuildRequires: pkgconfig(expat)
|
||||
BuildRequires: pkgconfig(fftw3)
|
||||
BuildRequires: pkgconfig(libjpeg)
|
||||
BuildRequires: pkgconfig(libpcrecpp)
|
||||
BuildRequires: pkgconfig(libpng)
|
||||
BuildRequires: pkgconfig(libtiff-4)
|
||||
BuildRequires: pkgconfig(libxml-2.0)
|
||||
@@ -91,7 +92,6 @@ Requires: vtk-devel
|
||||
Requires: pkgconfig(expat)
|
||||
Requires: pkgconfig(fftw3)
|
||||
Requires: pkgconfig(libjpeg)
|
||||
Requires: pkgconfig(libpcrecpp)
|
||||
Requires: pkgconfig(libpng)
|
||||
Requires: pkgconfig(libtiff-4)
|
||||
Requires: pkgconfig(libxml-2.0)
|
||||
@@ -128,7 +128,6 @@ This package provides the modules for ITK's python bindings.
|
||||
%autosetup -p1 -n %{tarname}-%{version}
|
||||
|
||||
%build
|
||||
# Tests disabled because no KWStyle pkg for openSUSE
|
||||
%cmake \
|
||||
-DITK_INSTALL_LIBRARY_DIR:PATH=%{_lib}/ \
|
||||
-DITK_INSTALL_INCLUDE_DIR:PATH=include/%{name}/ \
|
||||
@@ -137,17 +136,17 @@ This package provides the modules for ITK's python bindings.
|
||||
-DITK_INSTALL_DOC_DIR=share/doc/packages/%{name}/ \
|
||||
-DBUILD_EXAMPLES:BOOL=ON \
|
||||
-DBUILD_SHARED_LIBS:BOOL=ON \
|
||||
-DBUILD_TESTING:BOOL=OFF \
|
||||
-DBUILD_TESTING:BOOL=%{?with_tests:ON}%{!?with_tests:OFF} \
|
||||
-DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=ON \
|
||||
-DITK_USE_FFTWD:BOOL=ON \
|
||||
-DITK_USE_FFTWF:BOOL=ON \
|
||||
-DITK_USE_KWSTYLE:BOOL=OFF \
|
||||
-DITK_USE_SYSTEM_LIBRARIES:BOOL=ON \
|
||||
-DITK_USE_SYSTEM_CASTXML:BOOL=ON \
|
||||
-DITK_USE_SYSTEM_GDCM:BOOL=ON \
|
||||
-DITK_USE_SYSTEM_GOOGLETEST:BOOL=OFF \
|
||||
%if %{without system_eigen}
|
||||
-DITK_USE_SYSTEM_EIGEN:BOOL=OFF \
|
||||
%endif
|
||||
-DITK_USE_SYSTEM_SWIG:BOOL=ON \
|
||||
-DITK_USE_SYSTEM_VXL:BOOL=OFF \
|
||||
-DVXL_BUILD_CORE_NUMERICS:BOOL=OFF \
|
||||
-DITK_FORBID_DOWNLOADS=ON \
|
||||
@@ -157,11 +156,17 @@ This package provides the modules for ITK's python bindings.
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
%fdupes %{buildroot}/%{_prefix}
|
||||
|
||||
%post -n %{libname} -p /sbin/ldconfig
|
||||
%postun -n %{libname} -p /sbin/ldconfig
|
||||
# Installed using %%license anyway
|
||||
rm %{buildroot}/%{_docdir}/%{name}/{LICENSE,NOTICE}
|
||||
|
||||
%if %{with tests}
|
||||
%check
|
||||
%ctest
|
||||
%endif
|
||||
|
||||
%ldconfig_scriptlets -n %{libname}
|
||||
|
||||
%files -n %{libname}
|
||||
%license LICENSE NOTICE
|
||||
|
Reference in New Issue
Block a user