7ae1445b6a
- Update to latest, now using timezone files provided by tzdata package
83 lines
2.4 KiB
RPMSpec
83 lines
2.4 KiB
RPMSpec
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
|
|
Name: pytz
|
|
Version: 2008i
|
|
Release: 1%{?dist}
|
|
Summary: World Timezone Definitions for Python
|
|
|
|
Group: Development/Languages
|
|
License: MIT
|
|
URL: http://pytz.sourceforge.net/
|
|
Source0: http://dl.sf.net/%{name}/%{name}-%{version}.tar.gz
|
|
Patch0: pytz_zoneinfo.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
BuildArch: noarch
|
|
BuildRequires: python-devel
|
|
|
|
Requires: tzdata
|
|
|
|
%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.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0 -p0
|
|
|
|
%build
|
|
%{__python} setup.py build
|
|
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
%{__python} setup.py install --skip-build --root $RPM_BUILD_ROOT
|
|
chmod +x $RPM_BUILD_ROOT%{python_sitelib}/pytz/*.py
|
|
rm -rf $RPM_BUILD_ROOT%{python_sitelib}/pytz/zoneinfo
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc CHANGES.txt LICENSE.txt README.txt
|
|
%{python_sitelib}/pytz/
|
|
%{python_sitelib}/*.egg-info
|
|
|
|
%changelog
|
|
* Tue Nov 11 2008 Jef Spaleta <jspaleta at fedoraproject dot org> 2008i-1
|
|
- Update to latest, now using timezone files provided by tzdata package
|
|
|
|
* Fri Jan 04 2008 Jef Spaleta <jspaleta@gmail.com> 2006p-3
|
|
- Fix for egg-info file creation
|
|
|
|
* 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
|
|
|
|
* Fri Dec 8 2006 Orion Poplawski <orion@cora.nwra.com> 2006p-1
|
|
- Update to 2006p
|
|
|
|
* Thu Sep 7 2006 Orion Poplawski <orion@cora.nwra.com> 2006g-1
|
|
- Update to 2006g
|
|
|
|
* Mon Feb 13 2006 Orion Poplawski <orion@cora.nwra.com> 2005r-2
|
|
- Rebuild for gcc/glibc changes
|
|
|
|
* Tue Jan 3 2006 Orion Poplawski <orion@cora.nwra.com> 2005r-1
|
|
- Update to 2005r
|
|
|
|
* Thu Dec 22 2005 Orion Poplawski <orion@cora.nwra.com> 2005m-1
|
|
- Update to 2005m
|
|
|
|
* 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
|