123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- Name: pyparsing
- Version: 3.0.9
- Release: 1%{?_dist_release}
- Summary: An object-oriented approach to text processing
- Summary(ja): オブジェクト指向のテキストパース用 Python モジュール
- Group: programming
- Vendor: Project Vine
- Distribution: Vine Linux
- License: MIT
- URL: https://github.com/pyparsing/pyparsing/
- Source0: https://files.pythonhosted.org/packages/source/p/pyparsing/pyparsing-%{version}.tar.gz
- BuildArch: noarch
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: python-rpm-macros
- BuildRequires: python3-devel
- BuildRequires: python3-setuptools
- BuildRequires: python3-rpm-macros
- BuildRequires: python3-pip
- BuildRequires: python3-flit
- BuildRequires: dos2unix
- %description
- pyparsing is a module that can be used to easily and directly configure syntax
- definitions for any number of text parsing applications.
- %package -n python3-pyparsing
- Summary: An object-oriented approach to text processing
- Summary(ja): オブジェクト指向のテキストパース用 Python モジュール
- Group: programming
- Requires: python3
- %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.
- %prep
- %setup -n pyparsing-%{version}
- dos2unix -k examples/*
- %build
- %pip3_build_wheel
- %install
- %pip3_install_wheel
- #%{__python3} -m pip install -I --disable-pip-version-check --no-build-isolation --no-cache-dir --no-deps --no-clean --verbose --root %{buildroot} .
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files -n python3-pyparsing
- %defattr(-,root,root,-)
- %license LICENSE
- %doc CHANGES README* docs examples
- %{python3_sitelib}/pyparsing*
- %changelog
- * Sat Oct 22 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.0.9-1
- - new upstream release.
- * Tue Feb 23 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.4.7-2
- - rebuilt with rpm-4.16.
- * Sun Aug 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.4.7-1
- - new upstream release.
- * Wed Nov 28 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.3.0-1
- - new upstream release.
- - changed naming-rule.
- - added python3 support.
- * Sun Jan 12 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.5.0-4
- - rebuild with VineSeed environment
- * Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.5.0-3
- - rebuilt with python-2.7.2
- * Wed Feb 03 2010 Shu KONNO <owa@bg.wakwak.com> 1.5.0-2
- - rebuilt with python-2.6.4
- * Sun Dec 28 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.5.0-1
- - initial build for Vine Linux based on fedora package
- * Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.5.0-3
- - Rebuild for Python 2.6
- * Mon Aug 4 2008 José Matos <jamatos[AT]fc.up.pt> - 1.5.0-2
- - respun (now with the right sources)
- * Mon Aug 4 2008 José Matos <jamatos[AT]fc.up.pt> - 1.5.0-1
- - new upstream release.
- * Tue Apr 1 2008 José Matos <jamatos[AT]fc.up.pt> - 1.4.11-1
- - New upstream version, add egg-info for F9+.
- * Wed Aug 29 2007 José Matos <jamatos[AT]fc.up.pt> - 1.4.7-1
- - New upstream version.
- * Sat Apr 21 2007 José Matos <jamatos[AT]fc.up.pt> - 1.4.6-1
- - New upstream version.
- * Mon Dec 11 2006 José Matos <jamatos[AT]fc.up.pt> - 1.4.4-1
- - New upstream version.
- * Mon Sep 11 2006 José Matos <jamatos[AT]fc.up.pt> - 1.4.3-1
- - New version.
- * Wed Aug 3 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.3-1
- - Initial RPM release
|