python-cppheaderparser/python-cppheaderparser.spec
Christian Goll c40d6aa918
removed dist and changelog entry
Signed-off-by: Christian Goll <cgoll@suse.com>
2025-02-11 16:53:51 +01:00

49 lines
1.2 KiB
RPMSpec

%global pypi_name cppheaderparser
Name: python-%{pypi_name}
Version: 2.7.4
Release: 0
Summary: Parse C++ header files and generate a data structure
License: BSD-3-Clause
URL: http://senexcanis.com/open-source/cppheaderparser/
Source0: %{pypi_source CppHeaderParser}
Patch0: 0001-cppheaderparser-silence-invalid-escape-sequence.patch
BuildArch: noarch
%description
Parse C++ header files and generate a data structure representing the
class.
%package -n python3-%{pypi_name}
Summary: %{summary}
BuildRequires: python3-devel
BuildRequires: python3dist(setuptools)
%{?python_provide:%python_provide python3-%{pypi_name}}
%description -n python3-%{pypi_name}
Parse C++ header files and generate a data structure representing the
class.
%prep
%autosetup -p1 -n CppHeaderParser-%{version}
rm -rf %{pypi_name}.egg-info
# Remove outdated parts (Python 2.x)
rm -rf CppHeaderParser/{examples,docs}
sed -i -e '/^#!\//, 1d' CppHeaderParser/CppHeaderParser.py
%build
%py3_build
%install
%py3_install
%files -n python3-%{pypi_name}
%doc README.txt README.html
%{python3_sitelib}/CppHeaderParser/
%{python3_sitelib}/CppHeaderParser-%{version}-py%{python3_version}.egg-info/
%changelog