%bcond_without perl %bcond_without ruby %bcond_with octave %bcond_without r %bcond_without python3 %if 0%{?fedora} >= 30 %bcond_with python2 %else %bcond_without python2 %endif %bcond_without check %ifarch %{mono_arches} %bcond_without mono %else %bcond_with mono %endif %ifarch s390 s390x %{arm} aarch64 ppc64 ppc64le %bcond_with java %else %bcond_without java %endif # those have special requirements, the rest follows main package name %global octpkg SBML %global perlpkg LibSBML %global rubypkg SBML %global rpkg libSBML %if %{with octave} # Exclude .oct files from provides %global __provides_exclude_from ^%{octpkglibdir}/.*\\.oct$ %endif # Use the same directory of the main package for subpackage licence and docs %global _docdir_fmt %{name} Name: libsbml Version: 5.17.0 Release: 11%{?dist} Summary: Systems Biology Markup Language library License: LGPLv2+ URL: http://sbml.org/Software/libSBML Source0: https://sourceforge.net/projects/sbml/files/libsbml/%{version}/stable/libSBML-%{version}-core-plus-packages-src.tar.gz Source1: https://sourceforge.net/projects/sbml/files/libsbml/%{version}/stable/libSBML-%{version}-render-src.zip ## Unbundle minizip Patch0: libsbml-use-system-minizip-cmake.patch ## Fix library installation paths Patch1: libsbml-fix_install_libpaths.patch ## https://sourceforge.net/p/sbml/libsbml/461/ Patch2: libsbml-%{version}-swigdoc_fix.patch ## https://sourceforge.net/p/sbml/libsbml/463/ Patch3: libsbml-%{version}-fix_bug463.patch BuildRequires: cmake BuildRequires: zlib-devel BuildRequires: bzip2-devel BuildRequires: libxml2-devel BuildRequires: expat-devel BuildRequires: check-devel # Use new minizip starting from fedora 30 # rhbz #1632190 %if 0%{?fedora} == 29 BuildRequires: minizip-compat-devel %endif %if 0%{?fedora} == 28 BuildRequires: minizip-devel %endif %if 0%{?fedora} >= 30 #BuildRequires: minizip-devel >= 2.5.0 %endif BuildRequires: swig BuildRequires: hostname %description LibSBML is an open-source programming library designed to read, write, manipulate, translate, and validate SBML files and data streams. It is not an application itself (though it does come with example programs), but rather a library you can embed in other applications. LibSBML %{version} understands SBML Level 3 Version 1 and older, as well as the draft SBML Level 2 Layout proposal by Gauges, Rost, Sahle and Wegner. It’s written in ISO C and C++ but can also be used from C#, Java, MATLAB, Octave, PERL, Python, and Ruby. %package devel Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} Provides: %{name}-static = %{version}-%{release} %description devel This package contains libraries and header files for developing applications that use libSBML. %if %{with python2} %package -n python2-%{name} BuildRequires: python2-devel Summary: Python 2 bindings for libSBML Requires: %{name}%{?_isa} = %{version}-%{release} %{?python_provide:%python_provide python2-%{name}} %description -n python2-%{name} This package contains %{summary}. This is the version for Python 2. %endif %if %{with python3} %package -n python%{python3_pkgversion}-%{name} BuildRequires: python%{python3_pkgversion}-devel Summary: Python 3 bindings for libSBML Requires: %{name}%{?_isa} = %{version}-%{release} %{?python_provide:%python_provide python%{python3_pkgversion}-%{name}} %description -n python%{python3_pkgversion}-%{name} This package contains %{summary}. This is the version for Python 3. %endif %if %{with perl} %package -n perl-%{perlpkg} BuildRequires: perl(Test::More) BuildRequires: perl(Test::Simple) BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(ExtUtils::Embed) BuildRequires: perl-devel BuildRequires: perl-generators BuildRequires: perl(Test) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) Summary: PERL bindings for libSBML Requires: %{name}%{?_isa} = %{version}-%{release} %description -n perl-%{perlpkg} This package contains %{summary}. %endif %if %{with ruby} %package -n ruby-%{rubypkg} BuildRequires: ruby-devel Requires: ruby(release) Requires: %{name}%{?_isa} = %{version}-%{release} Provides: ruby(%{rubypkg}) = %{version} Summary: Ruby bindings for libSBML %description -n ruby-%{rubypkg} This package contains %{summary}. %endif %if %{with java} %package -n java-%{name} BuildRequires: java-devel BuildRequires: javapackages-tools Requires: java-headless Requires: jpackage-utils Requires: %{name}%{?_isa} = %{version}-%{release} Summary: Java bindings for libSBML %description -n java-%{name} This package contains %{summary}. %endif %if %{with octave} %package -n octave-%{octpkg} BuildRequires: octave-devel Requires: octave(api) = %{octave_api} Requires(post): octave Requires(postun): octave Requires: %{name}%{?_isa} = %{version}-%{release} Summary: Octave bindings for libSBML %description -n octave-%{octpkg} This package contains %{summary}. %endif %if %{with r} %package -n R-%{rpkg} BuildRequires: R-devel BuildRequires: R-core-devel BuildRequires: tex(latex) Requires: R-core Summary: R bindings for libSBML Requires: %{name}%{?_isa} = %{version}-%{release} %description -n R-%{rpkg} This package contains %{summary}. %endif %if %{with mono} %package sharp BuildRequires: mono-core BuildRequires: xerces-c-devel, libxml2-devel, expat-devel Summary: C# bindings for libSBML Requires: mono-core Requires: %{name}%{?_isa} = %{version}-%{release} %description sharp This package contains %{summary}. %endif %if %{with doc} %package doc BuildRequires: doxygen BuildRequires: doxygen-latex BuildRequires: graphviz Summary: API documentation for %{name} Requires: %{name} = %{version}-%{release} ##Granted exception temporarily ##http://fedoraproject.org/wiki/Packaging:No_Bundled_Libraries Provides: bundled(jquery) BuildArch: noarch %description doc This package contains %{summary}. %endif %prep %autosetup -n libSBML-%{version}-Source -N %patch1 -p1 %patch3 -p1 %if %{with python3} %patch2 -p1 %endif unzip -n %{SOURCE1} # https://sourceforge.net/p/sbml/libsbml/391 iconv -f latin1 -t utf8 NEWS.txt > t; touch -r NEWS.txt t; mv t NEWS.txt # Fix invalid shebang # https://sourceforge.net/p/sbml/libsbml/390 for i in `find docs/src/filters -type f \( -name "*.py" \)`; do sed -i -r 's|(#!/usr/bin/env python) +#.*|#!%{__python2}|' $i done # Unbundle minizip on fedora < 30 # This package needs works for using new minizip >= 2.5.0 (rhbz#1632208) %if 0%{?fedora} < 30 rm -v src/sbml/compress/{crypt.h,ioapi.*,iowin32.*,unzip.*,zip.*} %patch0 -p0 %endif grep -e 'This file was automatically generated by SWIG' -r . -l|xargs rm mkdir build-docs cp -a $(/bin/ls -1|grep -v build-docs) build-docs/ %build mkdir -p build2 build pushd build2 %{set_build_flags} %if %{with python2} # This build is only for Python 2 %cmake -DENABLE_{LAYOUT,QUAL,COMP,FBC,RENDER,GROUPS,MULTI}=ON \ -DCSHARP_COMPILER:FILEPATH=%{_bindir}/mcs \ -DWITH_PYTHON:BOOL=ON \ %if %{with check} -DWITH_CHECK=ON \ %endif -DPYTHON_INCLUDE_DIR:PATH=%{_includedir}/python%{python2_version} \ -DPYTHON_LIBRARY:FILEPATH=%{_libdir}/libpython%{python2_version}.so \ -DPYTHON_EXECUTABLE:FILEPATH=%{__python2} \ -DCMAKE_INSTALL_LIBDIR:PATH=%{_libdir} \ -DWITH_LIBXML:BOOL=ON \ -DWITH_EXPAT:BOOL=OFF \ -DWITH_MATLAB:BOOL=OFF \ -Wno-dev -DEXIT_ON_ERROR:BOOL=ON \ .. %make_build %endif pushd ../build %{set_build_flags} %cmake -DENABLE_{LAYOUT,QUAL,COMP,FBC,RENDER,GROUPS,MULTI}=ON \ -DCSHARP_COMPILER:FILEPATH=%{_bindir}/mcs \ %if %{with python3} -DWITH_PYTHON:BOOL=ON \ -DPYTHON_INCLUDE_DIR:PATH=%{_includedir}/python%{python3_version}m \ -DPYTHON_LIBRARY:FILEPATH=%{_libdir}/libpython%{python3_version}m.so \ -DPYTHON_EXECUTABLE:FILEPATH=%{__python3} \ %endif %if %{with perl} -DWITH_PERL:BOOL=ON \ -DPERL_EXECUTABLE:FILEPATH=%{_bindir}/perl \ -DPERL_INCLUDE_PATH:PATH=%{_libdir}/perl5/CORE \ -DPERL_LIBRARY:FILEPATH=%{_libdir}/libperl.so \ %endif %if %{with ruby} -DWITH_RUBY:BOOL=ON \ -DRUBY_SITEARCH_DIR:PATH=%{ruby_sitearchdir} \ -DRUBY_SITELIB_DIR:PATH=%{ruby_sitelibdir} \ -DRUBY_VENDORARCH_DIR:PATH=%{ruby_vendorarchdir} \ -DRUBY_VENDORLIB_DIR:PATH=%{ruby_vendorlibdir} \ -DRUBY_HAS_VENDOR_RUBY:BOOL=ON \ %endif %if %{with java} -DWITH_JAVA:BOOL=ON \ -DWITH_JAVASCRIPT:BOOL=OFF \ -DWITH_SWIG:BOOL=ON \ %endif %if %{with octave} -DWITH_OCTAVE:BOOL=ON \ %endif %if %{with r} -DWITH_R:BOOL=ON \ -DR_INCLUDE_DIRS:PATH=%{_includedir}/R \ %endif %if %{with mono} -DWITH_CSHARP:BOOL=ON \ -DWITH_XERCES:BOOL=OFF \ -DWITH_LIBXML:BOOL=ON \ -DWITH_EXPAT:BOOL=OFF \ -DWITH_SWIG:BOOL=ON \ %endif %if %{with check} -DWITH_CHECK=ON \ %endif -DCMAKE_INSTALL_LIBDIR:PATH=%{_libdir} \ -DCMAKE_BUILD_TYPE:STRING=Release \ -DCMAKE_SKIP_RPATH:BOOL=YES \ -DCMAKE_SKIP_INSTALL_RPATH:BOOL=YES \ -DWITH_MATLAB:BOOL=OFF \ -Wno-dev -DEXIT_ON_ERROR:BOOL=ON \ .. %make_build pushd ../build-docs %configure --disable-static \ --with-expat=no \ --with-libxml=yes \ %if %{with doc} --with-doxygen \ %endif %if %{with python} --with-python --with-python-interpreter=%{__python3} \ %endif --enable-layout --enable-comp --enable-fbc --enable-qual %if %{with doc} cp ../build/src/bindings/python/libsbml-doxygen.py src/bindings/python/ %make_build docs %endif %make_build libsbml.pc %install %if %{with python2} %make_install -C build2 %endif %make_install -C build rm -f %{buildroot}%{_datadir}/%{name}/*.txt %if %{with octave} chmod 0755 %{buildroot}%{octpkglibdir}/*.mex mkdir -p %{buildroot}%{octpkgdir}/packinfo install -pm 644 COPYING.txt README* %{buildroot}%{octpkgdir}/packinfo %endif %if %{with java} mkdir -p %{buildroot}%{_libdir}/%{name} %{buildroot}%{_jnidir} mv %{buildroot}%{_javadir}/libsbmlj.jar %{buildroot}%{_jnidir}/ mv %{buildroot}%{_libdir}/libsbmlj.so %{buildroot}%{_libdir}/%{name}/ %endif %if %{with r} mkdir -p %{buildroot}%{_libdir}/R/library R CMD INSTALL -l %{buildroot}%{_libdir}/R/library build/src/bindings/r/%{rpkg}_%{version}_R_*.tar.gz rm -rf %{buildroot}%{_libdir}/R/library/%{rpkg}/R.css %endif %if %{with doc} make -C build-docs install-docs DESTDIR=%{buildroot} mv %{buildroot}%{_pkgdocdir}-%{version} %{buildroot}%{_pkgdocdir} %endif make -C build-docs install-pc DESTDIR=%{buildroot} %if %{with ruby} install -Dm0644 src/bindings/ruby/README.txt %{buildroot}%{_pkgdocdir}/README-ruby.txt %endif %if %{with check} %check %if %{with python2} export CK_FORK=no pushd build2 ctest --force-new-ctest-process -VV \ -E "test_ruby_binding" popd %endif pushd build ctest --force-new-ctest-process -VV \ -E "test_ruby_binding" popd %endif %ldconfig_scriptlets %files %license COPYING.txt LICENSE.txt %doc AUTHORS.txt README* NEWS.txt OLD_NEWS.txt %{_libdir}/*.so.* ##This directory provides just some txt documentation files %exclude %{_datadir}/libsbml %if %{with doc} %exclude %{_pkgdocdir}/*-api %endif %files devel %{_includedir}/sbml/ %{_libdir}/*.so %{_libdir}/libsbml-static.a %{_libdir}/cmake/sbml-*.cmake %{_libdir}/pkgconfig/%{name}.pc %if %{with python2} %license COPYING.txt LICENSE.txt %files -n python2-%{name} %{python2_sitearch}/%{name}.pth %{python2_sitearch}/%{name} %endif %if %{with python3} %files -n python%{python3_pkgversion}-%{name} %license COPYING.txt LICENSE.txt %{python3_sitearch}/%{name}.pth %{python3_sitearch}/%{name} %endif %if %{with perl} %files -n perl-%{perlpkg} %license COPYING.txt LICENSE.txt %{perl_vendorarch}/* %exclude %dir %{perl_vendorarch}/auto/ %endif %if %{with ruby} %files -n ruby-%{rubypkg} %license COPYING.txt LICENSE.txt %doc %{_pkgdocdir}/README-ruby.txt %{ruby_vendorarchdir}/*.so %endif %if %{with java} %files -n java-%{name} %license COPYING.txt LICENSE.txt %{_jnidir}/libsbmlj.jar %dir %{_libdir}/%{name} %{_libdir}/%{name}/libsbmlj.so %endif %if %{with octave} %files -n octave-%{octpkg} %dir %{octpkgdir} %{octpkgdir}/packinfo/COPYING.txt %{octpkgdir}/packinfo/README* %{octpkglibdir}/ %endif %if %{with r} %files -n R-%{rpkg} %license COPYING.txt LICENSE.txt %{_libdir}/R/library/%{rpkg}/ %endif %if %{with mono} %files sharp %license COPYING.txt LICENSE.txt %{_monodir}/libsbmlcsP/ %endif %if %{with doc} %files doc %{_pkgdocdir}/cpp-api # Binding docs are here too, as a compromise. Making a separate # python-libsbml-doc seems overkill, but including them in an arched # package is not nice. %{_pkgdocdir}/python-api %endif %changelog * Thu Nov 08 2018 Orion Poplawski - 5.17.0-11 - Rebuild for octave 4.4 * Mon Sep 24 2018 Antonio Trande - 5.17.0-10 - Bundle minizip on fedora 30+ (rhbz#1632190) (upstream bug #466) * Tue Sep 04 2018 Pavel Raiskup - 5.17.0-9 - rebuild against minizip-compat-devel, rhbz#1609830, rhbz#1615381 * Sun Sep 02 2018 Antonio Trande - 5.17.0-8 - Deprecate python2 on fedora 30+ * Fri Jul 13 2018 Fedora Release Engineering - 5.17.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Tue Jul 03 2018 Petr Pisar - 5.17.0-6 - Perl 5.28 rebuild * Fri Jun 29 2018 Jitka Plesnikova - 5.17.0-5 - Perl 5.28 rebuild * Thu Jun 28 2018 Antonio Trande - 5.17.0-4 - Fix upstream bug #463 * Wed Jun 27 2018 Antonio Trande - 5.17.0-3 - Fix Python37 compiling error (upstream bug #461) (bz#1594498) * Tue Jun 19 2018 Miro Hrončok - 5.17.0-2 - Rebuilt for Python 3.7 * Fri Jun 01 2018 Antonio Trande - 5.17.0-1 - Update to 5.17.0 * Fri May 18 2018 Tom Callaway - 5.16.0-9 - explicitly BR: javapackages-tools so that we have java macros * Thu May 17 2018 Tom Callaway - 5.16.0-8 - rebuild for R 3.5.0 * Fri Apr 20 2018 Antonio Trande - 5.16.0-7 - Minor fix * Fri Apr 20 2018 Antonio Trande - 5.16.0-6 - Provide the static library (required by other packages) - Add Provides tag * Wed Mar 07 2018 Antonio Trande - 5.16.0-5 - Obsoletes octave-SBML < 5.15.0 * Sat Feb 10 2018 Antonio Trande - 5.16.0-4 - Use %%ldconfig_scriptlets * Wed Feb 07 2018 Fedora Release Engineering - 5.16.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Fri Jan 05 2018 Mamoru TASAKA - 5.16.0-2 - F-28: rebuild for ruby25 * Fri Dec 08 2017 Antonio Trande - 5.16.0-1 - Update to 5.16.0 * Thu Oct 26 2017 Vít Ondruch - 5.15.0-7 - Drop the explicit dependnecy on rubypick. * Thu Aug 03 2017 Fedora Release Engineering - 5.15.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild * Wed Jul 26 2017 Fedora Release Engineering - 5.15.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Sun Jun 04 2017 Jitka Plesnikova - 5.15.0-4 - Perl 5.26 rebuild * Sat Apr 15 2017 Antonio Trande - 5.15.0-3 - Undo latest change - Does not provide static library files * Fri Apr 14 2017 Antonio Trande - 5.15.0-2 - Provide static library files * Tue Apr 11 2017 Antonio Trande - 5.15.0-1 - Update to 5.15.0 (stable) - Disable Octave binding (bugged) * Fri Feb 10 2017 Fedora Release Engineering - 5.14.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Thu Jan 12 2017 Vít Ondruch - 5.14.0-3 - Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.4 * Mon Dec 19 2016 Miro Hrončok - 5.14.0-2 - Rebuild for Python 3.6 * Thu Dec 8 2016 Zbigniew Jędrzejewski-Szmek - 5.14.0-1 - Update to latest (experimental) release - Disable test_csharp_bindings_full on i686 (#1402549) * Wed Dec 07 2016 Orion Poplawski - Rebuild for octave 4.2 * Tue Aug 16 2016 Antonio Trande - 5.13.0-5 - Rebuild for Python 3.5.2 * Tue Jul 19 2016 Fedora Release Engineering - 5.13.0-4 - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages * Tue May 17 2016 Jitka Plesnikova - 5.13.0-3 - Perl 5.24 rebuild * Mon Apr 18 2016 Antonio Trande - 5.13.0-2 - Fixed BR packages for Perl * Mon Apr 18 2016 Antonio Trande - 5.13.0-1 - Update to 5.13.0 (stable) - Removed _hardened_build definition for F <23 - Old patch dropped * Thu Feb 04 2016 Fedora Release Engineering - 5.12.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild * Thu Jan 21 2016 Antonio Trande - 5.12.0-6 - Python2 sub-package renamed * Thu Jan 21 2016 Antonio Trande - 5.12.0-5 - Defined rubypick as BuildRequires for ruby-SBML - Defined Ruby paths * Tue Jan 12 2016 Vít Ondruch - 5.12.0-4 - Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.3 * Sat Dec 12 2015 Antonio Trande - 5.12.0-3 - Tests enabled * Fri Dec 11 2015 Zbigniew Jędrzejewski-Szmek - 5.12.0-2 - Try to build without clang * Sat Nov 14 2015 Antonio Trande - 5.12.0-1 - Update to 5.12.0 - Added patch(#2) for the formatter with Python3.5 * Wed Nov 11 2015 Fedora Release Engineering - 5.11.6-10 - Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 * Tue Nov 10 2015 Antonio Trande - 5.11.6-9 - Rebuilt again * Tue Nov 10 2015 Fedora Release Engineering - 5.11.6-8 - Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 * Sun Nov 01 2015 Antonio Trande - 5.11.6-7 - Tests enabled except for Ruby - clang compiler not used on s390 s390x ppc64 ppc64le - Hardened builds on - 5.11.6-6 - perl-Test required on F24 * Wed Oct 28 2015 Antonio Trande - 5.11.6-5 - Rebuild for cmake upgrade - Disabled Perl and Ruby bindings test * Mon Jul 27 2015 Antonio Trande - 5.11.6-4 - Disabled 'parallel make' for language bindings * Mon Jul 27 2015 Antonio Trande - 5.11.6-3 - Compiled the core-plus source archive * Thu Jul 23 2015 Antonio Trande - 5.11.6-2 - Some tests disabled * Thu Jul 23 2015 Antonio Trande - 5.11.6-1 - Bump to the release 5.11.6 (experimental) * Wed Jul 22 2015 Antonio Trande - 5.11.5-0.13.20150528svn22272 - Tests disabled on PPC s390x arches * Sat Jul 18 2015 Antonio Trande - 5.11.5-0.12.20150528svn22272 - Tests disabled on ARM aarch64 * Tue Jul 7 2015 Zbigniew Jędrzejewski-Szmek - 5.11.5-0.11.20150528svn22272 - Rebuild for octave 4.0.0 * Sat Jun 20 2015 Antonio Trande - 5.11.5-0.10.20150528svn22272 - Enabled tests of binding libraries * Thu Jun 18 2015 Antonio Trande - 5.11.5-0.9.20150528svn22272 - All tests enabled * Thu Jun 18 2015 Antonio Trande - 5.11.5-0.8.20150528svn22272 - Excluded failed tests * Wed Jun 17 2015 Fedora Release Engineering - 5.11.5-0.7.20150528svn22272 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild * Sat Jun 06 2015 Jitka Plesnikova - 5.11.5-0.6.20150528svn22272 - Perl 5.22 rebuild * Thu Jun 04 2015 Antonio Trande - 5.11.5-0.5.20150528svn22272 - Rebuild again * Thu Jun 04 2015 Antonio Trande - 5.11.5-0.4.20150528svn22272 - Performed all tests in F23 * Wed Jun 03 2015 Antonio Trande - 5.11.5-0.3.20150528svn22272 - Exclude 'test_csharp_bindings_full' and 'test_ruby_binding' test in - 5.11.5-0.2.20150528svn22272 - Exclude 'test_csharp_bindings_full' test in ARM - Use clang++ in >F22 * Thu May 28 2015 Antonio Trande - 5.11.5-0.1.20150528svn22272 - Update to svn pre-release #22272 - clang++ set as compiler on >F22 - Set C# compiler on >F22 * Thu May 28 2015 Antonio Trande - 5.11.4-1 - Update to 5.11.4 - clang++ set as compiler * Sat Feb 21 2015 Zbigniew Jędrzejewski-Szmek - 5.11.0-11 - Disable -java and -mono on arch: they crash in tests * Fri Feb 06 2015 Zbigniew Jędrzejewski-Szmek - 5.11.0-10 - Rename -docs to -doc, run make unparallelized * Wed Feb 04 2015 Zbigniew Jędrzejewski-Szmek - 5.11.0-9 - Apply upstream patch for arm test failures * Tue Feb 03 2015 Zbigniew Jędrzejewski-Szmek - 5.11.0-8 - Fix things found in review (macro in comment, R:mono-core, %%doc duplication, macro usage) * Mon Jan 26 2015 Zbigniew Jędrzejewski-Szmek - 5.11.0-7 - Allow newer doxygen * Fri Jan 09 2015 Zbigniew Jędrzejewski-Szmek - 5.11.0-6 - Enable many many subpackages * Tue Jan 06 2015 Zbigniew Jędrzejewski-Szmek - 5.11.0-5 - Unbundle minizip * Wed Dec 17 2014 Zbigniew Jędrzejewski-Szmek - 5.11.0-4 - Do not build on arm * Sat Dec 13 2014 Zbigniew Jędrzejewski-Szmek - 5.11.0-3 - Convert to hybrid cmake (main part) / make (docs). * Fri Dec 12 2014 Zbigniew Jędrzejewski-Szmek - 5.11.0-2 - docs subpackage is no arch, remove %%{_isa} from dependency. * Tue Dec 09 2014 Zbigniew Jędrzejewski-Szmek - 5.11.0-1 - Initial packaging.