2013-01-03 16:26:26 +00:00
|
|
|
%if 0%{?fedora} > 12
|
2012-08-23 14:51:08 +00:00
|
|
|
%global with_python3 1
|
|
|
|
%else
|
2010-06-28 08:23:49 +00:00
|
|
|
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
|
|
%endif
|
2005-07-22 20:58:39 +00:00
|
|
|
|
|
|
|
Name: pytz
|
2012-08-23 14:51:08 +00:00
|
|
|
Version: 2012d
|
2015-06-18 21:33:16 +00:00
|
|
|
Release: 8%{?dist}
|
2005-07-22 20:58:39 +00:00
|
|
|
Summary: World Timezone Definitions for Python
|
|
|
|
|
|
|
|
Group: Development/Languages
|
|
|
|
License: MIT
|
|
|
|
URL: http://pytz.sourceforge.net/
|
2010-02-01 18:00:49 +00:00
|
|
|
Source0: http://pypi.python.org/packages/source/p/%{name}/%{name}-%{version}.tar.gz
|
2012-09-14 13:32:28 +00:00
|
|
|
Patch0: pytz-2012d_zoneinfo.patch
|
2010-02-01 18:00:49 +00:00
|
|
|
|
2005-07-22 20:58:39 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
|
|
|
|
BuildArch: noarch
|
2012-08-23 14:51:08 +00:00
|
|
|
BuildRequires: python2-devel
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
%endif
|
2005-07-22 20:58:39 +00:00
|
|
|
|
2008-11-11 18:10:24 +00:00
|
|
|
Requires: tzdata
|
|
|
|
|
2005-07-22 20:58:39 +00:00
|
|
|
%description
|
|
|
|
pytz brings the Olson tz database into Python. This library allows accurate
|
|
|
|
and cross platform timezone calculations using Python 2.3 or higher. It
|
|
|
|
also solves the issue of ambiguous times at the end of daylight savings,
|
|
|
|
which you can read more about in the Python Library Reference
|
|
|
|
(datetime.tzinfo).
|
|
|
|
|
|
|
|
Amost all (over 540) of the Olson timezones are supported.
|
|
|
|
|
2012-08-23 14:51:08 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
%package -n python3-%{name}
|
|
|
|
Requires: python3
|
|
|
|
Summary: World Timezone Definitions for Python
|
|
|
|
|
|
|
|
Group: Development/Languages
|
|
|
|
%description -n python3-%{name}
|
|
|
|
pytz brings the Olson tz database into Python. This library allows accurate
|
|
|
|
and cross platform timezone calculations using Python 2.3 or higher. It
|
|
|
|
also solves the issue of ambiguous times at the end of daylight savings,
|
|
|
|
which you can read more about in the Python Library Reference
|
|
|
|
(datetime.tzinfo).
|
|
|
|
|
|
|
|
Amost all (over 540) of the Olson timezones are supported.
|
|
|
|
%endif
|
|
|
|
|
2005-07-22 20:58:39 +00:00
|
|
|
%prep
|
|
|
|
%setup -q
|
2012-09-14 13:32:28 +00:00
|
|
|
%patch0 -p0
|
2012-08-23 14:51:08 +00:00
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
cp -a . %{py3dir}
|
|
|
|
%endif
|
2005-07-22 20:58:39 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
%{__python} setup.py build
|
2012-08-23 14:51:08 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
pushd %{py3dir}
|
|
|
|
%{__python3} setup.py build
|
|
|
|
popd
|
|
|
|
%endif # with_python3
|
|
|
|
|
2005-07-22 20:58:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
2012-08-23 14:51:08 +00:00
|
|
|
%{__python} setup.py install --skip-build --root %{buildroot}
|
|
|
|
chmod +x %{buildroot}%{python_sitelib}/pytz/*.py
|
|
|
|
rm -rf %{buildroot}%{python_sitelib}/pytz/zoneinfo
|
|
|
|
|
|
|
|
%if 0%{?with_python3}
|
|
|
|
pushd %{py3dir}
|
|
|
|
%{__python3} setup.py install --skip-build --root %{buildroot}
|
|
|
|
popd
|
|
|
|
%endif # with_python3
|
|
|
|
|
2006-09-07 20:08:52 +00:00
|
|
|
|
2005-07-22 20:58:39 +00:00
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc CHANGES.txt LICENSE.txt README.txt
|
|
|
|
%{python_sitelib}/pytz/
|
2008-01-05 00:17:30 +00:00
|
|
|
%{python_sitelib}/*.egg-info
|
2005-07-22 20:58:39 +00:00
|
|
|
|
2012-08-23 14:51:08 +00:00
|
|
|
%if 0%{?with_python3}
|
|
|
|
%files -n python3-pytz
|
|
|
|
%doc CHANGES.txt LICENSE.txt README.txt
|
|
|
|
%{python3_sitelib}/pytz/
|
|
|
|
%{python3_sitelib}/*.egg-info
|
|
|
|
%endif # with_python3
|
|
|
|
|
|
|
|
|
2005-07-22 20:58:39 +00:00
|
|
|
%changelog
|
2015-06-18 21:33:16 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2012d-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2014-06-08 00:45:20 +00:00
|
|
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2012d-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-15 11:39:31 +00:00
|
|
|
* Wed May 14 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 2012d-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
|
|
|
|
2013-08-04 11:13:07 +00:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2012d-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-14 21:00:19 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2012d-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2013-01-03 16:26:26 +00:00
|
|
|
* Thu Jan 3 2013 David Malcolm <dmalcolm@redhat.com> - 2012d-3
|
|
|
|
- remove rhel logic from with_python3 conditional
|
|
|
|
|
2012-09-14 13:32:28 +00:00
|
|
|
* Fri Sep 14 2012 Jon Ciesla <limburgher@gmail.com> - 2012d-2
|
|
|
|
- Use system zoneinfo, BZ 857266.
|
|
|
|
|
2012-08-23 14:51:08 +00:00
|
|
|
* Thu Aug 23 2012 Jon Ciesla <limburgher@gmail.com> - 2012d-1
|
|
|
|
- Latest upstream, python3 support, BZ 851226.
|
|
|
|
|
2012-07-21 11:44:16 +00:00
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2010h-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-14 02:22:48 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2010h-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-02-09 07:48:23 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2010h-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-07-22 06:04:48 +00:00
|
|
|
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2010h-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
|
2010-06-28 08:23:49 +00:00
|
|
|
* Mon Jun 28 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 2010h-2
|
|
|
|
- Define => global
|
|
|
|
|
2010-04-28 14:36:01 +00:00
|
|
|
* Tue Apr 27 2010 Jon Ciesla <limb@jcomserv.net> - 2010h-1
|
|
|
|
- Update to current version, BZ 573252.
|
|
|
|
|
2010-02-01 18:01:53 +00:00
|
|
|
* Mon Feb 01 2010 Jon Ciesla <limb@jcomserv.net> - 2009i-7
|
2010-02-01 18:00:49 +00:00
|
|
|
- Corrected Source0 URL, BZ 560168.
|
|
|
|
|
2009-07-27 01:36:35 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2008i-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-27 00:25:33 +00:00
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2008i-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-11-29 18:25:46 +00:00
|
|
|
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2008i-4
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2008-11-18 18:20:33 +00:00
|
|
|
* Tue Nov 18 2008 Jef Spaleta <jspaleta at fedoraproject dot org> 2008i-3
|
|
|
|
- Apply patch correctly.
|
|
|
|
|
2008-11-13 17:36:46 +00:00
|
|
|
* Thu Nov 13 2008 Jef Spaleta <jspaleta at fedoraproject dot org> 2008i-2
|
|
|
|
- Updated tzdata patch from Petr Machata bug 471014
|
|
|
|
|
2008-11-11 18:10:24 +00:00
|
|
|
* Tue Nov 11 2008 Jef Spaleta <jspaleta at fedoraproject dot org> 2008i-1
|
|
|
|
- Update to latest, now using timezone files provided by tzdata package
|
|
|
|
|
2008-01-05 00:17:30 +00:00
|
|
|
* Fri Jan 04 2008 Jef Spaleta <jspaleta@gmail.com> 2006p-3
|
|
|
|
- Fix for egg-info file creation
|
|
|
|
|
2006-12-12 10:14:38 +00:00
|
|
|
* Mon Dec 11 2006 Jef Spaleta <jspaleta@gmail.com> 2006p-2
|
|
|
|
- Bump for rebuild against python 2.5 and change BR to python-devel accordingly
|
|
|
|
|
2006-12-11 16:57:51 +00:00
|
|
|
* Fri Dec 8 2006 Orion Poplawski <orion@cora.nwra.com> 2006p-1
|
|
|
|
- Update to 2006p
|
|
|
|
|
2006-09-07 20:08:52 +00:00
|
|
|
* Thu Sep 7 2006 Orion Poplawski <orion@cora.nwra.com> 2006g-1
|
|
|
|
- Update to 2006g
|
|
|
|
|
2006-02-13 19:11:20 +00:00
|
|
|
* Mon Feb 13 2006 Orion Poplawski <orion@cora.nwra.com> 2005r-2
|
|
|
|
- Rebuild for gcc/glibc changes
|
|
|
|
|
2006-01-03 18:41:21 +00:00
|
|
|
* Tue Jan 3 2006 Orion Poplawski <orion@cora.nwra.com> 2005r-1
|
|
|
|
- Update to 2005r
|
|
|
|
|
2005-12-23 00:09:35 +00:00
|
|
|
* Thu Dec 22 2005 Orion Poplawski <orion@cora.nwra.com> 2005m-1
|
|
|
|
- Update to 2005m
|
|
|
|
|
2005-07-22 20:58:39 +00:00
|
|
|
* Fri Jul 22 2005 Orion Poplawski <orion@cora.nwra.com> 2005i-2
|
|
|
|
- Remove -O1 from install command
|
|
|
|
|
|
|
|
* Tue Jul 05 2005 Orion Poplawski <orion@cora.nwra.com> 2005i-1
|
|
|
|
- Initial Fedora Extras package
|