Compare commits

...

No commits in common. 'c9' and 'i8c' have entirely different histories.
c9 ... i8c

2
.gitignore vendored

@ -1 +1 @@
SOURCES/release_v2.20.tar.gz SOURCES/release_v2.14.tar.gz

@ -1 +1 @@
3a7e92b87f9fe0b863ec99b0c4ee9f90a32a3c3f SOURCES/release_v2.20.tar.gz 849ba755b3b93716297a3d0a1b9be5d58314e63d SOURCES/release_v2.14.tar.gz

@ -0,0 +1,38 @@
diff -up pycparser-release_v2.10/pycparser/c_lexer.py.ply pycparser-release_v2.10/pycparser/c_lexer.py
--- pycparser-release_v2.10/pycparser/c_lexer.py.ply 2013-08-03 07:15:32.000000000 -0600
+++ pycparser-release_v2.10/pycparser/c_lexer.py 2014-08-20 12:40:48.308461164 -0600
@@ -9,8 +9,8 @@
import re
import sys
-from .ply import lex
-from .ply.lex import TOKEN
+from ply import lex
+from ply.lex import TOKEN
class CLexer(object):
diff -up pycparser-release_v2.10/pycparser/c_parser.py.ply pycparser-release_v2.10/pycparser/c_parser.py
--- pycparser-release_v2.10/pycparser/c_parser.py.ply 2013-08-03 07:15:32.000000000 -0600
+++ pycparser-release_v2.10/pycparser/c_parser.py 2014-08-20 12:40:05.154894980 -0600
@@ -8,7 +8,7 @@
#------------------------------------------------------------------------------
import re
-from .ply import yacc
+from ply import yacc
from . import c_ast
from .c_lexer import CLexer
diff -up pycparser-release_v2.10/setup.py.ply pycparser-release_v2.10/setup.py
--- pycparser-release_v2.10/setup.py.ply 2013-08-03 07:15:32.000000000 -0600
+++ pycparser-release_v2.10/setup.py 2014-08-20 12:40:05.154894980 -0600
@@ -22,7 +22,7 @@ setup(
classifiers = [
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',],
- packages=['pycparser', 'pycparser.ply'],
+ packages=['pycparser'],
package_data={'pycparser': ['*.cfg']},
)

@ -1,51 +0,0 @@
diff --git a/pycparser/c_lexer.py b/pycparser/c_lexer.py
index 045d24e..9b3cbf2 100644
--- a/pycparser/c_lexer.py
+++ b/pycparser/c_lexer.py
@@ -9,8 +9,8 @@
import re
import sys
-from .ply import lex
-from .ply.lex import TOKEN
+from ply import lex
+from ply.lex import TOKEN
class CLexer(object):
diff --git a/pycparser/c_parser.py b/pycparser/c_parser.py
index 744ede8..50156a3 100644
--- a/pycparser/c_parser.py
+++ b/pycparser/c_parser.py
@@ -8,7 +8,7 @@
#------------------------------------------------------------------------------
import re
-from .ply import yacc
+from ply import yacc
from . import c_ast
from .c_lexer import CLexer
diff --git a/setup.py b/setup.py
index 6dce89c..b3dbfb4 100644
--- a/setup.py
+++ b/setup.py
@@ -8,6 +8,8 @@ except ImportError:
from distutils.command.install import install as _install
from distutils.command.sdist import sdist as _sdist
+import ply
+
def _run_build_tables(dir):
from subprocess import check_call
@@ -60,7 +62,8 @@ setup(
'Programming Language :: Python :: 3.6',
],
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
- packages=['pycparser', 'pycparser.ply'],
+ packages=['pycparser'],
+ install_requires=['ply==' + ply.__version__],
package_data={'pycparser': ['*.cfg']},
cmdclass={'install': install, 'sdist': sdist},
)

