117 lines
3.7 KiB
RPMSpec
117 lines
3.7 KiB
RPMSpec
![]() |
#
|
||
|
# spec file for package orthanc-python
|
||
|
#
|
||
|
# Copyright (c) 2025 SUSE LLC and contributors
|
||
|
# Copyright (c) 2020-2025 Dr. Axel Braun
|
||
|
#
|
||
|
# All modifications and additions to the file contributed by third parties
|
||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||
|
# upon. The license for this file, and modifications and additions to the
|
||
|
# file, is the same license as for the pristine package itself (unless the
|
||
|
# license for the pristine package is not an Open Source License, in which
|
||
|
# case the license is the MIT License). An "Open Source License" is a
|
||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||
|
# published by the Open Source Initiative.
|
||
|
|
||
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||
|
#
|
||
|
|
||
|
|
||
|
%{?sle15_python_module_pythons}
|
||
|
Name: orthanc-python
|
||
|
Version: 6.0
|
||
|
Release: 0
|
||
|
Summary: Python plugin for Orthanc
|
||
|
License: AGPL-3.0-or-later
|
||
|
Group: Productivity/Graphics/Viewers
|
||
|
URL: https://orthanc-server.com
|
||
|
Source0: https://orthanc.uclouvain.be/downloads/sources/%{name}/OrthancPython-%{version}.tar.gz
|
||
|
Source11: orthanc-python-readme.openSUSE
|
||
|
BuildRequires: cmake
|
||
|
%if 0%{?suse_version} == 1500 && 0%{?sle_version} > 150200
|
||
|
BuildRequires: gcc13-c++
|
||
|
%else
|
||
|
BuildRequires: gcc-c++
|
||
|
%endif
|
||
|
BuildRequires: jsoncpp-devel
|
||
|
BuildRequires: libboost_atomic-devel >= 1.66
|
||
|
BuildRequires: libboost_date_time-devel >= 1.66
|
||
|
BuildRequires: libboost_filesystem-devel >= 1.66
|
||
|
BuildRequires: libboost_iostreams-devel >= 1.66
|
||
|
BuildRequires: libboost_locale-devel >= 1.66
|
||
|
BuildRequires: libboost_regex-devel >= 1.66
|
||
|
BuildRequires: libboost_system-devel >= 1.66
|
||
|
BuildRequires: libboost_thread-devel >= 1.66
|
||
|
BuildRequires: libuuid-devel
|
||
|
BuildRequires: orthanc-devel >= 1.10
|
||
|
BuildRequires: orthanc-source
|
||
|
BuildRequires: pkgconfig
|
||
|
BuildRequires: python3-devel
|
||
|
BuildRequires: python3-pystache
|
||
|
BuildRequires: unzip
|
||
|
BuildRequires: pkgconfig(python3)
|
||
|
Requires: orthanc
|
||
|
|
||
|
%description
|
||
|
This plugin can be used to write Orthanc plugins in Python instead of C++
|
||
|
See %{_docdir}/orthanc/orthanc-python-readme.openSUSE
|
||
|
|
||
|
%prep
|
||
|
%autosetup -n OrthancPython-%{version}
|
||
|
|
||
|
echo %{python3_version}
|
||
|
|
||
|
%build
|
||
|
%if 0%{?suse_version} == 1500 && 0%{?sle_version} > 150200
|
||
|
export CC=gcc-13
|
||
|
export CXX=g++-13
|
||
|
%endif
|
||
|
%cmake .. \
|
||
|
-DALLOW_DOWNLOADS=OFF \
|
||
|
-DUSE_SYSTEM_GOOGLE_TEST=ON \
|
||
|
-DUSE_SYSTEM_ORTHANC_SDK=ON \
|
||
|
-DORTHANC_FRAMEWORK_SOURCE=path \
|
||
|
-DBoost_NO_BOOST_CMAKE=ON \
|
||
|
-DPYTHON_VERSION=%{python3_version} \
|
||
|
-DORTHANC_FRAMEWORK_ROOT=%{_prefix}/src/orthanc/OrthancFramework/Sources \
|
||
|
-DLIB_INSTALL_DIR=%{_libdir}/share/orthanc/plugins/
|
||
|
|
||
|
%cmake_build %{?_smp_mflags}
|
||
|
|
||
|
%install
|
||
|
%cmake_install
|
||
|
|
||
|
# architecture dependet files should not be in /usr/share...
|
||
|
# create a directory
|
||
|
mkdir -p -m 755 %{buildroot}%{_libdir}/share/orthanc/plugins
|
||
|
mkdir -p -m 755 %{buildroot}%{_docdir}/orthanc
|
||
|
|
||
|
mv %{buildroot}%{_datadir}/orthanc/plugins/*.so* %{buildroot}%{_libdir}/share/orthanc/plugins/.
|
||
|
|
||
|
#Link from lib64 to orthanc plugin-directory, where it is expected
|
||
|
ln -s ../../../..%{_libdir}/share/orthanc/plugins/libOrthancPython.so.%{version} \
|
||
|
%{buildroot}%{_datadir}/orthanc/plugins/libOrthancPython.so
|
||
|
|
||
|
rm %{buildroot}%{_libdir}/share/orthanc/plugins/*.so
|
||
|
|
||
|
cp %{SOURCE11} %{buildroot}%{_docdir}/orthanc/.
|
||
|
|
||
|
rm %{buildroot}/usr/orthanc.pyi
|
||
|
|
||
|
%post -p /sbin/ldconfig
|
||
|
%postun -p /sbin/ldconfig
|
||
|
|
||
|
%files
|
||
|
%license COPYING
|
||
|
%dir %{_docdir}/orthanc
|
||
|
%{_docdir}/orthanc/*
|
||
|
%dir %{_libdir}/share
|
||
|
%dir %{_libdir}/share/orthanc
|
||
|
%dir %{_libdir}/share/orthanc/plugins
|
||
|
%{_libdir}/share/orthanc/plugins/*.so*
|
||
|
%dir %{_datadir}/orthanc
|
||
|
%dir %{_datadir}/orthanc/plugins
|
||
|
%{_datadir}/orthanc/plugins/*.so*
|
||
|
|
||
|
%changelog
|