Accepting request 720055 from home:pgajdos

- version update to 2.0.0
  Major differences since 1.5.1
  .............................
  - When no time zone configuration can be find, tzlocal now return UTC.
    This is a major difference from 1.x, where an exception would be raised.
    This change is because Docker images often have no configuration at all,
    and the unix utilities will then default to UTC, so we follow that.
  - If tzlocal on Unix finds a timezone name in a /etc config file, then 
    tzlocal now verifies that the timezone it fouds has the same offset as
    the local computer is configured with. If it doesn't, something is
    configured incorrectly. (Victor Torres, regebro)
  - Get timezone via Termux `getprop` wrapper on Android. It's not officially
    supported because we can't test it, but at least we make an effort.
    (Jean Jordaan)
  Minor differences and bug fixes
  ...............................
  - Skip comment lines when parsing /etc/timezone. (Edward Betts)
  - Don't load timezone from current directory. (Gabriel Corona)
  - Now verifies that the config files actually contain something before
    reading them. (Zackary Welch, regebro)
  - Got rid of a BytesWarning (Mickaël Schoentgen)
  - Now handles if config file paths exists, but are directories.

OBS-URL: https://build.opensuse.org/request/show/720055
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tzlocal?expand=0&rev=21
This commit is contained in:
Tomáš Chvátal 2019-07-31 13:46:05 +00:00 committed by Git OBS Bridge
parent acf530f4fc
commit 3215eaa426
4 changed files with 30 additions and 4 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4fc325121f6881b5872de15ad05e8f534e35171658519872f7c61c0e5bb7f371
size 16728

3
2.0.0.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b7d71186f016732f65ad5f0a3fce6f43682a91a57a212fd57b43293ebd8afb42
size 18223

View File

@ -1,3 +1,29 @@
-------------------------------------------------------------------
Wed Jul 31 12:31:37 UTC 2019 - pgajdos@suse.com
- version update to 2.0.0
Major differences since 1.5.1
.............................
- When no time zone configuration can be find, tzlocal now return UTC.
This is a major difference from 1.x, where an exception would be raised.
This change is because Docker images often have no configuration at all,
and the unix utilities will then default to UTC, so we follow that.
- If tzlocal on Unix finds a timezone name in a /etc config file, then
tzlocal now verifies that the timezone it fouds has the same offset as
the local computer is configured with. If it doesn't, something is
configured incorrectly. (Victor Torres, regebro)
- Get timezone via Termux `getprop` wrapper on Android. It's not officially
supported because we can't test it, but at least we make an effort.
(Jean Jordaan)
Minor differences and bug fixes
...............................
- Skip comment lines when parsing /etc/timezone. (Edward Betts)
- Don't load timezone from current directory. (Gabriel Corona)
- Now verifies that the config files actually contain something before
reading them. (Zackary Welch, regebro)
- Got rid of a BytesWarning (Mickaël Schoentgen)
- Now handles if config file paths exists, but are directories.
-------------------------------------------------------------------
Sun Mar 17 22:58:27 UTC 2019 - Jan Engelhardt <jengelh@inai.de>

View File

@ -19,7 +19,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define modname tzlocal
Name: python-%{modname}
Version: 1.5.1
Version: 2.0.0
Release: 0
Summary: tzinfo object for the local timezone
License: MIT