libcomps/libcomps.spec

96 lines
2.6 KiB
RPMSpec
Raw Normal View History

Name: libcomps
Version: 0.1.19
Release: 2mamba
Summary: Alternative for yum.comps library written in pure C with Python bindings
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/rpm-software-management/libcomps
Source: https://github.com/rpm-software-management/libcomps.git/%{version}/libcomps-%{version}.tar.bz2
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libexpat-devel
BuildRequires: libpython310-devel
BuildRequires: libxml2-devel
BuildRequires: libz-devel
## AUTOBUILDREQ-END
%description
Libcomps is alternative for yum.comps library. It's written in pure C as library and there's bindings for python2 and python3.
%package devel
Group: Development/Libraries
Summary: Development files for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
%description devel
This package contains libraries and header files for developing applications that use %{name}.
%package -n python-libcomps-py310
Group: System/Libraries/Python
Summary: Python 3 bindings to %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
Obsoletes: python-libcomps-py3 < 0.1.19-2mamba
%description -n python-libcomps-py310
This package contains the python 3 bindings to %{name}.
%debug_package
%prep
%setup -q
%build
cd libcomps
%cmake -d build \
-DPYTHON_EXECUTABLE=%{__python310}
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C libcomps/build
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%{_libdir}/libcomps.so.*
%doc COPYING
%files -n python-libcomps-py310
%defattr(-,root,root)
%{python310_sitearch}/libcomps-*.egg-info
%dir %{python310_sitearch}/libcomps
%{python310_sitearch}/libcomps/*
%files devel
%defattr(-,root,root)
%dir %{_includedir}/libcomps
%{_includedir}/libcomps/*
%{_libdir}/libcomps.so
%{_libdir}/pkgconfig/libcomps.pc
%doc README.md
%changelog
* Thu Mar 23 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 0.1.19-2mamba
- rebuilt with python 3.10
* Sat Sep 10 2022 Automatic Build System <autodist@mambasoft.it> 0.1.19-1mamba
- automatic version update by autodist
* Sun Dec 26 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 0.1.18-1mamba
- update to 0.1.18
* Sat Aug 15 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 0.1.15-1mamba
- update to 0.1.15
* Thu May 17 2018 Silvan Calarco <silvan.calarco@mambasoft.it> 0.1.8-1mamba
- package created using the webbuild interface