%global libcurl_version 7.52.0 %undefine __cmake_in_source_build %if 0%{?rhel} %bcond_with zchunk %else %bcond_without zchunk %endif %if 0%{?fedora} >= 39 %bcond_with use_gpgme %bcond_with use_selinux %else %bcond_without use_gpgme %bcond_without use_selinux %endif # Needs to match how gnupg2 is compiled %bcond_with run_gnupg_user_socket %if %{with use_gpgme} && %{with use_selinux} %global need_selinux 1 %else %global need_selinux 0 %endif %global dnf_conflict 2.8.8 Name: librepo Version: 1.17.1 Release: 20240611005358.11.g5a6a665%{?dist} Summary: Repodata downloading library License: LGPL-2.1-or-later URL: https://github.com/rpm-software-management/librepo Source0: librepo-1.17.1-20240611005358.11.g5a6a665.tar.xz BuildRequires: cmake BuildRequires: gcc BuildRequires: check-devel BuildRequires: doxygen BuildRequires: pkgconfig(glib-2.0) >= 2.66 %if %{with use_gpgme} BuildRequires: gpgme-devel %else BuildRequires: pkgconfig(rpm) >= 4.18.0 %endif BuildRequires: libattr-devel BuildRequires: libcurl-devel >= %{libcurl_version} BuildRequires: pkgconfig(libxml-2.0) BuildRequires: pkgconfig(libcrypto) %if %{need_selinux} BuildRequires: pkgconfig(libselinux) %endif BuildRequires: pkgconfig(openssl) %if %{with zchunk} BuildRequires: pkgconfig(zck) >= 0.9.11 %endif Requires: libcurl%{?_isa} >= %{libcurl_version} %description A library providing C and Python (libcURL like) API to downloading repository metadata. %package devel Summary: Repodata downloading library Requires: %{name}%{?_isa} = %{version}-%{release} %if %{with zchunk} Requires: zchunk-devel%{?_isa} %endif %description devel Development files for librepo. %package -n python3-%{name} Summary: Python 3 bindings for the librepo library %{?python_provide:%python_provide python3-%{name}} BuildRequires: python3-devel BuildRequires: python3-gpg BuildRequires: python3-pyxattr BuildRequires: python3-requests BuildRequires: python3-sphinx Requires: %{name}%{?_isa} = %{version}-%{release} # Obsoletes Fedora 27 package Obsoletes: platform-python-%{name} < %{version}-%{release} Conflicts: python3-dnf < %{dnf_conflict} %description -n python3-%{name} Python 3 bindings for the librepo library. %prep %autosetup -p1 -n librepo-1.17.1-20240611005358.11.g5a6a665 %build %cmake \ -DWITH_ZCHUNK=%{?with_zchunk:ON}%{!?with_zchunk:OFF} \ -DUSE_GPGME=%{?with_use_gpgme:ON}%{!?with_use_gpgme:OFF} \ -DUSE_RUN_GNUPG_USER_SOCKET=%{?with_run_gnupg_user_socket:ON}%{!?with_run_gnupg_user_socket:OFF} \ -DENABLE_SELINUX=%{?need_selinux:ON}%{!?need_selinux:OFF} %cmake_build %check %ctest %install %cmake_install %if 0%{?rhel} && 0%{?rhel} <= 7 %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %else %ldconfig_scriptlets %endif %files %license COPYING %doc README.md %{_libdir}/%{name}.so.* %files devel %{_libdir}/%{name}.so %{_libdir}/pkgconfig/%{name}.pc %{_includedir}/%{name}/ %files -n python3-%{name} %{python3_sitearch}/%{name}/ %changelog * Mon Jun 10 2024 rpm-gitoverlay - 1.17.1-20240611005358.11.g5a6a665 - [5a6a665] Examples: Create CMakeLists.txt, enable building (Jaroslav Rohel) - [f52b14f] Examples: Fix warning: ‘log_handler_cb’ defined but not used (Jaroslav Rohel) - [81fe43d] Examples: Fix download_low_level_api to be compilable (Jaroslav Rohel) - [2e638d8] test_log_handler_cb: don't set value that will not be read (Jaroslav Rohel) - [7b68b02] check_signature: don't set value that will not be read (Jaroslav Rohel) - [600c7eb] Fix: lr_gpg_import_key[_from_fd]: Don't ignore input file errors (Jaroslav Rohel) - [bf219df] Fix: Possible usage of uninitialized value in lr_handle_network_wait (Jaroslav Rohel) - [25ed8b6] Improve performance of large number of package downloads (Stewart Smith) - [ba5365f] Do not work with xattrs after finding out that they are not supported (Jaroslav Rohel) - [fbfb2b7] Define and use xattr key to store mtime of file checksum as macro (Jaroslav Rohel) - [b411895] Add a private dependency on zck to librepo.pc if zchunk support is enabled (Petr Písař)