2016-02-15 12:17:09 +00:00
|
|
|
%global srcname pyparsing
|
2020-03-30 18:31:24 +00:00
|
|
|
%global _summary Python package with an object-oriented approach to text processing
|
2005-08-03 19:08:56 +00:00
|
|
|
|
2021-02-24 16:03:49 +00:00
|
|
|
# when bootstrapping Python 3, pyparsing needs to be rebuilt before depndency generator is available
|
|
|
|
%bcond_with bootstrap
|
|
|
|
%if %{without bootstrap}
|
2017-02-15 12:54:23 +00:00
|
|
|
%global build_wheel 1
|
2019-09-02 09:31:01 +00:00
|
|
|
%global python_wheelname %{srcname}-%{version}-py2.py3-none-any.whl
|
2021-02-24 16:03:49 +00:00
|
|
|
%endif
|
2017-02-15 12:54:23 +00:00
|
|
|
|
2019-08-14 21:21:56 +00:00
|
|
|
|
2020-03-30 18:31:24 +00:00
|
|
|
Summary: %{_summary}
|
2015-11-17 18:35:06 +00:00
|
|
|
Name: pyparsing
|
2020-04-06 09:02:43 +00:00
|
|
|
Version: 2.4.7
|
2021-07-23 04:29:02 +00:00
|
|
|
Release: 9%{?dist}
|
2016-02-15 12:17:09 +00:00
|
|
|
|
2005-08-03 19:08:56 +00:00
|
|
|
License: MIT
|
2019-01-10 10:27:15 +00:00
|
|
|
URL: https://github.com/pyparsing/pyparsing
|
|
|
|
Source0: https://github.com/%{name}/%{name}/archive/%{name}_%{version}/%{name}-%{version}.tar.gz
|
2016-02-15 12:17:09 +00:00
|
|
|
|
2005-08-03 19:08:56 +00:00
|
|
|
BuildArch: noarch
|
2010-10-25 12:18:40 +00:00
|
|
|
BuildRequires: dos2unix
|
2020-09-07 10:07:21 +00:00
|
|
|
BuildRequires: python%{python3_pkgversion}-devel
|
|
|
|
BuildRequires: python%{python3_pkgversion}-setuptools
|
2019-08-14 21:21:56 +00:00
|
|
|
|
2021-02-24 16:03:49 +00:00
|
|
|
%if %{without bootstrap}
|
2020-09-07 10:07:21 +00:00
|
|
|
BuildRequires: python%{python3_pkgversion}-sphinx
|
2019-08-14 21:21:56 +00:00
|
|
|
%endif
|
2016-02-15 12:17:09 +00:00
|
|
|
|
2017-02-15 12:54:23 +00:00
|
|
|
%if 0%{?build_wheel}
|
|
|
|
BuildRequires: python%{python3_pkgversion}-pip
|
|
|
|
BuildRequires: python%{python3_pkgversion}-wheel
|
|
|
|
%endif
|
|
|
|
|
2005-08-03 19:08:56 +00:00
|
|
|
%description
|
|
|
|
pyparsing is a module that can be used to easily and directly configure syntax
|
|
|
|
definitions for any number of text parsing applications.
|
|
|
|
|
2016-02-15 12:17:09 +00:00
|
|
|
|
2021-02-24 16:03:49 +00:00
|
|
|
%if %{without bootstrap}
|
2015-11-17 18:35:06 +00:00
|
|
|
%package doc
|
2016-02-15 12:17:09 +00:00
|
|
|
Summary: Documentation for pyparsing python package
|
2010-10-25 12:18:40 +00:00
|
|
|
|
2021-05-27 13:20:28 +00:00
|
|
|
# Most examples are under the project's license, MIT
|
|
|
|
# pymicko.py is under GPLv3+
|
|
|
|
# snmp_api.h is under CMU-UC (MIT)
|
|
|
|
# sparser.py is under GPLv2+
|
|
|
|
# searchparser.py is under BSD (3-clause, with advertising)
|
|
|
|
# btpyparse.py is under "Simplified BSD license"
|
|
|
|
License: MIT and GPLv2+ and GPLv3+ and BSD
|
|
|
|
|
2015-11-17 18:35:06 +00:00
|
|
|
%description doc
|
2010-10-25 12:18:40 +00:00
|
|
|
The package contains documentation for pyparsing.
|
2019-08-14 21:21:56 +00:00
|
|
|
%endif
|
2010-10-25 12:18:40 +00:00
|
|
|
|
2016-02-15 12:17:09 +00:00
|
|
|
|
2020-09-07 10:07:21 +00:00
|
|
|
%package -n python%{python3_pkgversion}-pyparsing
|
2020-03-30 18:31:24 +00:00
|
|
|
Summary: %{_summary}
|
2021-02-24 16:03:49 +00:00
|
|
|
%if %{with bootstrap}
|
|
|
|
Provides: python%{python3_pkgversion}dist(pyparsing) = %{version}
|
|
|
|
Provides: python%{python3_version}dist(pyparsing) = %{version}
|
|
|
|
%endif
|
|
|
|
|
2020-09-07 10:07:21 +00:00
|
|
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
|
2010-10-25 12:18:40 +00:00
|
|
|
|
2020-09-07 10:07:21 +00:00
|
|
|
%description -n python%{python3_pkgversion}-pyparsing
|
2010-10-25 12:18:40 +00:00
|
|
|
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.
|
2016-02-15 12:17:09 +00:00
|
|
|
|
2010-10-25 12:18:40 +00:00
|
|
|
|
2005-08-03 19:08:56 +00:00
|
|
|
%prep
|
2019-01-10 10:27:15 +00:00
|
|
|
%setup -q -n %{name}-%{name}_%{version}
|
2019-02-26 12:44:45 +00:00
|
|
|
dos2unix -k CHANGES LICENSE
|
2019-01-10 10:27:15 +00:00
|
|
|
|
2005-08-03 19:08:56 +00:00
|
|
|
|
|
|
|
%build
|
2017-02-15 12:54:23 +00:00
|
|
|
%if 0%{?build_wheel}
|
|
|
|
%py3_build_wheel
|
|
|
|
%else
|
2016-02-15 12:17:09 +00:00
|
|
|
%py3_build
|
2017-02-15 12:54:23 +00:00
|
|
|
%endif
|
2005-08-03 19:08:56 +00:00
|
|
|
|
2021-02-24 16:03:49 +00:00
|
|
|
%if %{without bootstrap}
|
2019-01-10 10:27:15 +00:00
|
|
|
# build docs
|
2019-02-26 12:44:45 +00:00
|
|
|
pushd docs
|
|
|
|
# Theme is not available
|
|
|
|
sed -i '/alabaster/d' conf.py
|
|
|
|
sphinx-build -b html . html
|
|
|
|
popd
|
2019-08-14 21:21:56 +00:00
|
|
|
%endif
|
2019-01-10 10:27:15 +00:00
|
|
|
|
2005-08-03 19:08:56 +00:00
|
|
|
%install
|
2017-02-15 12:54:23 +00:00
|
|
|
%if 0%{?build_wheel}
|
2019-09-02 09:31:01 +00:00
|
|
|
%py3_install_wheel %{python_wheelname}
|
2017-02-15 12:54:23 +00:00
|
|
|
%else
|
2016-02-15 12:17:09 +00:00
|
|
|
%py3_install
|
2017-02-15 12:54:23 +00:00
|
|
|
%endif
|
2005-08-03 19:08:56 +00:00
|
|
|
|
2016-02-15 12:17:09 +00:00
|
|
|
|
2019-01-10 10:27:15 +00:00
|
|
|
%check
|
|
|
|
%{__python3} unitTests.py
|
|
|
|
%{__python3} simple_unit_tests.py
|
|
|
|
|
|
|
|
|
2020-09-07 10:07:21 +00:00
|
|
|
%files -n python%{python3_pkgversion}-pyparsing
|
2015-11-17 18:35:06 +00:00
|
|
|
%license LICENSE
|
2019-02-26 12:44:45 +00:00
|
|
|
%doc CHANGES README.rst
|
2016-12-30 17:41:26 +00:00
|
|
|
%{python3_sitelib}/pyparsing.py
|
|
|
|
%{python3_sitelib}/__pycache__/*
|
2019-09-02 09:31:01 +00:00
|
|
|
%{python3_sitelib}/pyparsing-*-info/
|
2010-10-25 12:18:40 +00:00
|
|
|
|
2021-02-24 16:03:49 +00:00
|
|
|
%if %{without bootstrap}
|
2010-10-25 12:18:40 +00:00
|
|
|
%files doc
|
2015-11-17 18:35:06 +00:00
|
|
|
%license LICENSE
|
2019-02-26 12:44:45 +00:00
|
|
|
%doc CHANGES README.rst docs/html examples
|
2019-08-14 21:21:56 +00:00
|
|
|
%endif
|
2019-01-10 10:27:15 +00:00
|
|
|
|
2005-08-03 19:08:56 +00:00
|
|
|
|
|
|
|
%changelog
|
2021-07-23 04:29:02 +00:00
|
|
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.7-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-06-02 17:22:00 +00:00
|
|
|
* Wed Jun 02 2021 Python Maint <python-maint@redhat.com> - 2.4.7-8
|
|
|
|
- Rebuilt for Python 3.10
|
|
|
|
|
2021-06-01 14:34:31 +00:00
|
|
|
* Tue Jun 01 2021 Python Maint <python-maint@redhat.com> - 2.4.7-7
|
|
|
|
- Bootstrap for Python 3.10
|
|
|
|
|
2021-05-27 13:20:28 +00:00
|
|
|
* Thu May 27 2021 Petr Viktorin <pviktori@redhat.com> - 2.4.7-6
|
|
|
|
- Fix licence for examples shipped in pyparsing-doc
|
|
|
|
|
2021-01-27 08:55:59 +00:00
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.7-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-07-28 23:21:52 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.7-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-05-22 17:30:40 +00:00
|
|
|
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 2.4.7-3
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
2020-05-21 22:59:04 +00:00
|
|
|
* Thu May 21 2020 Miro Hrončok <mhroncok@redhat.com> - 2.4.7-2
|
|
|
|
- Bootstrap for Python 3.9
|
|
|
|
|
2020-04-06 09:02:43 +00:00
|
|
|
* Mon Apr 06 2020 Dan Horák <dan[at]danny.cz> - 2.4.7-1
|
|
|
|
- Update to 2.4.7 (#1821085)
|
|
|
|
|
2020-03-30 18:31:24 +00:00
|
|
|
* Mon Mar 30 2020 David King <amigadave@amigadave.com> - 2.4.6-3
|
|
|
|
- Fix the summary for the Python 3 subpackage
|
|
|
|
|
2020-01-30 10:13:57 +00:00
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2020-01-03 12:30:32 +00:00
|
|
|
* Fri Jan 03 2020 Dan Horák <dan[at]danny.cz> - 2.4.6-1
|
|
|
|
- Update to 2.4.6 (#1786815)
|
|
|
|
|
2019-11-15 08:32:14 +00:00
|
|
|
* Fri Nov 15 2019 Dan Horák <dan[at]danny.cz> - 2.4.5-1
|
|
|
|
- Update to 2.4.5 (#1768725)
|
|
|
|
- Drop Python2 subpackage (#1770564)
|
|
|
|
|
2019-10-08 12:49:50 +00:00
|
|
|
* Tue Oct 8 2019 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.4.2-1
|
|
|
|
- Update to latest version (#1742167)
|
|
|
|
|
2019-09-02 09:31:01 +00:00
|
|
|
* Mon Sep 02 2019 Miro Hrončok <mhroncok@redhat.com> - 2.4.0-6
|
|
|
|
- Reduce Python 2 build time dependencies
|
|
|
|
|
2019-08-15 15:37:44 +00:00
|
|
|
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 2.4.0-5
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-08-15 13:12:32 +00:00
|
|
|
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 2.4.0-4
|
2019-08-14 21:21:56 +00:00
|
|
|
- Bootstrap for Python 3.8
|
|
|
|
|
2019-07-26 11:46:04 +00:00
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-04-15 20:14:10 +00:00
|
|
|
* Mon Apr 15 2019 José Matos <jamatos@fedoraproject.org> - 2.4.0-1
|
|
|
|
- Update to 2.4.0
|
|
|
|
|
2019-02-26 12:44:45 +00:00
|
|
|
* Tue Feb 26 2019 Yatin Karel <ykarel@redhat.com> - 2.3.1-1
|
|
|
|
- Update to 2.3.1
|
|
|
|
|
2019-02-02 05:15:52 +00:00
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2019-01-10 10:27:15 +00:00
|
|
|
* Thu Jan 10 2019 Dan Horák <dan[at]danny.cz> - 2.3.0-1
|
|
|
|
- Update to 2.3.0
|
|
|
|
|
2018-07-13 23:11:49 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-13 17:03:31 +00:00
|
|
|
* Wed Jun 13 2018 Miro Hrončok <mhroncok@redhat.com> - 2.2.0-2
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-03-14 17:01:36 +00:00
|
|
|
* Wed Mar 14 2018 Charalampos Stratakis <cstratak@redhat.com> - 2.2.0-1
|
|
|
|
- Update to 2.2.0
|
|
|
|
|
2018-02-21 02:15:13 +00:00
|
|
|
* Wed Feb 21 2018 Iryna Shcherbina <ishcherb@redhat.com> - 2.1.10-7
|
|
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
|
2018-02-09 06:16:26 +00:00
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.10-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-24 12:11:11 +00:00
|
|
|
* Wed Jan 24 2018 Miro Hrončok <mhroncok@redhat.com> - 2.1.10-5
|
|
|
|
- Remove the empty pyparsing package, provide and obsolete it from python2-pyparsing
|
|
|
|
|
2017-07-27 09:22:31 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.10-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-15 12:54:23 +00:00
|
|
|
* Mon Feb 13 2017 Charalampos Stratakis <cstratak@redhat.com> - 2.1.10-3
|
|
|
|
- Rebuild as wheel
|
|
|
|
|
2017-02-11 08:08:31 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.10-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-12-30 17:41:26 +00:00
|
|
|
* Fri Dec 30 2016 José Matos <jamatos@fedoraproject.org> - 2.1.10-1
|
|
|
|
- update to 2.1.10
|
|
|
|
- do not own __pycache__
|
|
|
|
|
2016-12-10 14:27:51 +00:00
|
|
|
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.1.5-3
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
- Add missing BuildRequires for python-setuptools
|
|
|
|
|
2016-07-19 08:36:04 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.5-2
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-06-16 14:26:22 +00:00
|
|
|
* Thu Jun 16 2016 José Abílio Matos <jamatos@fc.up.pt> - 2.1.5-1
|
|
|
|
- update to 2.1.5
|
|
|
|
|
2016-05-12 09:00:28 +00:00
|
|
|
* Thu May 12 2016 José Matos <jamatos@fedoraproject.org> - 2.1.3-1
|
|
|
|
- update to 2.1.3
|
|
|
|
|
2016-05-08 18:01:34 +00:00
|
|
|
* Sun May 8 2016 José Matos <jamatos@fedoraproject.org> - 2.1.1-1
|
|
|
|
- update to 2.1.1
|
|
|
|
|
2016-02-16 11:42:21 +00:00
|
|
|
* Tue Feb 16 2016 José Matos <jamatos@fedoraproject.org> - 2.1.0-2
|
|
|
|
- fix typo in provides for the python3 subpackage
|
|
|
|
|
2016-02-15 12:17:09 +00:00
|
|
|
* Mon Feb 15 2016 José Matos <jamatos@fedoraproject.org> - 2.1.0-1
|
|
|
|
- update to 2.1.0
|
|
|
|
- add a python2 subpackage preserving the upgrade path
|
|
|
|
|
2016-02-04 18:46:55 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.7-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-01-08 18:47:41 +00:00
|
|
|
* Fri Jan 08 2016 Terje Rosten <terje.rosten@ntnu.no> - 2.0.7-1
|
|
|
|
- 2.0.7
|
|
|
|
|
2015-11-17 18:35:06 +00:00
|
|
|
* Tue Nov 17 2015 Terje Rosten <terje.rosten@ntnu.no> - 2.0.6-1
|
|
|
|
- 2.0.6
|
|
|
|
- Some clean up
|
|
|
|
|
2015-09-23 13:51:04 +00:00
|
|
|
* Wed Sep 23 2015 Robert Kuska <rkuska@redhat.com> - 2.0.3-3
|
|
|
|
- Rebuilt for Python3.5 rebuild
|
|
|
|
|
2015-06-18 18:14:49 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2014-11-28 18:39:06 +00:00
|
|
|
* Fri Nov 28 2014 José Matos <jamatos@fedoraproject.org> - 2.0.3-1
|
|
|
|
- update to 2.0.3
|
|
|
|
- include the whole documentation set
|
|
|
|
|
2014-06-07 18:09:52 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-15 11:44:12 +00:00
|
|
|
* Wed May 14 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 2.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
|
|
|
|
2013-11-07 19:56:11 +00:00
|
|
|
* Sun Oct 27 2013 Terje Rosten <terje.rosten@ntnu.no> - 2.0.1-1
|
|
|
|
- 2.0.1
|
|
|
|
|
2013-08-04 06:02:19 +00:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.6-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-04-02 23:35:49 +00:00
|
|
|
* Wed Apr 3 2013 Thomas Spura <tomspur@fedoraproject.org> - 1.5.6-8
|
|
|
|
- add patch to correct typo in exception handling
|
|
|
|
|
2013-02-14 18:47:30 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.6-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-08-04 02:59:59 +00:00
|
|
|
* Fri Aug 03 2012 David Malcolm <dmalcolm@redhat.com> - 1.5.6-6
|
|
|
|
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
|
|
|
|
|
2012-08-03 18:10:36 +00:00
|
|
|
* Fri Aug 3 2012 David Malcolm <dmalcolm@redhat.com> - 1.5.6-5
|
|
|
|
- remove rhel logic from with_python3 conditional
|
|
|
|
|
2012-07-21 04:19:36 +00:00
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.6-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-14 01:28:45 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.6-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-12-06 22:28:09 +00:00
|
|
|
* Tue Dec 6 2011 David Malcolm <dmalcolm@redhat.com> - 1.5.6-2
|
|
|
|
- fix __pycache__ conditional on RHEL
|
|
|
|
|
2011-07-01 07:29:45 +00:00
|
|
|
* Fri Jul 1 2011 José Matos <jamatos@fedoraproject.org> - 1.5.6-1
|
|
|
|
- New upstream version.
|
|
|
|
|
2011-02-09 02:18:45 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-10-25 12:18:40 +00:00
|
|
|
* 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
|
|
|
|
|
2010-07-22 03:31:28 +00:00
|
|
|
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 1.5.0-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
|
2010-07-16 11:03:27 +00:00
|
|
|
* Fri Jul 16 2010 Dan Horák <dan[at]danny.cz> - 1.5.0-6
|
|
|
|
- include egginfo on EL >= 6
|
|
|
|
|
2009-07-26 19:56:35 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-26 20:18:32 +00:00
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-11-29 18:16:52 +00:00
|
|
|
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.5.0-3
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2008-08-04 15:16:19 +00:00
|
|
|
* Mon Aug 4 2008 José Matos <jamatos[AT]fc.up.pt> - 1.5.0-2
|
|
|
|
- respun (now with the right sources)
|
|
|
|
|
2008-08-04 15:09:09 +00:00
|
|
|
* Mon Aug 4 2008 José Matos <jamatos[AT]fc.up.pt> - 1.5.0-1
|
|
|
|
- new upstream release.
|
|
|
|
|
2008-04-01 16:19:31 +00:00
|
|
|
* Tue Apr 1 2008 José Matos <jamatos[AT]fc.up.pt> - 1.4.11-1
|
|
|
|
- New upstream version, add egg-info for F9+.
|
|
|
|
|
2007-08-29 15:56:25 +00:00
|
|
|
* Wed Aug 29 2007 José Matos <jamatos[AT]fc.up.pt> - 1.4.7-1
|
|
|
|
- New upstream version.
|
|
|
|
|
2007-04-21 10:58:46 +00:00
|
|
|
* Sat Apr 21 2007 José Matos <jamatos[AT]fc.up.pt> - 1.4.6-1
|
|
|
|
- New upstream version.
|
|
|
|
|
2006-12-11 23:43:49 +00:00
|
|
|
* Mon Dec 11 2006 José Matos <jamatos[AT]fc.up.pt> - 1.4.4-1
|
|
|
|
- New upstream version.
|
|
|
|
|
2006-09-11 18:04:32 +00:00
|
|
|
* Mon Sep 11 2006 José Matos <jamatos[AT]fc.up.pt> - 1.4.3-1
|
|
|
|
- New version.
|
|
|
|
|
2005-08-03 19:08:56 +00:00
|
|
|
* Wed Aug 3 2005 Ignacio Vazquez-Abrams <ivazquez@ivazquez.net> 1.3-1
|
|
|
|
- Initial RPM release
|