Compare commits

..

1 Commits

Author SHA1 Message Date
Troy Dawson
11b66f5231 epel8-playground decommissioned : https://pagure.io/epel/issue/136 2022-01-31 15:00:34 -08:00
6 changed files with 1 additions and 88 deletions

1
.gitignore vendored
View File

@ -1 +0,0 @@
/CppHeaderParser-2.7.4.tar.gz

View File

@ -1,35 +0,0 @@
From ef1fb4dc1fc8797fd70c45e31cf3ae5e6447740a Mon Sep 17 00:00:00 2001
From: Tom Rix <trix@redhat.com>
Date: Thu, 11 Jan 2024 08:16:09 -0500
Subject: [PATCH] cppheaderparser silence invalid escape sequence
Signed-off-by: Tom Rix <trix@redhat.com>
---
CppHeaderParser/CppHeaderParser.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/CppHeaderParser/CppHeaderParser.py b/CppHeaderParser/CppHeaderParser.py
index 06a17fc..8dfe8ba 100644
--- a/CppHeaderParser/CppHeaderParser.py
+++ b/CppHeaderParser/CppHeaderParser.py
@@ -149,7 +149,7 @@ def t_COMMENT_MULTILINE(t):
#not sure why, but get double new lines
v = t.value.replace("\n\n", "\n")
#strip prefixing whitespace
- v = re.sub("\n[\s]+\*", "\n*", v)
+ v = re.sub(r"\n[\s]+\*", "\n*", v)
doxygenCommentCache += v
t.lexer.lineno += len([a for a in t.value if a=="\n"])
def t_NEWLINE(t):
@@ -834,7 +834,7 @@ class CppMethod( _CppMethod ):
doxyLines = self["doxygen"].split("\n")
lastParamDesc = ""
for doxyLine in doxyLines:
- if " @param " in doxyLine or " \param " in doxyLine:
+ if " @param " in doxyLine or r" \param " in doxyLine:
try:
#Strip out the param
doxyLine = doxyLine[doxyLine.find("param ") + 6:]
--
2.43.0

View File

@ -1,3 +0,0 @@
# python-cppheaderparser
The python-cppheaderparser package

1
dead.package Normal file
View File

@ -0,0 +1 @@
epel8-playground decommissioned : https://pagure.io/epel/issue/136

View File

@ -1,48 +0,0 @@
%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

View File

@ -1 +0,0 @@
SHA512 (CppHeaderParser-2.7.4.tar.gz) = 223550add1e391eb535d1b8be08a54b9d6fe97ca6dbfc54407cdc17a5530a91ef6be4ac920d6841b9f479bcbd6c823512b08565ad433f62a87e993cf393932a2