Accepting request 1225805 from devel:languages:python

- update to 0.2.4:
  * Fix invalid regex escape
  * CI improvements

OBS-URL: https://build.opensuse.org/request/show/1225805
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-littleutils?expand=0&rev=3
This commit is contained in:
Ana Guerrero 2024-11-22 22:51:05 +00:00 committed by Git OBS Bridge
commit e6c9b7e550
4 changed files with 20 additions and 9 deletions

BIN
littleutils-0.2.2.tar.gz (Stored with Git LFS)

Binary file not shown.

3
littleutils-0.2.4.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c7835b01020ced42e291118b7d78fb16bc2d9a1b4f3f42f3cb3787bb4da53d19
size 9526

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Fri Nov 22 11:47:44 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 0.2.4:
* Fix invalid regex escape
* CI improvements
-------------------------------------------------------------------
Fri Apr 21 12:28:00 UTC 2023 - Dirk Müller <dmueller@suse.com>

View File

@ -1,7 +1,7 @@
#
# spec file for package python-littleutils
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -16,16 +16,18 @@
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%{?sle15_python_module_pythons}
Name: python-littleutils
Version: 0.2.2
Version: 0.2.4
Release: 0
Summary: Small personal collection of python utility functions
License: MIT
URL: https://github.com/alexmojaki/littleutils
Source: https://files.pythonhosted.org/packages/source/l/littleutils/littleutils-%{version}.tar.gz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools_scm}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
@ -38,16 +40,18 @@ Small personal collection of python utility functions
%autosetup -p1 -n littleutils-%{version}
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%python_expand $python -mlittleutils.__init__ -v
%files %{python_files}
%{python_sitelib}/littleutils*
%license LICENSE
%{python_sitelib}/littleutils
%{python_sitelib}/littleutils-%{version}.dist-info
%changelog