Sync from SUSE:SLFO:Main python-nocaselist revision dedadb1293f5d87b0f7b89b9d9014dde

This commit is contained in:
Adrian Schröter 2024-05-03 21:38:52 +02:00
commit 21cc19350a
4 changed files with 106 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
nocaselist-1.0.6.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

22
python-nocaselist.changes Normal file
View File

@ -0,0 +1,22 @@
-------------------------------------------------------------------
Sat Oct 1 13:01:45 UTC 2022 - Dirk Müller <dmueller@suse.com>
- update to 1.0.6:
* Mitigated coveralls issue with HTTP status 422
* Add python 3.9 support
* Test suite cleanups, Pylint 2.10 fixes
* Python 3.10 support
-------------------------------------------------------------------
Mon Feb 1 18:14:57 UTC 2021 - Dirk Müller <dmueller@suse.com>
- update to 1.0.4:
* Migrated from Travis and Appveyor to GitHub Actions. This required changes
in several areas including dependent packages used for testing and
coverage. This did not cause any changes on dependent packages used for the
installation of the package.
-------------------------------------------------------------------
Tue Oct 13 14:42:53 UTC 2020 - Benjamin Greiner <code@bnavigator.de>
- initial specfile 1.0.3

58
python-nocaselist.spec Normal file
View File

@ -0,0 +1,58 @@
#
# spec file for package python-nocaselist
#
# 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-%{**}}
Name: python-nocaselist
Version: 1.0.6
Release: 0
Summary: A case-insensitive list for Python
License: Apache-2.0
Group: Development/Languages/Python
URL: https://github.com/pywbem/nocaselist
Source: https://files.pythonhosted.org/packages/source/n/nocaselist/nocaselist-%{version}.tar.gz
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
%python_subpackages
%description
Class `NocaseList`_ is a case-insensitive list that preserves the lexical case
of its items.
%prep
%setup -q -n nocaselist-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%files %{python_files}
%doc README.rst
%license LICENSE
%{python_sitelib}/nocaselist
%{python_sitelib}/nocaselist-%{version}*info
%changelog