librepo/librepo.spec

107 lines
3.0 KiB
RPMSpec
Raw Normal View History

Name: librepo
Version: 1.12.0
Release: 1mamba
Summary: A library providing C and Python API for downloading packages and linux repository metadata in rpm-md format
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://rpm-software-management.github.io/librepo/
## GITSOURCE https://github.com/rpm-software-management/librepo.git 1.8.1
Source: https://github.com/rpm-software-management/librepo.git/%{version}/librepo-%{version}.tar.bz2
License: LGPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: ldconfig
BuildRequires: libassuan-devel
BuildRequires: libcurl-devel
BuildRequires: libglib-devel
BuildRequires: libgpg-error-devel
BuildRequires: libgpgme-devel
BuildRequires: libopenssl-devel
BuildRequires: libpython-devel
BuildRequires: libpython3-devel
BuildRequires: libxml2-devel
BuildRequires: libzck-devel
## AUTOBUILDREQ-END
BuildRequires: cmake
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
A library providing C and Python (libcURL like) API for downloading packages and linux repository metadata in rpm-md format.
%package devel
Group: Development/Libraries
Summary: Development files for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
Requires: pkg-config
%description devel
This package contains libraries and header files for developing applications that use %{name}.
%package -n python-librepo-py3
Group: System/Libraries/Python
Summary: Python 3 bindings for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
%description -n python-librepo-py3
This package contains the Python 3 bindings for %{name}.
%debug_package
%prep
%setup -q
%build
%cmake -d build \
-DPYTHON_DESIRED=3
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%{_libdir}/librepo.so.*
%doc AUTHORS COPYING
%files -n python-librepo-py3
%defattr(-,root,root)
%dir %{python3_sitearch}/librepo
%{python3_sitearch}/librepo/*
%files devel
%defattr(-,root,root)
%dir %{_includedir}/librepo
%{_includedir}/librepo/*.h
%{_libdir}/librepo.so
%{_libdir}/pkgconfig/librepo.pc
%doc README.md
%changelog
* Sat Aug 15 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 1.12.0-1mamba
- update to 1.12.0
* Thu Feb 27 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 1.11.2-1mamba
- update to 1.11.2
* Thu Jan 16 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 1.11.0-1mamba
- update to 1.11.0
* Tue Jun 04 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 1.10.3-1mamba
- update to 1.10.3
* Sat Jun 01 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 1.9.0-1mamba
- update to 1.9.0
* Thu May 17 2018 Silvan Calarco <silvan.calarco@mambasoft.it> 1.8.1-1mamba
- package created using the webbuild interface