e511e1
# Prepared for Python 2 removal
e511e1
%bcond_with python2
e511e1
e511e1
# Allow build without test
e511e1
%bcond_without tests
e511e1
e511e1
Name:           pytz
e511e1
Version:        2019.3
e511e1
Release:        3%{?dist}
e511e1
Summary:        World Timezone Definitions for Python
e511e1
e511e1
License:        MIT
e511e1
URL:            http://pytz.sourceforge.net/
e511e1
Source0:        %pypi_source
e511e1
# Patch to use the system supplied zoneinfo files
e511e1
Patch0:         pytz-zoneinfo.patch
e511e1
# https://bugzilla.redhat.com/1497572
e511e1
Patch1:         remove_tzinfo_test.patch
e511e1
e511e1
BuildArch:      noarch
e511e1
# Exclude i686 arch. Due to a modularity issue it's being added to the
e511e1
# x86_64 compose of CRB, but we don't want to ship it at all.
e511e1
# See: https://projects.engineering.redhat.com/browse/RCM-72605
e511e1
ExcludeArch:    i686
e511e1
e511e1
%global _description\
e511e1
pytz brings the Olson tz database into Python. This library allows accurate\
e511e1
and cross platform timezone calculations using Python 2.3 or higher. It\
e511e1
also solves the issue of ambiguous times at the end of daylight savings,\
e511e1
which you can read more about in the Python Library Reference\
e511e1
(datetime.tzinfo).\
e511e1
\
e511e1
Almost all (over 540) of the Olson timezones are supported.
e511e1
e511e1
%description %_description
e511e1
e511e1
e511e1
%if %{with python2}
e511e1
%package -n python2-%{name}
e511e1
Summary:        %summary
e511e1
%{?python_provide:%python_provide python2-%{name}}
e511e1
BuildRequires:  python2-devel
e511e1
%if %{with tests}
e511e1
BuildRequires:  python2-pytest
e511e1
%endif
e511e1
Requires:       tzdata
e511e1
# Remove before F30
e511e1
Provides: pytz = %{version}-%{release}
e511e1
Obsoletes: pytz < %{version}-%{release}
e511e1
e511e1
%description -n python2-%{name} %_description
e511e1
%endif
e511e1
e511e1
e511e1
%package -n python%{python3_pkgversion}-%{name}
e511e1
Summary:        %summary
e511e1
%{?python_provide:%python_provide python%{python3_pkgversion}-%{name}}
e511e1
BuildRequires:  python%{python3_pkgversion}-devel
e511e1
BuildRequires:  python%{python3_pkgversion}-rpm-macros
e511e1
%if %{with tests}
e511e1
BuildRequires:  python%{python3_pkgversion}-pytest
e511e1
%endif
e511e1
Requires:       tzdata
e511e1
e511e1
%description -n python%{python3_pkgversion}-%{name} %_description
e511e1
e511e1
e511e1
%prep
e511e1
%autosetup -p1
e511e1
e511e1
e511e1
%build
e511e1
%if %{with python2}
e511e1
%py2_build
e511e1
%endif
e511e1
%py3_build
e511e1
e511e1
e511e1
%install
e511e1
%if %{with python2}
e511e1
%py2_install
e511e1
rm -r %{buildroot}%{python2_sitelib}/pytz/zoneinfo
e511e1
pathfix.py -pn -i %{__python2} %{buildroot}%{python2_sitelib}
e511e1
%endif
e511e1
e511e1
%py3_install
e511e1
rm -r %{buildroot}%{python3_sitelib}/pytz/zoneinfo
e511e1
pathfix%{python3_version}.py -pn -i %{__python3} %{buildroot}%{python3_sitelib}
e511e1
e511e1
e511e1
%check
e511e1
%if %{with tests}
e511e1
%if %{with python2}
e511e1
PYTHONPATH=%{buildroot}%{python2_sitelib} %{__python2} -m pytest -v
e511e1
%endif
e511e1
PYTHONPATH=%{buildroot}%{python3_sitelib} %{__python3} -m pytest -v
e511e1
%endif
e511e1
e511e1
e511e1
%if %{with python2}
e511e1
%files -n python2-%{name}
e511e1
%license LICENSE.txt
e511e1
%doc README.txt
e511e1
%{python2_sitelib}/pytz/
e511e1
%{python2_sitelib}/*.egg-info
e511e1
%endif
e511e1
e511e1
%files -n python%{python3_pkgversion}-pytz
e511e1
%license LICENSE.txt
e511e1
%doc README.txt
e511e1
%{python3_sitelib}/pytz/
e511e1
%{python3_sitelib}/*.egg-info
e511e1
e511e1
e511e1
%changelog
e511e1
* Fri Dec 13 2019 Tomas Orsava <torsava@redhat.com> - 2019.3-3
e511e1
- Exclude unsupported i686 arch
e511e1
e511e1
* Wed Nov 20 2019 Lumír Balhar <lbalhar@redhat.com> - 2019.3-2
e511e1
- Adjusted for Python 3.8 module in RHEL 8
e511e1
e511e1
* Mon Oct 07 2019 Gwyn Ciesla <gwync@protonmail.com> - 2019.3-1
e511e1
- 2019.3
e511e1
e511e1
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 2019.2-3
e511e1
- Rebuilt for Python 3.8.0rc1 (#1748018)
e511e1
e511e1
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 2019.2-2
e511e1
- Rebuilt for Python 3.8
e511e1
e511e1
* Wed Jul 31 2019 Gwyn Ciesla <gwync@protonmail.com> - 2019.2-1
e511e1
- 2019.2
e511e1
e511e1
* Fri Jul 26 2019 Gwyn Ciesla <gwync@protonmail.com> - 2019.1-1
e511e1
- 2019.1
e511e1
e511e1
* Tue Mar 12 2019 Miro Hrončok <mhroncok@redhat.com> - 2018.9-1
e511e1
- Update to 2018.9
e511e1
- Remove leapseconds from pytz.all_timezones (#1642003)
e511e1
e511e1
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2018.5-2
e511e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
e511e1
e511e1
* Thu Aug 23 2018 Miro Hrončok <mhroncok@redhat.com> - 2018.5-1
e511e1
- Update to 2018.5 (#1508227)
e511e1
e511e1
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2017.2-10
e511e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
e511e1
e511e1
* Thu Jun 14 2018 Miro Hrončok <mhroncok@redhat.com> - 2017.2-9
e511e1
- Rebuilt for Python 3.7
e511e1
e511e1
* Wed May 23 2018 Miro Hrončok <mhroncok@redhat.com> - 2017.2-8
e511e1
- Fix ambiguous shebangs
e511e1
e511e1
* Sat Mar 17 2018 Matěj Cepl <mcepl@redhat.com> - 2017.2-7
e511e1
- Switch __python for __python2 macro.
e511e1
e511e1
* Sat Mar 17 2018 Matěj Cepl <mcepl@redhat.com> - 2017.2-6
e511e1
- remove test_tzinfo.PicklingTest.testRoundtrip which fails with our
e511e1
  system-wide timezone database (#1497572)
e511e1
e511e1
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2017.2-5
e511e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
e511e1
e511e1
* Wed Sep 27 2017 Troy Dawson <tdawson@redhat.com> - 2017.2-4
e511e1
- Cleanup spec file conditionals
e511e1
e511e1
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2017.2-3
e511e1
- Python 2 binary package renamed to python2-pytz
e511e1
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
e511e1
e511e1
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2017.2-2
e511e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
e511e1
e511e1
* Mon Jul 17 2017 Petr Šabata <contyk@redhat.com> - 2017.2-1
e511e1
- Update to 2017.2
e511e1
e511e1
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2016.10-4
e511e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
e511e1
e511e1
* Tue Dec 13 2016 Charalampos Stratakis <cstratak@redhat.com> - 2016.10-3
e511e1
- Enable tests
e511e1
e511e1
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 2016.10-2
e511e1
- Rebuild for Python 3.6
e511e1
- Disable python3 tests for now
e511e1
e511e1
* Tue Dec 6 2016 Orion Poplawski <orion@cora.nwra.com> - 2016.10-1
e511e1
- Update to 2016.10
e511e1
e511e1
* Tue Nov 8 2016 Orion Poplawski <orion@cora.nwra.com> - 2016.7-1
e511e1
- Update to 2016.7
e511e1
e511e1
* Thu Jul 21 2016 Matěj Cepl <mcepl@redhat.com> - 2016.6.1-1
e511e1
- Update to 2016.6.1 (RHBZ #1356337)
e511e1
- Fix Source0 URL to override a change in PyPI URLs (see
e511e1
  https://bitbucket.org/pypa/pypi/issues/438/)
e511e1
e511e1
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2016.4-3
e511e1
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
e511e1
e511e1
* Mon May 16 2016 Orion Poplawski <orion@cora.nwra.com> 2016.4-1
e511e1
- Use proper PYTHONPATH with python3 test
e511e1
- Use %%license
e511e1
- Drop BuildRoot and %%clean
e511e1
e511e1
* Sat Apr 23 2016 Matěj Cepl <mcepl@redhat.com> 2016.4-1
e511e1
- Update to 2016.4 (RHBZ #1265036)
e511e1
e511e1
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2015.7-3
e511e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
e511e1
e511e1
* Tue Nov 03 2015 Robert Kuska <rkuska@redhat.com> - 2015.7-2
e511e1
- Rebuilt for Python3.5 rebuild
e511e1
e511e1
* Mon Oct 26 2015 Orion Poplawski <orion@cora.nwra.com> - 2015.7-1
e511e1
- Update to 2015.7
e511e1
e511e1
* Sun Aug 30 2015 Orion Poplawski <orion@cora.nwra.com> - 2015.4-1
e511e1
- Update to 2015.4 (bug #1161236)
e511e1
- Do not ship zoneinfo with python3 package (bug #1251554)
e511e1
- Run tests
e511e1
e511e1
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2012d-8
e511e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
e511e1
e511e1
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2012d-7
e511e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
e511e1
e511e1
* Wed May 14 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 2012d-6
e511e1
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
e511e1
e511e1
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2012d-5
e511e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
e511e1
e511e1
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2012d-4
e511e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
e511e1
e511e1
* Thu Jan  3 2013 David Malcolm <dmalcolm@redhat.com> - 2012d-3
e511e1
- remove rhel logic from with_python3 conditional
e511e1
e511e1
* Fri Sep 14 2012 Jon Ciesla <limburgher@gmail.com> - 2012d-2
e511e1
- Use system zoneinfo, BZ 857266.
e511e1
e511e1
* Thu Aug 23 2012 Jon Ciesla <limburgher@gmail.com> - 2012d-1
e511e1
- Latest upstream, python3 support, BZ 851226.
e511e1
e511e1
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2010h-6
e511e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e511e1
e511e1
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2010h-5
e511e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
e511e1
e511e1
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2010h-4
e511e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
e511e1
e511e1
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2010h-3
e511e1
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
e511e1
e511e1
* Mon Jun 28 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 2010h-2
e511e1
- Define => global
e511e1
e511e1
* Tue Apr 27 2010 Jon Ciesla <limb@jcomserv.net> - 2010h-1
e511e1
- Update to current version, BZ 573252.
e511e1
e511e1
* Mon Feb 01 2010 Jon Ciesla <limb@jcomserv.net> - 2009i-7
e511e1
- Corrected Source0 URL, BZ 560168.
e511e1
e511e1
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2008i-6
e511e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
e511e1
e511e1
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2008i-5
e511e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
e511e1
e511e1
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2008i-4
e511e1
- Rebuild for Python 2.6
e511e1
e511e1
* Tue Nov 18 2008 Jef Spaleta <jspaleta at fedoraproject dot org> 2008i-3
e511e1
- Apply patch correctly.
e511e1
e511e1
* Thu Nov 13 2008 Jef Spaleta <jspaleta at fedoraproject dot org> 2008i-2
e511e1
- Updated tzdata patch from Petr Machata bug 471014
e511e1
e511e1
* Tue Nov 11 2008 Jef Spaleta <jspaleta at fedoraproject dot org> 2008i-1
e511e1
- Update to latest, now using timezone files provided by tzdata package
e511e1
e511e1
* Fri Jan 04 2008 Jef Spaleta <jspaleta@gmail.com> 2006p-3
e511e1
- Fix for egg-info file creation
e511e1
e511e1
* Mon Dec 11 2006 Jef Spaleta <jspaleta@gmail.com> 2006p-2
e511e1
- Bump for rebuild against python 2.5 and change BR to python-devel accordingly
e511e1
e511e1
* Fri Dec  8 2006 Orion Poplawski <orion@cora.nwra.com> 2006p-1
e511e1
- Update to 2006p
e511e1
e511e1
* Thu Sep  7 2006 Orion Poplawski <orion@cora.nwra.com> 2006g-1
e511e1
- Update to 2006g
e511e1
e511e1
* Mon Feb 13 2006 Orion Poplawski <orion@cora.nwra.com> 2005r-2
e511e1
- Rebuild for gcc/glibc changes
e511e1
e511e1
* Tue Jan  3 2006 Orion Poplawski <orion@cora.nwra.com> 2005r-1
e511e1
- Update to 2005r
e511e1
e511e1
* Thu Dec 22 2005 Orion Poplawski <orion@cora.nwra.com> 2005m-1
e511e1
- Update to 2005m
e511e1
e511e1
* Fri Jul 22 2005 Orion Poplawski <orion@cora.nwra.com> 2005i-2
e511e1
- Remove -O1 from install command
e511e1
e511e1
* Tue Jul 05 2005 Orion Poplawski <orion@cora.nwra.com> 2005i-1
e511e1
- Initial Fedora Extras package