From 3d83dba32f9a118ba21ecb0595c1608da50f9835 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 16:23:46 +0100 Subject: [PATCH] specfile fixes [release 2.6.2-2mamba;Thu Jun 24 2021] --- python-pybind11.spec | 43 +++++++++++++++++++++++++++++++++---------- 1 file changed, 33 insertions(+), 10 deletions(-) diff --git a/python-pybind11.spec b/python-pybind11.spec index 727f189..a1bdd16 100644 --- a/python-pybind11.spec +++ b/python-pybind11.spec @@ -1,6 +1,6 @@ Name: python-pybind11 Version: 2.6.2 -Release: 1mamba +Release: 2mamba Summary: Seamless operability between C++11 and Python Group: System/Libraries Vendor: openmamba @@ -10,15 +10,23 @@ URL: https://pypi.org/project/pybind11/ Source: https://pypi.debian.net/pybind11/pybind11-%{version}.tar.gz License: BSD ## AUTOBUILDREQ-BEGIN -## note: run 'autospec -u -a6 python-pybind11' to get the list of build requirements. +BuildRequires: libpython3-devel +BuildRequires: python3.7dist(setuptools) ## AUTOBUILDREQ-END BuildRequires: libpython-devel Requires: python >= %python_version -BuildRoot: %{_tmppath}/%{name}-%{version}-root %description %{summary}. +%package devel +Group: Development/Libraries +Summary: Development files for %{name} +Requires: python-pybind11-py3 = %{?epoch:%epoch:}%{version}-%{release} + +%description devel +This package contains header and cmake files for developing applications that use %{name}. + %if 0%{?with_pyver} %pyver_package %endif @@ -34,22 +42,37 @@ CFLAGS="%{optflags}" %{__python} setup.py build %{__python} setup.py install \ -O1 --skip-build \ --root="%{buildroot}" \ - --install-headers=%{python_inc} \ + --install-headers=%{_includedir} \ --install-lib=%{python_sitearch} \ --record=%{name}.filelist -sed -i "s,.*/man/.*,&.gz," %{name}.filelist +sed -i "\,\.egg-info/,d;s,.*/man/.*,&.gz," %{name}.filelist +sed -i "/include/d" %{name}.filelist +sed -i "/cmake/d" %{name}.filelist + +mv %{buildroot}%{python_sitearch}/pybind11/include %{buildroot}%{_prefix}/ +install -d -m0755 %{buildroot}%{_datadir}/cmake +mv %{buildroot}%{python_sitearch}/pybind11/share/cmake/pybind11 %{buildroot}%{_datadir}/cmake/ %files %{?pyappend} -f %{name}.filelist %defattr(-,root,root) -## note: this list is just an example; modify as required -# %{python_sitearch}/%{name}.py* -# %{python_sitearch}/%{name}.so +%dir %{python_sitearch}/pybind11-%{version}-py*.egg-info +%{python_sitearch}/pybind11-%{version}-py*.egg-info/* %doc LICENSE -## note: add extra documentation (if any) -# %doc README.rst + +%files devel +%defattr(-,root,root) +%dir %{_includedir}/pybind11 +%{_includedir}/pybind11/*.h +%dir %{_includedir}/pybind11/detail +%{_includedir}/pybind11/detail/*.h +%dir %{_datadir}/cmake/pybind11 +%{_datadir}/cmake/pybind11/*.cmake %changelog +* Thu Jun 24 2021 Silvan Calarco 2.6.2-2mamba +- specfile fixes + * Sun Feb 21 2021 Automatic Build System 2.6.2-1mamba - automatic version update by autodist