Compare commits

..

2 commits

Author SHA1 Message Date
Luya Tshimbalanga
4aa84e09e8 Update to 1.7.5. 2017-12-25 23:22:38 -08:00
Simone Caronni
78dd4640b1 Update to 1.7.3 2017-09-11 15:01:50 +02:00
4 changed files with 60 additions and 70 deletions

22
.gitignore vendored
View file

@ -3,24 +3,4 @@
/alembic-1.7.3.tar.gz
/alembic-1.7.4.tar.gz
/alembic-1.7.5.tar.gz
/alembic-1.7.6.tar.gz
/alembic-1.7.7.tar.gz
/alembic-1.7.8.tar.gz
/alembic-1.7.11.tar.gz
/alembic-1.7.12.tar.gz
/alembic-1.7.11-0002-Find-IlmBase-by-setting-a-proper-ILMBASE_ROOT-value.patch
/alembic-1.7.13.tar.gz
/alembic-1.7.15.tar.gz
/alembic-1.7.16.tar.gz
/alembic-1.8.0_beta2.tar.gz
/alembic-1.8.0.tar.gz
/alembic-1.8.1.tar.gz
/alembic-1.8.2.tar.gz
/alembic-1.8.3.tar.gz
/alembic-1.8.4.tar.gz
/alembic-1.8.5.tar.gz
/alembic-1.8.6.tar.gz
/alembic-1.8.7.tar.gz
/alembic-1.8.8.tar.gz
/alembic-1.8.9.tar.gz
/alembic-1.8.10.tar.gz

View file

@ -1,23 +1,16 @@
# Force out of source build
%undefine __cmake_in_source_build
#%%global prerelease _beta2
# TODO:
# Python Module
Name: alembic
Version: 1.8.10
Release: %autorelease
Version: 1.7.5
Release: 1%{?dist}
Summary: Open framework for storing and sharing scene data
License: BSD-3-Clause AND BSL-1.0
License: BSD
URL: http://alembic.io/
Source0: https://github.com/%{name}/%{name}/archive/%{version}%{?prerelease}.tar.gz#/%{name}-%{version}%{?prerelease}.tar.gz
BuildRequires: boost-devel
BuildRequires: cmake >= 3.13
BuildRequires: gcc-c++
Source0: https://github.com/%{name}/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: cmake
BuildRequires: hdf5-devel
BuildRequires: cmake(Imath)
BuildRequires: pkgconfig(zlib)
BuildRequires: OpenEXR-devel
BuildRequires: zlib-devel
%description
Alembic is an open computer graphics interchange framework. Alembic distills
@ -38,41 +31,53 @@ rendered image data.
%package devel
Summary: Development files for %{name}
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
Requires: %{name}%{?_isa} = %{version}-%{release}
Requires: cmake%{?_isa}
Requires: imath-devel%{?_isa}
%description devel
The %{name}-devel package contains libraries and header files for developing
applications that use %{name}.
%prep
%autosetup -p1 -n %{name}-%{version}%{?prerelease}
%autosetup -p1
sed -i -e 's/ConfigPackageLocation lib/ConfigPackageLocation %{_lib}/g' \
# Hardcoded library path
sed -i -e 's/INSTALL_DIR lib/INSTALL_DIR %{_lib}/g' CMakeLists.txt
sed -i \
-e 's/DESTINATION lib/DESTINATION %{_lib}/g' \
-e 's/ConfigPackageLocation lib/ConfigPackageLocation %{_lib}/g' \
lib/Alembic/CMakeLists.txt
iconv -f iso8859-1 -t utf-8 ACKNOWLEDGEMENTS.txt > ACKNOWLEDGEMENTS.txt.conv && \
mv -f ACKNOWLEDGEMENTS.txt.conv ACKNOWLEDGEMENTS.txt
mkdir build
%build
pushd build
export CXXFLAGS="%{optflags} -Wl,--as-needed"
%cmake %{?_cmake_skip_rpath} \
-DALEMBIC_LIB_INSTALL_DIR=%{_libdir} \
-DALEMBIC_SHARED_LIBS=ON \
-DCMAKE_CXX_STANDARD=17 \
-DUSE_BINARIES=ON \
-DUSE_HDF5=ON \
-DUSE_EXAMPLES=ON \
-DUSE_PYALEMBIC=OFF \
-DUSE_STATIC_BOOST=OFF \
-DUSE_STATIC_HDF5=OFF \
-DUSE_TESTS=ON
-DUSE_TESTS=ON \
..
%cmake_build
%make_build
popd
%install
%cmake_install
pushd build
%make_install
popd
%post libs -p /sbin/ldconfig
%postun libs -p /sbin/ldconfig
%files
%{_bindir}/abcconvert
@ -94,4 +99,32 @@ export CXXFLAGS="%{optflags} -Wl,--as-needed"
%{_libdir}/libAlembic.so
%changelog
%autochangelog
* Mon Dec 25 2017 Luya Tshimbalanga <luya@fedoraproject.org> - 1.7.5-1
- Update to 1.7.5.
* Sat Oct 28 2017 Luya Tshimbalanga <luya@fedoraproject.org> - 1.7.4-1
- Update to 1.7.4.
* Mon Sep 11 2017 Simone Caronni <negativo17@gmail.com> - 1.7.3-1
- Update to 1.7.3.
* Sun Aug 06 2017 Björn Esser <besser82@fedoraproject.org> - 1.7.2-4
- Rebuilt for AutoReq cmake-filesystem
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Sun Jul 23 2017 Simone Caronni <negativo17@gmail.com> - 1.7.2-1
- Update to 1.7.2.
* Tue May 09 2017 Simone Caronni <negativo17@gmail.com> - 1.7.1-3
- Link to hdf5 libraries, fixes undefined references on some architectures.
* Sat May 06 2017 Simone Caronni <negativo17@gmail.com> - 1.7.1-2
- Review fixes.
* Mon Apr 24 2017 Simone Caronni <negativo17@gmail.com> - 1.7.1-1
- First build.

View file

@ -1,23 +0,0 @@
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> 1.8.3-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> 1.8.3-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Sun Nov 21 2021 Orion Poplawski <orion@nwra.com> 1.8.3-2
- Rebuild for hdf5 1.12.1
* Sun Sep 12 2021 Luya Tshimbalanga <luya@fedoraproject.org> 1.8.3-1
- Update to 1.8.3
* Sat Aug 21 2021 Richard Shaw <hobbes1069@gmail.com> 1.8.2-6
- Rebuild for OpenEXR/Imath 3.1.
* Tue Aug 10 2021 Orion Poplawski <orion@nwra.com> 1.8.2-5
- Rebuild for hdf5 1.10.7
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> 1.8.2-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> 1.8.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild

View file

@ -1 +1 @@
SHA512 (alembic-1.8.10.tar.gz) = 0be292e9d75560891d38129eb2672c55475b29b33f265dd51396dfa7b530c92ac6dfdb05a4432ad1b6919e2c151068560eb04efb8d9b0c2a14f77ab489d3542c
SHA512 (alembic-1.7.5.tar.gz) = 9e8c9a29661d4cec16dbc77014188a07112c78b011c48fb5e9c2107512926e2cdd43f65e732c456574e07947afc4e53e200753ca59430f011e6fc8ea31041fc0