Sync from SUSE:SLFO:Main python-pytz-deprecation-shim revision fadbf735f3f06c9cbb277c6231e731e7

This commit is contained in:
Adrian Schröter 2024-05-03 22:39:19 +02:00
commit 24f27ec634
4 changed files with 145 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

View File

@ -0,0 +1,37 @@
-------------------------------------------------------------------
Fri Apr 21 12:32:26 UTC 2023 - Dirk Müller <dmueller@suse.com>
- add sle15_python_module_pythons (jsc#PED-68)
-------------------------------------------------------------------
Thu Apr 13 22:44:18 UTC 2023 - Matej Cepl <mcepl@suse.com>
- Make calling of %{sle15modernpython} optional.
-------------------------------------------------------------------
Mon Apr 3 05:17:34 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
- Remove unneeded BuildRequires on pep517.
-------------------------------------------------------------------
Tue Jun 21 21:35:54 UTC 2022 - Ben Greiner <code@bnavigator.de>
- Remove tzdata from the dist metadata, as we neither have nor need
it.
- Follow the rest of the metadata, assuming Py >= 3.6 in order to
avoid import errors on consuming libs.
-------------------------------------------------------------------
Sun Jun 19 07:49:07 UTC 2022 - Dirk Müller <dmueller@suse.com>
- skip python2 build
-------------------------------------------------------------------
Wed Feb 23 14:22:19 UTC 2022 - Matej Cepl <mcepl@suse.com>
- Clean up the SPEC file to actually work.
-------------------------------------------------------------------
Sat Dec 11 22:45:49 UTC 2021 - Dirk Müller <dmueller@suse.com>
- Initial package (4.1)

View File

@ -0,0 +1,82 @@
#
# spec file
#
# 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/
#
# Upstream also supports shimming python2.7, but we assume Python >= 3.6 here (if 15.3 were resolvable for the python3 flavor)
%global skip_python2 1
%define modname pytz-deprecation-shim
%{?sle15_python_module_pythons}
Name: python-%{modname}
Version: 0.1.0.post0
Release: 0
Summary: Shims to make deprecation of pytz easier
License: Apache-2.0
URL: https://github.com/pganssle/pytz-deprecation-shim
Source: https://files.pythonhosted.org/packages/source/p/pytz_deprecation_shim/pytz_deprecation_shim-%{version}.tar.gz
BuildRequires: %{python_module backports.zoneinfo if %python-base < 3.9}
BuildRequires: %{python_module hypothesis}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module pytz}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
%if 0%{?python_version_nodots} < 39
Requires: python-backports.zoneinfo
%endif
BuildArch: noarch
%python_subpackages
%description
pytz has served the Python community well for many years, but it is no longer
the best option for providing time zones. pytz has a non-standard interface
that is very easy to misuse; this interface was necessary when pytz was
created, because datetime had no way to represent ambiguous datetimes, but this
was solved in in Python 3.6, which added a fold attribute to datetimes in PEP
495. With the addition of the zoneinfo module in Python 3.9 (PEP 615), there
has never been a better time to migrate away from pytz.
However, since pytz time zones are used very differently from a standard
tzinfo, and many libraries have built pytz zones into their standard time zone
interface (and thus may have users relying on the existence of the localize and
normalize methods); this library provides shim classes that are compatible with
both PEP 495 and pytzs interface, to make it easier for libraries to deprecate
pytz.
%prep
%setup -q -n pytz_deprecation_shim-%{version}
# assume that we have tzdata from the system and never need the PyPI package
sed -i '/tzdata/ d' setup.cfg
%build
%pyproject_wheel
%install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%files %{python_files}
%license LICENSE
%doc README.rst CHANGELOG.rst
%{python_sitelib}/pytz_deprecation_shim
%{python_sitelib}/pytz_deprecation_shim-%{version}*-info
%changelog

BIN
pytz_deprecation_shim-0.1.0.post0.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.