File python-pyparsing.spec of Package python-pyparsing
# norootforbuild
Name: python-pyparsing
Version: 1.5.2
Release: 1
Summary: The coolest ever pythonic package
License: Free
Group: Development/Libraries/Python
Source: pyparsing-%{version}.zip
Buildarch: noarch
BuildRequires: python-devel unzip
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{py_requires}
%description
pyparsing is a general parsing module for Python.
Grammars are implemented directly in the client code using parsing objects,
instead of externally, as with lex/yacc-type tools.
Includes simple examples for parsing SQL, CORBA IDL, and 4-function math.
%prep
%setup -q -n pyparsing-%{version}
%build
%{__python} setup.py build
%install
%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot} --record-rpm=INSTALLED_FILES
%files -f INSTALLED_FILES
%defattr(-,root,root)
%changelog
* Thu Dec 31 2009 Leo Eraly <leo@unstable.be> - 1.5.2-1
- Initial package