113 lines
3.3 KiB
RPMSpec
113 lines
3.3 KiB
RPMSpec
|
#
|
||
|
# spec file for package saltbundlepy-dateutil
|
||
|
#
|
||
|
# Copyright (c) 2023 SUSE LLC
|
||
|
#
|
||
|
# 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 https://bugs.opensuse.org/
|
||
|
#
|
||
|
|
||
|
|
||
|
%{?!saltbundlepy_module:%define saltbundlepy_module() saltbundlepy-%{**}}
|
||
|
%define pythons saltbundlepy
|
||
|
|
||
|
%global flavor @BUILD_FLAVOR@%{nil}
|
||
|
%if "%{flavor}" == "test"
|
||
|
%define psuffix -test
|
||
|
%bcond_without test
|
||
|
ExclusiveArch: do-not-build
|
||
|
%else
|
||
|
%define psuffix %{nil}
|
||
|
%bcond_with test
|
||
|
%endif
|
||
|
|
||
|
Name: saltbundlepy-dateutil%{psuffix}
|
||
|
Version: 2.8.2
|
||
|
Release: 0
|
||
|
Summary: A Python Datetime Library
|
||
|
License: BSD-3-Clause OR Apache-2.0
|
||
|
URL: https://dateutil.readthedocs.org/en/latest/
|
||
|
Source0: https://files.pythonhosted.org/packages/source/p/python-dateutil/python-dateutil-%{version}.tar.gz
|
||
|
BuildRequires: %{saltbundlepy_module setuptools >= 24.3}
|
||
|
BuildRequires: %{saltbundlepy_module setuptools-scm}
|
||
|
BuildRequires: %{saltbundlepy_module six >= 1.5}
|
||
|
BuildRequires: dos2unix
|
||
|
BuildRequires: fdupes
|
||
|
BuildRequires: saltbundlepy-rpm-macros
|
||
|
Requires: saltbundlepy-six >= 1.5
|
||
|
BuildArch: noarch
|
||
|
%if %{with test}
|
||
|
BuildRequires: %{saltbundlepy_module freezegun}
|
||
|
BuildRequires: %{saltbundlepy_module hypothesis}
|
||
|
BuildRequires: %{saltbundlepy_module pytest}
|
||
|
BuildRequires: timezone
|
||
|
%endif
|
||
|
%python_subpackages
|
||
|
|
||
|
%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
|
||
|
(%{_sysconfdir}/localtime, %{_datadir}/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 python-dateutil-%{version}
|
||
|
#cleanup and MSdos style end of line separators
|
||
|
dos2unix LICENSE NEWS PKG-INFO README.rst
|
||
|
|
||
|
%build
|
||
|
%python_build
|
||
|
|
||
|
%install
|
||
|
%if !%{with test}
|
||
|
%python_install
|
||
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||
|
%endif
|
||
|
|
||
|
%if %{with test}
|
||
|
%check
|
||
|
rm setup.cfg
|
||
|
export LANG=en_US.UTF-8
|
||
|
%pytest
|
||
|
%endif
|
||
|
|
||
|
%if !%{with test}
|
||
|
%files %{python_files}
|
||
|
%doc NEWS PKG-INFO README.rst
|
||
|
%license LICENSE
|
||
|
%{python_sitelib}/*
|
||
|
%endif
|
||
|
|
||
|
%changelog
|