14
0
forked from pool/python-ply
Files
python-ply/python-ply.spec

102 lines
2.8 KiB
RPMSpec
Raw Normal View History

#
# spec file for package python-ply (Version 2.3)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
# package are under the same license as the package itself.
#
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
BuildRequires: python-devel
Summary: Lex and Yacc-like tools written in Python
Name: python-ply
Version: 2.3
Release: 2
License: LGPL v2.1 or later
Group: Development/Languages/Python
Source0: http://www.dabeaz.com/ply/ply-%{version}.tar.gz
Patch0: python-ply-shebangs.patch
Url: http://www.dabeaz.com/ply
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: python
%description
PLY is yet another implementation of lex and yacc for Python.
Although several other parsing tools are available for Python,
there are several reasons why you might want to take a look at
PLY: - It uses LR-parsing which is reasonably efficient and well
suited for larger grammars.
- PLY provides most of the standard lex/yacc features including
support for empty productions, precedence rules, error recovery,
and support for ambiguous grammars.
- PLY is extremely easy to use and provides very extensive error
checking.
Authors:
--------
David M. Beazley (dave@dabeaz.com)
%package doc
Group: Development/Languages/Python
Summary: Lex and Yacc-like tools written in Python
Requires: %{name} = %{version}
%description doc
PLY is yet another implementation of lex and yacc for Python.
Although several other parsing tools are available for Python,
there are several reasons why you might want to take a look at
PLY: - It uses LR-parsing which is reasonably efficient and well
suited for larger grammars.
- PLY provides most of the standard lex/yacc features including
support for empty productions, precedence rules, error recovery,
and support for ambiguous grammars.
- PLY is extremely easy to use and provides very extensive error
checking.
Authors:
--------
David M. Beazley (dave@dabeaz.com)
%prep
%setup -n ply-%{version}
%patch0 -p1
%install
python setup.py install --prefix /usr --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES
%clean
rm -rf $RPM_BUILD_ROOT
%files -f INSTALLED_FILES
%defattr(-,root,root)
# setup.py is kind of dumb, so:
%dir %{py_sitedir}/ply
%files doc
%defattr(-, root, root)
%doc CHANGES COPYING README TODO doc example test
%changelog
* Tue Mar 18 2008 maw@suse.de
- Import into autobuild
- Add a -doc subpackage
- Add python-ply-shebangs.patch
* Wed Oct 24 2007 maw@suse.de
- Don't build as noarch.
* Fri Apr 13 2007 maw@suse.de
- Initial import into the build service
- Rename ply.spec to python-ply.spec as that is what the resultant
package is called.