forked from pool/python-iso8601
+ Fixes https://bitbucket.org/micktwomey/pyiso8601/issue/14/regression-yyyy-mm-no-longer-parses + Adds YYYY as a valid date (uses 1 for both month and day) + Woo, semantic versioning, .10 at last. - Changes from version 0.1.9: + Lots of fixes tightening up parsing from jdanjou. + Release addresses https://bitbucket.org/micktwomey/pyiso8601/issue/13/new-release-based-on-critical-bug-fix - Run tests again OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-iso8601?expand=0&rev=11
63 lines
1.8 KiB
RPMSpec
63 lines
1.8 KiB
RPMSpec
#
|
|
# spec file for package python-iso8601
|
|
#
|
|
# Copyright (c) 2014 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/
|
|
#
|
|
|
|
|
|
Name: python-iso8601
|
|
Version: 0.1.10
|
|
Release: 0
|
|
Url: http://code.google.com/p/pyiso8601/
|
|
Summary: Simple module to parse ISO 8601 dates
|
|
License: MIT
|
|
Group: Development/Languages/Python
|
|
Source: iso8601-%{version}.tar.gz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: python-devel
|
|
BuildRequires: python-setuptools
|
|
# Test requirements:
|
|
BuildRequires: python-pytest >= 2.4.2
|
|
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
|
Requires: python-argparse
|
|
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
%else
|
|
BuildArch: noarch
|
|
%endif
|
|
|
|
%description
|
|
Simple module to parse ISO 8601 dates
|
|
|
|
This module parses the most common forms of ISO 8601 date strings (e.g.
|
|
2007-01-14T20:34:22+00:00) into datetime objects.
|
|
|
|
%prep
|
|
%setup -q -n iso8601-%{version}
|
|
|
|
%build
|
|
python setup.py build
|
|
|
|
%check
|
|
py.test --verbose iso8601
|
|
|
|
%install
|
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc README.rst LICENSE
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|