@ -1,139 +1,147 @@
%bcond_without tests %if 0%{?fedora} || 0%{?rhel} >= 8
%global with_python3 1
%endif
%if 0%{?rhel} > 7
# Disable python2 build by default
%bcond_with python2
%else
%bcond_without python2
%endif
Name: python-pycparser Name: python-pycparser
Summary: C parser and AST generator written in Python Summary: C parser and AST generator written in Python
Version: 2.20 Version: 2.14
Release: 6%{?dist} Release: 14%{?dist}
License: BSD License: BSD
Group: System Environment/Libraries
URL: http://github.com/eliben/pycparser URL: http://github.com/eliben/pycparser
Source0: %{url}/archive/release_v%{version}.tar.gz Source0: http://github.com/eliben/pycparser/archive/release_v%{version}.tar.gz
Source1: pycparser-0.91.1-remove-relative-sys-path.py Source1: pycparser-0.91.1-remove-relative-sys-path.py
Patch100: pycparser-2.10-ply.patch
# This is Fedora-specific; I don't think we should request upstream to # This is Fedora-specific; I don't think we should request upstream to
# remove embedded libraries from their distribuution, when we can remove # remove embedded libraries from their distribuution, when we can remove
# them during packaging. # them during packaging.
# It also ensures that pycparser uses the same YACC __tabversion__ as ply
# package to prevent "yacc table file version is out of date" problem.
Patch100: pycparser-unbundle-ply.patch
BuildArch: noarch BuildArch: noarch
BuildRequires: python3-devel %if %{with python2}
BuildRequires: python3-setuptools BuildRequires: python2-devel python2-setuptools
BuildRequires: python3-ply
# for unit tests # for unit tests
%if %{with tests} BuildRequires: python2-ply >= 3.6
BuildRequires: cpp %endif # with python2
%endif
BuildRequires: dos2unix
%if 0%{?with_python3}
BuildRequires: python3-devel python3-setuptools
# for unit tests
BuildRequires: python3-ply
%endif # if with_python3
%description %description
pycparser is a complete parser for the C language, written in pure Python. pycparser is a complete parser for the C language, written in pure Python.
It is a module designed to be easily integrated into applications that It is a module designed to be easily integrated into applications that
need to parse C source code. need to parse C source code.
%if %{with python2}
%package -n python2-pycparser
Summary: C parser and AST generator written in Python
Group: System Environment/Libraries
Requires: python2-ply >= 3.6
%{?python_provide:%python_provide python2-pycparser}
%description -n python2-pycparser
pycparser is a complete parser for the C language, written in pure Python.
It is a module designed to be easily integrated into applications that
need to parse C source code.
%endif # with python2
%if 0%{?with_python3}
%package -n python3-pycparser %package -n python3-pycparser
Summary: %{summary} Summary: C parser and AST generator written in Python
Group: System Environment/Libraries
Requires: python3-ply
%{?python_provide:%python_provide python3-pycparser} %{?python_provide:%python_provide python3-pycparser}
%description -n python3-pycparser %description -n python3-pycparser
pycparser is a complete parser for the C language, written in pure Python. pycparser is a complete parser for the C language, written in pure Python.
It is a module designed to be easily integrated into applications that It is a module designed to be easily integrated into applications that
need to parse C source code. need to parse C source code.
%endif # if with_python3
%prep %prep
%autosetup -p1 -n pycparser-release_v%{version} %setup -q -n pycparser-release_v%{version}
%patch100 -p1 -F5 -b .ply
# remove embedded copy of ply # remove embedded copy of ply
rm -r pycparser/ply rm -rf pycparser/ply
# Remove relative sys.path from the examples # examples
%{python3} %{SOURCE1} examples %if 0%{?with_python3}
%{__python3} %{SOURCE1} examples
%else
%{__python2} %{SOURCE1} examples
%endif
dos2unix LICENSE
%build %build
%if %{with python2}
%py2_build
pushd build/lib/pycparser
%{__python2} _build_tables.py
popd
%endif # with python2
%if 0%{?with_python3}
%py3_build %py3_build
pushd build/lib/pycparser pushd build/lib/pycparser
%{python3} _build_tables.py %{__python3} _build_tables.py
popd popd
%endif # with_python3
%install %install
%if %{with python2}
%py2_install
%endif # with python2
%if 0%{?with_python3}
%py3_install %py3_install
%endif # with_python3
%check %check
%if %{with tests} %if %{with python2}
%{python3} tests/all_tests.py %{__python2} tests/all_tests.py
%endif %endif # with python2
%if 0%{?with_python3}
%{__python3} tests/all_tests.py
%endif # with_python3
%if %{with python2}
%files -n python2-pycparser
%license LICENSE
%doc examples
%{python2_sitelib}/pycparser/
%{python2_sitelib}/pycparser-*.egg-info
%endif # with python2
%if 0%{?with_python3}
%files -n python3-pycparser %files -n python3-pycparser
%license LICENSE %license LICENSE
%doc examples %doc examples
%{python3_sitelib}/pycparser/ %{python3_sitelib}/pycparser/
%{python3_sitelib}/pycparser-*.egg-info/ %{python3_sitelib}/pycparser-*.egg-info
%endif # with_python3
%changelog %changelog
* Tue Feb 08 2022 Tomáš Hrnčiar <thrnciar@redhat.com> - 2.20-6 * Wed Jul 26 2023 MSVSphere Packaging Team <packager@msvsphere.ru> - 2.14-14
- Add automatically generated Obsoletes tag with the python39- prefix - Rebuilt for MSVSphere 8.8
for smoother upgrade from RHEL8
- Related: rhbz#1990421
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 2.20-5
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
Related: rhbz#1991688
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.20-4
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.20-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.20-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Fri Jun 05 2020 Miro Hrončok <mhroncok@redhat.com> - 2.20-1
- Update to 2.20 (#1810349)
* Sat May 23 2020 Miro Hrončok <mhroncok@redhat.com> - 2.19-3
- Rebuilt for Python 3.9
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.19-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Fri Nov 08 2019 Lumír Balhar <lbalhar@redhat.com> - 2.19-1
- New usptream version 2.19
* Sun Oct 20 2019 Miro Hrončok <mhroncok@redhat.com> - 2.14-23
- Subpackage python2-ply has been removed
See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 2.14-22
- Rebuilt for Python 3.8.0rc1 (#1748018)
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 2.14-21
- Rebuilt for Python 3.8
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.14-20
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Mon Jun 10 2019 Marcel Plch <mplch@redhat.com> - 2.14-19
- Avoid invalid unicode escape sequences in Py3.8
* Tue Feb 26 2019 Christian Heimes <cheimes@redhat.com> - 2.14-18
- Add build dependency on cpp for unit tests
- Add dependency on python-ply version to prevent "yacc table file version is out of date"
- Fixes RHBZ#1668230
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.14-17
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.14-16
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 2.14-15
- Rebuilt for Python 3.7
* Mon Feb 12 2018 Iryna Shcherbina <ishcherb@redhat.com> - 2.14-14 * Sun Jun 10 2018 Charalampos Stratakis <cstratak@redhat.com> - 2.14-14
- Update Python 2 dependency declarations to new packaging standards - Conditionalize the python2 subpackage
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.14-13 * Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.14-13
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild

Loading…
Cancel
Save