From 9b454697b662713fa45479a2a608cb8b9ee13d536d8fefdec19e2284e825f772 Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Wed, 23 Feb 2022 18:14:57 +0000 Subject: [PATCH] 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 --- .gitattributes | 23 +++++++ .gitignore | 1 + python-pytz-deprecation-shim.changes | 9 +++ python-pytz-deprecation-shim.spec | 77 ++++++++++++++++++++++++ pytz_deprecation_shim-0.1.0.post0.tar.gz | 3 + 5 files changed, 113 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 python-pytz-deprecation-shim.changes create mode 100644 python-pytz-deprecation-shim.spec create mode 100644 pytz_deprecation_shim-0.1.0.post0.tar.gz diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/python-pytz-deprecation-shim.changes b/python-pytz-deprecation-shim.changes new file mode 100644 index 0000000..72d60b6 --- /dev/null +++ b/python-pytz-deprecation-shim.changes @@ -0,0 +1,9 @@ +------------------------------------------------------------------- +Wed Feb 23 14:22:19 UTC 2022 - Matej Cepl + +- Clean up the SPEC file to actually work. + +------------------------------------------------------------------- +Sat Dec 11 22:45:49 UTC 2021 - Dirk Müller + +- Initial package (4.1) diff --git a/python-pytz-deprecation-shim.spec b/python-pytz-deprecation-shim.spec new file mode 100644 index 0000000..f58afd9 --- /dev/null +++ b/python-pytz-deprecation-shim.spec @@ -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 diff --git a/pytz_deprecation_shim-0.1.0.post0.tar.gz b/pytz_deprecation_shim-0.1.0.post0.tar.gz new file mode 100644 index 0000000..9aa500a --- /dev/null +++ b/pytz_deprecation_shim-0.1.0.post0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af097bae1b616dde5c5744441e2ddc69e74dfdcb0c263129610d85b87445a59d +size 60190