Accepting request 957108 from devel:languages:python
initialized devel package after accepting 957108 OBS-URL: https://build.opensuse.org/request/show/957108 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pytz-deprecation-shim?expand=0&rev=4
This commit is contained in:
commit
9b454697b6
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal 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
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
.osc
|
9
python-pytz-deprecation-shim.changes
Normal file
9
python-pytz-deprecation-shim.changes
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
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)
|
77
python-pytz-deprecation-shim.spec
Normal file
77
python-pytz-deprecation-shim.spec
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
#
|
||||||
|
# spec file
|
||||||
|
#
|
||||||
|
# Copyright (c) 2022 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/
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
|
%define modname pytz-deprecation-shim
|
||||||
|
Name: python-%{modname}
|
||||||
|
Version: 0.1.0.post0
|
||||||
|
Release: 0
|
||||||
|
Summary: Shims to make deprecation of pytz easier
|
||||||
|
License: Apache-2.0
|
||||||
|
Group: Development/Libraries/Python
|
||||||
|
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 pep517 >= 0.9.1}
|
||||||
|
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
|
||||||
|
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 pytz’s interface, to make it easier for libraries to deprecate
|
||||||
|
pytz.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n pytz_deprecation_shim-%{version}
|
||||||
|
|
||||||
|
%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
BIN
pytz_deprecation_shim-0.1.0.post0.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user