# Parallel build broken %global _smp_mflags -j1 %bcond_with java Name: libkml Version: 1.3.0 Release: 36%{?dist} Summary: Reference implementation of OGC KML 2.2 License: BSD URL: https://github.com/libkml/libkml Source0: https://github.com/libkml/libkml/archive/%{version}/libkml-%{version}.tar.gz # TODO: Port to minizip-2.x, meanwhile bundle version 1.3.0 # wget -O minizip-1.3.0.tar.gz http://sourceforge.net/projects/libkml-files/files/1.3.0/minizip.tar.gz/download Source1: minizip-1.3.0.tar.gz ## See https://github.com/libkml/libkml/pull/239 Patch0: 0001-Fix-build-failure-due-to-failure-to-convert-pointer-.patch Patch1: 0002-Fix-mistaken-use-of-std-cerr-instead-of-std-endl.patch Patch2: 0003-Fix-python-tests.patch Patch3: 0004-Correctly-build-and-run-java-test.patch # Fix a fragile test failing on i686 Patch4: fragile_test.patch # Don't bytecompile python sources as part of build process, leave it to rpmbuild Patch5: libkml_dont-bytecompile.patch # Add crypt.h which was removed from Fedora minizip package (see #1424609) Patch6: libkml_crypth.patch # Use local file for bundled minizip Patch7: libkml-bundle-minizip.patch # Fix possible OOB array access in strcmp due to undersized array Patch8: libkml_test_strcmp.patch # MinGW build fixes Patch9: libkml_mingw.patch BuildRequires: cmake BuildRequires: curl-devel BuildRequires: boost-devel BuildRequires: expat-devel BuildRequires: gtest-devel BuildRequires: gcc-c++ BuildRequires: make BuildRequires: python3-devel BuildRequires: swig BuildRequires: uriparser-devel BuildRequires: zlib-devel %if %{with java} BuildRequires: java-devel BuildRequires: junit %endif BuildRequires: mingw32-filesystem >= 95 BuildRequires: mingw32-gcc-c++ BuildRequires: mingw32-boost BuildRequires: mingw32-curl BuildRequires: mingw32-expat BuildRequires: mingw32-python3 BuildRequires: mingw32-uriparser BuildRequires: mingw32-zlib BuildRequires: mingw64-filesystem >= 95 BuildRequires: mingw64-gcc-c++ BuildRequires: mingw64-boost BuildRequires: mingw64-curl BuildRequires: mingw64-expat BuildRequires: mingw64-python3 BuildRequires: mingw64-uriparser BuildRequires: mingw64-zlib Provides: bundled(minizip) = 1.3.0 %global __requires_exclude_from ^%{_docdir}/.*$ %global __provides_exclude_from ^%{python3_sitearch}/.*\\.so$ %description Reference implementation of OGC KML 2.2. It also includes implementations of Google's gx: extensions used by Google Earth, as well as several utility libraries for working with other formats. %package -n python3-%{name} Summary: Python 3 bindings for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} %{?python_provide:%python_provide python3-%{name}} %description -n python3-%{name} The python3-%{name} package contains Python 3 bindings for %{name}. %if %{with java} %package java Summary: Java bindings for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} %description java The %{name}-java package contains Java bindings for %{name}. %endif %package devel Summary: Development files for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} Requires: boost-devel Requires: expat-devel %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. %package -n mingw32-%{name} Summary: MinGW Windows %{name} library Requires: mingw32-boost %description -n mingw32-%{name} MinGW Windows %{name} library. %package -n mingw32-python3-%{name} Summary: MinGW Windows Python 3 %{name} library Requires: mingw32-%{name} = %{version}-%{release} %description -n mingw32-python3-%{name} MinGW Windows Python 3 %{name} library. %package -n mingw64-%{name} Summary: MinGW Windows %{name} library Requires: mingw64-boost %description -n mingw64-%{name} MinGW Windows %{name} library. %package -n mingw64-python3-%{name} Summary: MinGW Windows Python 3 %{name} library Requires: mingw64-%{name} = %{version}-%{release} %description -n mingw64-python3-%{name} MinGW Windows Python 3 %{name} library. %{?mingw_debug_package} %prep %autosetup -p1 -a1 %build # Build bundled minizip pushd minizip ( %cmake -DBUILD_SHARED_LIBS=OFF %cmake_build ) ( %mingw_cmake -DBUILD_SHARED_LIBS=OFF %mingw_make_build ) popd # Native build %cmake -DWITH_SWIG=ON -DWITH_PYTHON=ON \ %if %{with java} -DWITH_JAVA=ON -DJNI_INSTALL_DIR=%{_libdir}/%{name} \ %endif -DCMAKE_INSTALL_DIR=%{_libdir}/cmake/%{name} \ -DINCLUDE_INSTALL_DIR=%{_includedir}/kml \ -DPYTHON_LIBRARY=%{_libdir}/libpython%{python3_version}$(python3-config --abiflags).so \ -DPYTHON_INCLUDE_DIR=%{_includedir}/python%{python3_version}$(python3-config --abiflags)/ \ -DPYTHON_INSTALL_DIR=%{python3_sitearch} \ -DMINIZIP_INCLUDE_DIR=$PWD -DMINIZIP_LIBRARY=$PWD/minizip/%{_vpath_builddir}/libminizip.a \ -DBUILD_TESTING=ON \ -DBUILD_EXAMPLES=ON %cmake_build export MINGW32_CMAKE_ARGS="\ -DCMAKE_INSTALL_DIR=%{mingw32_libdir}/cmake/%{name} \ -DINCLUDE_INSTALL_DIR=%{mingw32_includedir}/kml \ -DPYTHON_LIBRARY=%{mingw32_libdir}/libpython%{mingw32_python3_version}.dll.a \ -DPYTHON_INCLUDE_DIR=%{mingw32_includedir}/python%{mingw32_python3_version}/ \ -DPYTHON_INSTALL_DIR=%{mingw32_python3_sitearch} \ -DMINIZIP_INCLUDE_DIR=$PWD -DMINIZIP_LIBRARY=$PWD/minizip/build_win32/libminizip.a" export MINGW64_CMAKE_ARGS="\ -DCMAKE_INSTALL_DIR=%{mingw64_libdir}/cmake/%{name} \ -DINCLUDE_INSTALL_DIR=%{mingw64_includedir}/kml \ -DPYTHON_LIBRARY=%{mingw64_libdir}/libpython%{mingw64_python3_version}.dll.a \ -DPYTHON_INCLUDE_DIR=%{mingw64_includedir}/python%{mingw64_python3_version}/ \ -DPYTHON_INSTALL_DIR=%{mingw64_python3_sitearch} \ -DMINIZIP_INCLUDE_DIR=$PWD -DMINIZIP_LIBRARY=$PWD/minizip/build_win64/libminizip.a" # MinGW build %mingw_cmake -DWITH_SWIG=ON -DWITH_PYTHON=ON \ -DBUILD_TESTING=OFF \ -DBUILD_EXAMPLES=OFF %mingw_make_build %install %cmake_install %mingw_make_install %mingw_debug_install_post %check %ctest %files %license LICENSE %doc AUTHORS README.md %{_libdir}/libkml*.so.* %files -n python3-%{name} %{python3_sitearch}/*.so %{python3_sitearch}/*.py %{python3_sitearch}/__pycache__/*.pyc %if %{with java} %files java %{_javadir}/LibKML.jar %{_libdir}/%{name}/ %endif %files devel %doc examples %{_includedir}/kml/ %{_libdir}/libkml*.so %{_libdir}/pkgconfig/%{name}.pc %{_libdir}/cmake/%{name}/ %files -n mingw32-%{name} %license LICENSE %{mingw32_bindir}/%{name}*.dll %{mingw32_includedir}/kml/ %{mingw32_libdir}/%{name}*.dll.a %{mingw32_libdir}/pkgconfig/%{name}.pc %{mingw32_libdir}/cmake/%{name}/ %files -n mingw32-python3-%{name} %{mingw32_python3_sitearch}/*.py* %files -n mingw64-%{name} %license LICENSE %{mingw64_bindir}/%{name}*.dll %{mingw64_includedir}/kml/ %{mingw64_libdir}/%{name}*.dll.a %{mingw64_libdir}/pkgconfig/%{name}.pc %{mingw64_libdir}/cmake/%{name}/ %files -n mingw64-python3-%{name} %{mingw64_python3_sitearch}/*.py* %changelog * Mon Feb 21 2022 Sandro Mani - 1.3.0-36 - Add mingw subpackages * Sat Feb 05 2022 Jiri Vanek - 1.3.0-35 - Rebuilt for java-17-openjdk as system jdk * Thu Jan 20 2022 Fedora Release Engineering - 1.3.0-34 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild * Thu Jul 22 2021 Fedora Release Engineering - 1.3.0-33 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild * Sat Jun 12 2021 Sandro Mani - 1.3.0-31 - Disable java build for now * Fri Jun 04 2021 Python Maint - 1.3.0-31 - Rebuilt for Python 3.10 * Tue Jan 26 2021 Fedora Release Engineering - 1.3.0-30 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild * Tue Jul 28 2020 Fedora Release Engineering - 1.3.0-28 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild * Sat Jul 11 2020 Jiri Vanek - 1.3.0-27 - Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11 * Tue May 26 2020 Miro Hrončok - 1.3.0-26 - Rebuilt for Python 3.9 * Wed Jan 29 2020 Fedora Release Engineering - 1.3.0-25 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild * Wed Oct 30 2019 Sandro Mani - 1.3.0-24 - Fix possible OOB array access in strcmp due to undersized array * Thu Oct 03 2019 Miro Hrončok - 1.3.0-23 - Rebuilt for Python 3.8.0rc1 (#1748018) * Mon Aug 19 2019 Miro Hrončok - 1.3.0-22 - Rebuilt for Python 3.8 * Thu Jul 25 2019 Fedora Release Engineering - 1.3.0-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild * Mon Jun 03 2019 Sandro Mani - 1.3.0-20 - Don't hard-code abi flags * Fri Feb 01 2019 Fedora Release Engineering - 1.3.0-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild * Wed Jan 23 2019 Björn Esser - 1.3.0-18 - Append curdir to CMake invokation. (#1668512) * Fri Oct 05 2018 Sandro Mani - 1.3.0-17 - Statically link against bundled minizip * Thu Oct 04 2018 Sandro Mani - 1.3.0-16 - Drop python2 subpackage (#1634846) - Bundle minizip (#1632186) - Remove obsolete scriptlets * Tue Aug 28 2018 Patrik Novotný - 1.3.0-15 - change requires to minizip-compat(-devel), rhbz#1609830, rhbz#1615381 * Fri Jul 13 2018 Fedora Release Engineering - 1.3.0-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Tue Jun 19 2018 Miro Hrončok - 1.3.0-13 - Rebuilt for Python 3.7 * Tue Jun 19 2018 Sandro Mani - 1.3.0-12 - Locally add crypt.h from minizip, which was removed in minizip-devel (see #1424609) * Tue Jun 19 2018 Miro Hrončok - 1.3.0-11 - Rebuilt for Python 3.7 * Sun Feb 18 2018 Sandro Mani - 1.3.0-10 - Add missing BR: gcc-c++, make * Wed Feb 07 2018 Fedora Release Engineering - 1.3.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Mon Aug 07 2017 Sandro Mani - 1.3.0-8 - Workaround armv7hl FTBFS - Add python3 bindings * Thu Aug 03 2017 Fedora Release Engineering - 1.3.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild * Wed Jul 26 2017 Fedora Release Engineering - 1.3.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Tue Jul 18 2017 Jonathan Wakely - 1.3.0-5 - Rebuilt for Boost 1.64 * Fri Feb 10 2017 Fedora Release Engineering - 1.3.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Tue Jul 19 2016 Fedora Release Engineering - 1.3.0-3 - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages * Fri Apr 08 2016 Sandro Mani - 1.3.0-2 - Don't call it Google's reference implementation in Summary/Description - Update Source URL - Add python_provide macro - Enable tests * Thu Mar 31 2016 Sandro Mani - 1.3.0-1 - Update to 1.3.0 * Tue Feb 08 2011 Fedora Release Engineering - 0.6.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild * Mon Aug 02 2010 Orcan Ogetbil - 0.6.1-7 - Fix gcc warning that lead to failure due to -Werror flag * Wed Jul 21 2010 David Malcolm - 0.6.1-6 - Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild * Fri Jul 24 2009 Fedora Release Engineering - 0.6.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild * Sun Apr 12 2009 Rakesh Pandit 0.6.1-4 - Included *pyc and pyo files in %%files and added BuildRequires libgcj-devel. * Sun Apr 12 2009 Rakesh Pandit 0.6.1-3 - libkml-0.6.1.configure_ac.patch patch for swig > 1.3.35 * Sat Mar 07 2009 Rakesh Pandit 0.6.1-2 - updated to 0.6.1 - libkml-third_party_removal.diff Removes third part dependency - (provided by Peter Lemenkov) * Fri Jan 16 2009 Rakesh Pandit 0.6.1-1 - Updated to 0.6.1 * Mon Oct 06 2008 Rakesh Pandit 0.4.0-2 - Added >= 1.3.35 for swing * Sat Aug 09 2008 Rakesh Pandit 0.4.0-1 - Initial package