File python3-dateutil.spec of Package python-dateutil
#
# spec file for package python3-dateutil
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define modname dateutil
Name: python3-%{modname}
%define tarname python-%{modname}
Summary: A Python Datetime Library
License: BSD-3-Clause
Group: Development/Libraries/Python
Version: 2.1
Release: 0
Source0: http://pypi.python.org/packages/source/p/%{tarname}/%{tarname}-%{version}.tar.gz
Patch0: %{name}-utf8.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Url: http://labix.org/python-dateutil
BuildRequires: python3
BuildRequires: python3-devel
BuildRequires: python3-distribute
BuildRequires: python3-six
BuildArch: noarch
Requires: python(abi) = %{py3_ver}
Requires: python3-six
%description
The python dateutil module provides powerful extensions to the standard
datetime module.
* Computing of relative deltas (next month, next year, next monday,
last week of month, etc.)
* Computing of relative deltas between two given dates and/or
datetime objects
* Computing of dates based on very flexible recurrence rules, using
a superset of the iCalendar specification. Parsing of RFC strings
is supported as well.
* Generic parsing of dates in almost any string format.
* Timezone (tzinfo) implementations for tzfile(5) format files
(/etc/localtime, /usr/share/zoneinfo, etc.), TZ environment
string (in all known formats), iCalendar format files, given
ranges (with help from relative deltas), local machine timezone,
fixed offset timezone, UTC timezone, and Windows registry-based
time zones.
* Internal up-to-date world timezone information based on Olson's
database.
* Computing of Easter Sunday dates for any given year, using Western,
Orthodox or Julian algorithms.
%prep
%setup -q -n %{tarname}-%{version}
%patch0 -p1
%build
rm setup.cfg
CFLAGS="%{optflags}" python3 setup.py build
%install
python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root)
%doc LICENSE NEWS PKG-INFO README
%{python3_sitelib}/%{modname}/
%{python3_sitelib}/python_%{modname}-%{version}-py%{py3_ver}.egg-info/
%changelog