2013-07-23 22:13:17 +00:00
|
|
|
%if 0%{?fedora} > 12 || 0%{?rhel} > 6
|
|
|
|
%global with_python3 1
|
|
|
|
%else
|
|
|
|
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print (get_python_lib())")}
|
|
|
|
%endif
|
|
|
|
|
2013-07-23 15:45:25 +00:00
|
|
|
Name: python-pycparser
|
|
|
|
Summary: C parser and AST generator written in Python
|
2013-07-23 22:13:17 +00:00
|
|
|
Version: 2.09.1
|
2013-08-04 09:14:42 +00:00
|
|
|
Release: 7%{?dist}
|
2013-07-23 15:45:25 +00:00
|
|
|
License: BSD
|
2013-07-23 22:13:17 +00:00
|
|
|
Group: System Environment/Libraries
|
2013-07-23 15:45:25 +00:00
|
|
|
URL: http://github.com/eliben/pycparser
|
|
|
|
Source0: http://github.com/eliben/pycparser/archive/release_v%{version}.tar.gz
|
|
|
|
Source1: pycparser-0.91.1-remove-relative-sys-path.py
|
|
|
|
|
|
|
|
Patch0: pycparser-0.91.1-unittests-sys-path.patch
|
|
|
|
# Submitted as upstream issue #11:
|
|
|
|
# https://github.com/eliben/pycparser/issues/11
|
|
|
|
|
|
|
|
Patch1: pycparser-0.91.1-tables-sys-path.patch
|
|
|
|
# Submitted as upstream issue #12:
|
|
|
|
# https://github.com/eliben/pycparser/issues/12
|
|
|
|
|
|
|
|
Patch100: pycparser-0.91.1-disable-embedded-ply.patch
|
|
|
|
# This is Fedora-specific; I don't think we should request upstream to
|
|
|
|
# remove embedded libraries from their distribuution, when we can remove
|
|
|
|
# them during packaging.
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
2013-07-23 22:13:17 +00:00
|
|
|
BuildRequires: python2-devel python-setuptools
|
2013-07-23 15:45:25 +00:00
|
|
|
|
|
|
|
# for unit tests
|
|
|
|
BuildRequires: dos2unix
|
2013-07-23 22:13:17 +00:00
|
|
|
BuildRequires: python-ply
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
BuildRequires: python3-devel python3-setuptools
|
|
|
|
# for unit tests
|
|
|
|
BuildRequires: python3-ply
|
|
|
|
%endif # if with_python3
|
2013-07-23 15:45:25 +00:00
|
|
|
|
2013-07-23 22:13:17 +00:00
|
|
|
Requires: python-ply
|
2013-07-23 15:45:25 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
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.
|
|
|
|
|
2013-07-23 22:13:17 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
%package -n python3-pycparser
|
|
|
|
Summary: C parser and AST generator written in Python
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
Requires: python3-ply
|
|
|
|
|
|
|
|
%description -n python3-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 # if with_python3
|
|
|
|
|
2013-07-23 15:45:25 +00:00
|
|
|
%prep
|
|
|
|
%setup -q -n pycparser-release_v%{version}
|
|
|
|
%patch0 -p1 -b .unittests-sys-path
|
|
|
|
%patch1 -p1 -b .tables-sys-path
|
|
|
|
%patch100 -p1 -b .orig
|
|
|
|
|
|
|
|
# remove embedded copy of ply
|
|
|
|
rm -rf pycparser/ply
|
|
|
|
|
|
|
|
# examples
|
|
|
|
%{__python} %{SOURCE1} examples
|
|
|
|
dos2unix LICENSE
|
|
|
|
|
2013-07-23 22:13:17 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
rm -rf %{py3dir}
|
|
|
|
cp -a . %{py3dir}
|
|
|
|
find %{py3dir} -name '*.py' | xargs sed -i '1s|^#!/usr/bin/python|#!%{__python3}|'
|
|
|
|
%endif # with_python3
|
|
|
|
|
2013-07-23 15:45:25 +00:00
|
|
|
%build
|
|
|
|
%{__python} setup.py build
|
2013-07-23 22:13:17 +00:00
|
|
|
pushd build/lib/pycparser
|
2013-07-23 15:45:25 +00:00
|
|
|
%{__python} _build_tables.py
|
2013-07-23 22:13:17 +00:00
|
|
|
popd
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
pushd %{py3dir}
|
|
|
|
%{__python3} setup.py build
|
|
|
|
pushd build/lib/pycparser
|
|
|
|
%{__python3} _build_tables.py
|
|
|
|
popd
|
|
|
|
popd
|
|
|
|
%endif # with_python3
|
2013-07-23 15:45:25 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
%{__python} setup.py install --skip-build --root %{buildroot}
|
|
|
|
|
2013-07-23 22:13:17 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
pushd %{py3dir}
|
|
|
|
%{__python3} setup.py install --skip-build --root %{buildroot}
|
|
|
|
popd
|
|
|
|
%endif # with_python3
|
|
|
|
|
2013-07-23 15:45:25 +00:00
|
|
|
%check
|
|
|
|
%{__python} tests/all_tests.py
|
2013-07-23 22:13:17 +00:00
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
%{__python3} tests/all_tests.py
|
|
|
|
pushd %{py3dir}
|
|
|
|
popd
|
|
|
|
%endif # with_python3
|
2013-07-23 15:45:25 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%doc examples LICENSE
|
|
|
|
%{python_sitelib}/pycparser/
|
|
|
|
%{python_sitelib}/pycparser-*.egg-info
|
|
|
|
|
2013-07-23 22:13:17 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
%files -n python3-pycparser
|
|
|
|
%{python3_sitelib}/pycparser/
|
|
|
|
%{python3_sitelib}/pycparser-*.egg-info
|
|
|
|
%endif # with_python3
|
|
|
|
|
2013-07-23 15:45:25 +00:00
|
|
|
%changelog
|
2013-08-04 09:14:42 +00:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.09.1-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-23 22:13:17 +00:00
|
|
|
* Tue Jul 23 2013 Eric Smith <brouhaha@fedoraproject.org> 2.09.1-6
|
|
|
|
- Added Python 3 support.
|
|
|
|
|
2013-07-23 15:45:25 +00:00
|
|
|
* Mon Jul 22 2013 Eric Smith <brouhaha@fedoraproject.org> 2.09.1-5
|
|
|
|
- Renumbered Fedora-specific Patch1 to Patch100
|
|
|
|
- Added new Patch1 to fix table generation when the build system
|
|
|
|
already has a python-pycparser package installed.
|
|
|
|
- Submitted Patch0 and Patch1 as upstream issues.
|
|
|
|
- Added comments about patches.
|
|
|
|
|
|
|
|
* Sun Jul 21 2013 Eric Smith <brouhaha@fedoraproject.org> 2.09.1-4
|
|
|
|
- Upstream repository is now on github.
|
|
|
|
- Fix rpmlint strange-permission complaint.
|
|
|
|
- Rename patches, Source1 to all start with pycparser-{version}, to
|
|
|
|
simplify updating patches for future upstream releases.
|
|
|
|
|
|
|
|
* Sun Jul 21 2013 Eric Smith <brouhaha@fedoraproject.org> 2.09.1-3
|
|
|
|
- Run _build_tables.py to build the lextab.py and yacctab.py; otherwise
|
|
|
|
they have to be regenerated at runtime for no benefit.
|
|
|
|
|
|
|
|
* Tue Mar 19 2013 Jos de Kloe <josdekloe@gmail.com> 2.09.1-2
|
|
|
|
- remove the embedded ply code
|
|
|
|
|
|
|
|
* Fri Jan 18 2013 Scott Tsai <scottt.tw@gmail.com> 2.09.1-1
|
|
|
|
- upstream 2.09.1
|