- 1.5.5
- use buildroot macro - fix wrong file end of line encoding - convert files to utf-8 - doc subpackage - python3 subpackage - rpmlint clean
This commit is contained in:
parent
c246ecc8aa
commit
05d7628fb3
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
||||
pyparsing-1.5.0.tar.gz
|
||||
/pyparsing-1.5.5.tar.gz
|
||||
|
@ -1,20 +0,0 @@
|
||||
Copyright (c) 2003,2004 Paul T. McGuire
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@ -1,49 +1,124 @@
|
||||
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||
%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
|
||||
|
||||
Name: pyparsing
|
||||
Version: 1.5.0
|
||||
Release: 7%{?dist}
|
||||
Version: 1.5.5
|
||||
Release: 1%{?dist}
|
||||
Summary: An object-oriented approach to text processing
|
||||
|
||||
Group: Development/Libraries
|
||||
License: MIT
|
||||
URL: http://pyparsing.wikispaces.com/
|
||||
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
|
||||
Source1: pyparsing-LICENSE
|
||||
Source0: http://downloads.sourceforge.net/pyparsing/pyparsing-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildArch: noarch
|
||||
|
||||
BuildRequires: python-devel
|
||||
BuildRequires: dos2unix
|
||||
BuildRequires: glibc-common
|
||||
|
||||
%if 0%{?with_python3}
|
||||
BuildRequires: python3-devel
|
||||
%endif # if with_python3
|
||||
|
||||
%description
|
||||
pyparsing is a module that can be used to easily and directly configure syntax
|
||||
definitions for any number of text parsing applications.
|
||||
|
||||
%package doc
|
||||
Summary: Documentation for pyparsing
|
||||
Group: Development/Libraries
|
||||
|
||||
%description doc
|
||||
The package contains documentation for pyparsing.
|
||||
|
||||
%if 0%{?with_python3}
|
||||
%package -n python3-pyparsing
|
||||
Summary: An object-oriented approach to text processing (Python 3 version)
|
||||
Group: Development/Libraries
|
||||
|
||||
%description -n python3-pyparsing
|
||||
pyparsing is a module that can be used to easily and directly configure syntax
|
||||
definitions for any number of text parsing applications.
|
||||
|
||||
This is the Python 3 version.
|
||||
%endif # if with_python3
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
mv docs/pyparsingClassDiagram.PNG docs/pyparsingClassDiagram.png
|
||||
rm docs/pyparsingClassDiagram.JPG
|
||||
dos2unix -k CHANGES LICENSE
|
||||
dos2unix -k docs/examples/*
|
||||
dos2unix -k docs/htmldoc/epydoc*
|
||||
for f in CHANGES docs/examples/{holaMundo.py,mozillaCalendarParser.py} ; do
|
||||
mv $f $f.iso88591
|
||||
iconv -f ISO-8859-1 -t UTF-8 -o $f $f.iso88591
|
||||
touch -r $f.iso88591 $f
|
||||
rm -f $f.iso88591
|
||||
done
|
||||
|
||||
%if 0%{?with_python3}
|
||||
rm -rf %{py3dir}
|
||||
cp -a . %{py3dir}
|
||||
%endif # with_python3
|
||||
|
||||
%build
|
||||
%{__python} setup.py build
|
||||
mv pyparsingClassDiagram.PNG pyparsingClassDiagram.png
|
||||
install -p -m 0644 %{SOURCE1} $RPM_BUILD_DIR/%{name}-%{version}/LICENSE
|
||||
|
||||
%if 0%{?with_python3}
|
||||
pushd %{py3dir}
|
||||
%{__python3} setup.py build
|
||||
popd
|
||||
%endif # with_python3
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
|
||||
rm -rf %{buildroot}
|
||||
|
||||
# Install python 3 first, so that python 2 gets precedence:
|
||||
%if 0%{?with_python3}
|
||||
pushd %{py3dir}
|
||||
%{__python3} setup.py install -O1 --skip-build --root %{buildroot}
|
||||
popd
|
||||
%endif # with_python3
|
||||
|
||||
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc CHANGES docs examples HowToUsePyparsing.html htmldoc pyparsingClassDiagram.* README LICENSE
|
||||
%doc CHANGES README LICENSE
|
||||
%if 0%{?fedora} >= 9 || 0%{?rhel} >= 6
|
||||
%{python_sitelib}/pyparsing*egg-info
|
||||
%endif
|
||||
%{python_sitelib}/pyparsing.py*
|
||||
|
||||
%if 0%{?with_python3}
|
||||
%files -n python3-pyparsing
|
||||
%defattr(-,root,root,-)
|
||||
%doc CHANGES README LICENSE
|
||||
%{python3_sitelib}/pyparsing*egg-info
|
||||
%{python3_sitelib}/pyparsing.py*
|
||||
%endif # with_python3
|
||||
|
||||
%files doc
|
||||
%defattr(-,root,root,-)
|
||||
%doc CHANGES README LICENSE docs/*
|
||||
|
||||
%changelog
|
||||
* Thu Oct 21 2010 Terje Rosten <terje.rosten@ntnu.no> - 1.5.5-1
|
||||
- 1.5.5
|
||||
- use buildroot macro
|
||||
- fix wrong file end of line encoding
|
||||
- convert files to utf-8
|
||||
- doc subpackage
|
||||
- python3 subpackage
|
||||
- rpmlint clean
|
||||
|
||||
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 1.5.0-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user