openvdb/openvdb.spec

206 lines
6.5 KiB
RPMSpec
Raw Normal View History

2017-05-08 12:57:22 +00:00
%global python_version %(%{__python2} -c "import sys ; print(sys.version[:3])")
%{!?python2_sitearch: %global python2_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
Name: openvdb
2018-03-02 03:43:17 +00:00
Version: 5.0.0
Release: 2%{?dist}
2017-05-08 12:57:22 +00:00
Summary: C++ library for sparse volumetric data discretized on three-dimensional grids
License: MPLv2.0
URL: http://www.openvdb.org/
Source0: https://github.com/dreamworksanimation/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
Patch1: fix-compatibility-boost.patch
2017-05-08 12:57:22 +00:00
BuildRequires: blosc-devel >= 1.5.0
BuildRequires: boost-devel >= 1.57.0
BuildRequires: cmake >= 2.8
BuildRequires: cppunit-devel >= 1.10
BuildRequires: doxygen >= 1.8.11
BuildRequires: epydoc
BuildRequires: gcc-c++
2017-05-08 12:57:22 +00:00
BuildRequires: ghostscript >= 8.70
BuildRequires: glfw-devel >= 2.7
BuildRequires: ilmbase-devel
BuildRequires: libXi-devel
BuildRequires: log4cplus-devel >= 1.0
BuildRequires: OpenEXR-devel
BuildRequires: python2
2017-05-08 12:57:22 +00:00
BuildRequires: python2-numpy
BuildRequires: python2-devel
2017-05-08 12:57:22 +00:00
BuildRequires: tbb-devel >= 3.0
BuildRequires: zlib-devel
%description
OpenVDB is an Academy Award-winning open-source C++ library comprising a novel
hierarchical data structure and a suite of tools for the efficient storage and
manipulation of sparse volumetric data discretized on three-dimensional grids.
It is developed and maintained by DreamWorks Animation for use in volumetric
applications typically encountered in feature film production.
This package contains some graphical tools.
%package libs
Summary: Core OpenVDB libraries
%description libs
OpenVDB is an Academy Award-winning open-source C++ library comprising a novel
hierarchical data structure and a suite of tools for the efficient storage and
manipulation of sparse volumetric data discretized on three-dimensional grids.
It is developed and maintained by DreamWorks Animation for use in volumetric
applications typically encountered in feature film production.
%package devel
Summary: Development files for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
The %{name}-devel package contains libraries and header files for developing
applications that use %{name}.
%package python2
2017-05-08 12:57:22 +00:00
Summary: OpenVDB Python module
Requires: %{name}%{?_isa} = %{version}-%{release}
Obsoletes: %{name}-python < 4.0.1-5
Provides: %{name}-python = %{version}-%{release}
2017-05-08 12:57:22 +00:00
%description python2
2017-05-08 12:57:22 +00:00
OpenVDB is an Academy Award-winning open-source C++ library comprising a novel
hierarchical data structure and a suite of tools for the efficient storage and
manipulation of sparse volumetric data discretized on three-dimensional grids.
It is developed and maintained by DreamWorks Animation for use in volumetric
applications typically encountered in feature film production.
This package contains the Python module.
2017-05-08 13:02:54 +00:00
%package doc
Summary: Documentation for %{name}
BuildArch: noarch
%description doc
The %{name}-doc package contains documentation for developing applications that
use %{name}.
2017-05-08 12:57:22 +00:00
%prep
%autosetup -p1
2017-05-08 12:57:22 +00:00
2017-05-08 13:02:54 +00:00
iconv -f iso8859-1 -t utf-8 %{name}/CHANGES > %{name}/CHANGES.conv && \
mv -f %{name}/CHANGES.conv %{name}/CHANGES
2017-05-08 12:57:22 +00:00
# Hardcoded paths for installation, as described in the INSTALL file
2017-09-12 10:06:17 +00:00
sed -i -e 's|lib$|%{_lib}|g' -e 's|lib/python|%{_lib}/python|g' \
%{name}/CMakeLists.txt %{name}/python/CMakeLists.txt
2017-05-08 12:57:22 +00:00
# Save Makefile that contains doc building instructions, new cmake build system
# does not build docs yet
cp %{name}/Makefile %{name}/Makefile.docbuild
%build
2017-05-08 13:02:54 +00:00
export CXXFLAGS="%{optflags} -Wl,--as-needed"
2017-05-08 12:57:22 +00:00
%cmake \
-DBLOSC_LOCATION=%{_prefix} \
-DCPPUNIT_LOCATION=%{_prefix} \
-DGLEW_LOCATION=%{_prefix} \
-DGLFW3_LOCATION=%{_prefix} \
-DILMBASE_NAMESPACE_VERSIONING=OFF \
-DILMBASE_LOCATION=%{_prefix} \
-DOPENEXR_LOCATION=%{_prefix} \
-DOPENEXR_NAMESPACE_VERSIONING=OFF \
-DOPENVDB_ENABLE_RPATH=OFF \
-DOPENVDB_ABI_VERSION_NUMBER=3 \
2017-05-08 12:57:22 +00:00
-DPYTHON_VERSION=%{python_version} \
-DTBB_LOCATION=%{_prefix} \
-DUSE_GLFW3=True
%make_build
# Build docs with previously saved Makefile
pushd %{name}
make -f Makefile.docbuild doc
popd
## vdb_unit_test fails everywhere with gcc-c++ 8.x
#%%ifarch x86_64
#%%check
#%%make test
#%%endif
2017-05-08 12:57:22 +00:00
%install
%make_install
# Remove CMakeFiles from includes
2017-05-08 13:02:54 +00:00
rm -fr %{buildroot}/%{_includedir}/%{name}/CMakeFiles
2017-05-08 12:57:22 +00:00
# Let RPM pick up HTML documents in the files section
rm -fr %{buildroot}/%{_datadir}/doc
find %{buildroot} -name '*.a' -delete
#%%post libs -p /sbin/ldconfig
2017-05-08 12:57:22 +00:00
#%%postun libs -p /sbin/ldconfig
2017-05-08 12:57:22 +00:00
%files
%{_bindir}/vdb_view
%{_bindir}/vdb_print
%{_bindir}/vdb_render
%files libs
%license %{name}/LICENSE %{name}/COPYRIGHT
%doc README.md %{name}/CHANGES
%{_libdir}/*.so.*
%files python2
2017-05-08 12:57:22 +00:00
%{_libdir}/python%{python_version}/py%{name}.so
%files devel
%{_includedir}/*
%{_libdir}/*.so
2017-05-08 13:02:54 +00:00
%files doc
%doc %{name}/doc/html
2017-05-08 12:57:22 +00:00
%changelog
* Sun Mar 04 2018 Luya Tshimbalanga <luya@fedoraproject.org> - 5.0.0-2
- Added gcc-c++ dependency
- Upstream patch for Boost compability
2018-03-02 03:43:17 +00:00
* Mon Feb 26 2018 Luya Tshimbalanga <luya@fedoraproject.org> - 5.0.0-1
- Update to 5.0.0
- Use new upstream macro for abi compatibility
- Rebuild for Boost 1.66
2018-02-26 00:49:13 +00:00
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
2017-09-12 10:06:17 +00:00
* Mon Sep 11 2017 Simone Caronni <negativo17@gmail.com> - 4.0.2-1
- Update to 4.0.2.
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Sun Jul 23 2017 Simone Caronni <negativo17@gmail.com> - 4.0.1-5
- Rename python subpackage (module) to python2.
2017-07-19 17:02:23 +00:00
* Wed Jul 19 2017 Jonathan Wakely <jwakely@redhat.com> - 4.0.1-4
- Rebuilt for s390x binutils bug
2017-07-18 15:43:28 +00:00
* Tue Jul 18 2017 Jonathan Wakely <jwakely@redhat.com> - 4.0.1-3
- Rebuilt for Boost 1.64
2017-05-08 13:02:54 +00:00
* Sat May 06 2017 Simone Caronni <negativo17@gmail.com> - 4.0.1-2
- Review fixes.
2017-05-08 12:57:22 +00:00
* Sat Apr 22 2017 Simone Caronni <negativo17@gmail.com> - 4.0.1-1
- Update to 4.0.1.
- Perform tests, build HTML documentation.
- Require main OpenVDB library for Python module.
* Wed Nov 23 2016 Simone Caronni <negativo17@gmail.com> - 4.0.0-2
- Update to 4.0.0.
* Sun Oct 16 2016 Simone Caronni <negativo17@gmail.com> - 4.0.0-1.20161015git40271e7
- First build.