Sync from SUSE:SLFO:Main python-frozenlist revision 6356942713225f772d4b9ace4d669647

This commit is contained in:
Adrian Schröter 2024-05-03 20:44:21 +02:00
commit 283e61766f
4 changed files with 140 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

BIN
frozenlist-1.3.3.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

54
python-frozenlist.changes Normal file
View File

@ -0,0 +1,54 @@
-------------------------------------------------------------------
Fri Apr 21 12:25:29 UTC 2023 - Dirk Müller <dmueller@suse.com>
- add sle15_python_module_pythons (jsc#PED-68)
-------------------------------------------------------------------
Thu Apr 13 22:41:28 UTC 2023 - Matej Cepl <mcepl@suse.com>
- Make calling of %{sle15modernpython} optional.
-------------------------------------------------------------------
Fri Dec 2 17:45:08 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- Update to 1.3.3
* Fixed CI runs when creating a new release, where new towncrier versions fail
when the current version section is already present.
- Update to 1.3.2
* Misc
Updated the CI runs to better check for test results and to avoid
deprecated syntax. #327
-------------------------------------------------------------------
Wed Sep 28 19:34:19 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- update to 1.3.1
* The published source distribution package became buildable under Python 3.11.
-------------------------------------------------------------------
Sun Jan 23 16:23:05 UTC 2022 - Dirk Müller <dmueller@suse.com>
- update to 1.3.0:
* Do not install C sources with binary distributions.
* Dropped Python 3.6 support
-------------------------------------------------------------------
Sat Dec 11 19:25:37 UTC 2021 - Ben Greiner <code@bnavigator.de>
- Update to 1.2.0
* FrozenList now supports being used as a generic type as per PEP
585, e.g. frozen_int_list: FrozenList[int] (requires Python 3.9
or newer). #172
* Added support for Python 3.10. #227
* Started shipping platform-specific wheels with the musl tag
targeting typical Alpine Linux runtimes. #227
* Started shipping platform-specific arm64 wheels for Apple
Silicon. #227
- Cythonize
- Required by some aio packages.
-------------------------------------------------------------------
Sun Nov 29 12:25:14 AM UTC 2020 - John Vandenberg <jayvdb@gmail.com>
- Initial spec for v1.1.1

60
python-frozenlist.spec Normal file
View File

@ -0,0 +1,60 @@
#
# spec file for package python-frozenlist
#
# 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/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
%{?sle15_python_module_pythons}
Name: python-frozenlist
Version: 1.3.3
Release: 0
Summary: Python list-like structure which implements MutableSequence
License: Apache-2.0
URL: https://github.com/aio-libs/frozenlist
Source: https://files.pythonhosted.org/packages/source/f/frozenlist/frozenlist-%{version}.tar.gz
BuildRequires: %{python_module Cython >= 0.29.24}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
%python_subpackages
%description
Python list-like structure which implements collections.abc.MutableSequence.
%prep
%setup -q -n frozenlist-%{version}
%build
export CFLAGS="%{optflags}"
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitearch}
%check
%pytest_arch
%files %{python_files}
%doc CHANGES.rst README.rst
%license LICENSE
%{python_sitearch}/frozenlist
%{python_sitearch}/frozenlist-%{version}*-info
%changelog