2014-11-14 10:27:14 +00:00
|
|
|
|
#
|
2015-06-14 18:53:01 +00:00
|
|
|
|
# spec file for package python-tzlocal
|
2014-11-14 10:27:14 +00:00
|
|
|
|
#
|
2019-03-04 11:15:43 +00:00
|
|
|
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
2014-11-14 10:27:14 +00:00
|
|
|
|
#
|
|
|
|
|
# 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.
|
|
|
|
|
|
2018-12-04 14:11:16 +00:00
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2014-11-14 10:27:14 +00:00
|
|
|
|
#
|
|
|
|
|
|
2015-06-14 18:53:01 +00:00
|
|
|
|
|
2017-07-11 16:23:04 +00:00
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
2015-06-14 18:53:01 +00:00
|
|
|
|
%define modname tzlocal
|
|
|
|
|
Name: python-%{modname}
|
2019-03-04 11:15:43 +00:00
|
|
|
|
Version: 1.5.1
|
2014-11-14 10:27:14 +00:00
|
|
|
|
Release: 0
|
2015-06-14 18:53:01 +00:00
|
|
|
|
Summary: Provides tzinfo object for the local timezone
|
2017-08-29 12:05:37 +00:00
|
|
|
|
License: MIT
|
2015-06-14 18:53:01 +00:00
|
|
|
|
Group: Development/Libraries/Python
|
2019-03-04 11:15:43 +00:00
|
|
|
|
URL: https://github.com/regebro/tzlocal
|
|
|
|
|
Source: https://github.com/regebro/tzlocal/archive/%{version}.tar.gz
|
|
|
|
|
BuildRequires: %{python_module mock}
|
2017-07-11 16:23:04 +00:00
|
|
|
|
BuildRequires: %{python_module pytz}
|
|
|
|
|
BuildRequires: %{python_module setuptools}
|
2014-11-14 10:27:14 +00:00
|
|
|
|
BuildRequires: fdupes
|
2017-07-11 16:23:04 +00:00
|
|
|
|
BuildRequires: python-rpm-macros
|
2014-11-14 10:27:14 +00:00
|
|
|
|
Requires: python-pytz
|
2015-06-14 18:53:01 +00:00
|
|
|
|
BuildArch: noarch
|
2017-07-11 16:23:04 +00:00
|
|
|
|
%python_subpackages
|
2014-11-14 10:27:14 +00:00
|
|
|
|
|
|
|
|
|
%description
|
2015-06-14 18:53:01 +00:00
|
|
|
|
This Python module returns a tzinfo object with the local timezone information
|
|
|
|
|
under Unix and Win-32. It requires pytz, and returns pytz tzinfo objects.
|
|
|
|
|
|
|
|
|
|
This module attempts to fix a glaring hole in pytz, that there is no way to get
|
|
|
|
|
the local timezone information, unless you know the zoneinfo name, and under
|
|
|
|
|
several Linux distros that’s hard or impossible to figure out.
|
2014-11-14 10:27:14 +00:00
|
|
|
|
|
2015-06-14 18:53:01 +00:00
|
|
|
|
Also, with Windows different timezone system using pytz isn’t of much use unless
|
|
|
|
|
you separately configure the zoneinfo timezone name.
|
2014-11-14 10:27:14 +00:00
|
|
|
|
|
2015-06-14 18:53:01 +00:00
|
|
|
|
With tzlocal you only need to call get_localzone() and you will get a tzinfo
|
|
|
|
|
object with the local time zone info. On some Unices you will still not get to
|
|
|
|
|
know what the timezone name is, but you don’t need that when you have the tzinfo
|
|
|
|
|
file. However, if the timezone name is readily available it will be used.
|
2014-11-14 10:27:14 +00:00
|
|
|
|
|
|
|
|
|
%prep
|
2015-06-14 18:53:01 +00:00
|
|
|
|
%setup -q -n %{modname}-%{version}
|
2014-11-14 10:27:14 +00:00
|
|
|
|
|
|
|
|
|
%build
|
2017-07-11 16:23:04 +00:00
|
|
|
|
%python_build
|
2014-11-14 10:27:14 +00:00
|
|
|
|
|
|
|
|
|
%install
|
2017-07-11 16:23:04 +00:00
|
|
|
|
%python_install
|
2018-09-12 14:38:08 +00:00
|
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
2014-11-14 10:27:14 +00:00
|
|
|
|
|
|
|
|
|
%check
|
2018-09-12 14:38:08 +00:00
|
|
|
|
%python_exec setup.py test
|
2014-11-14 10:27:14 +00:00
|
|
|
|
|
2017-07-11 16:23:04 +00:00
|
|
|
|
%files %{python_files}
|
2018-09-12 14:38:08 +00:00
|
|
|
|
%license LICENSE.txt
|
2019-03-04 11:15:43 +00:00
|
|
|
|
%doc README.rst CHANGES.txt
|
2015-06-14 18:53:01 +00:00
|
|
|
|
%{python_sitelib}/%{modname}
|
|
|
|
|
%{python_sitelib}/%{modname}-%{version}-py%{py_ver}.egg-info
|
2014-11-14 10:27:14 +00:00
|
|
|
|
|
|
|
|
|
%changelog
|