Sync from SUSE:SLFO:Main python-enrich revision 866c3a1bd5448707ce7fc90098bcf6a8

This commit is contained in:
Adrian Schröter 2024-05-03 20:34:27 +02:00
commit 1121df4169
5 changed files with 121 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
enrich-1.2.7.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

20
python-enrich.changes Normal file
View File

@ -0,0 +1,20 @@
-------------------------------------------------------------------
Wed May 10 02:46:11 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
- Actually run the testsuite.
- Add a missing Requires on python-rich
-------------------------------------------------------------------
Fri May 5 11:56:47 UTC 2023 - Johannes Kastl <kastl@b1-systems.de>
- add sle15_python_module_pythons
-------------------------------------------------------------------
Fri Jan 28 16:31:22 UTC 2022 - Sebastian Wagner <sebix+novell.com@sebix.at>
- add remove_setuptools_scm.patch to get rid of setuptools-scm and fix the version
-------------------------------------------------------------------
Sun Jan 23 11:49:58 UTC 2022 - Sebastian Wagner <sebix+novell.com@sebix.at>
- initial package for version 1.2.7

64
python-enrich.spec Normal file
View File

@ -0,0 +1,64 @@
#
# spec file for package python-enrich
#
# 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/
#
%{?sle15_python_module_pythons}
%{?python_enable_dependency_generator}
Name: python-enrich
Version: 1.2.7
Release: 0
Summary: Extends the python-rich library functionality
License: MIT
URL: https://github.com/pycontribs/enrich
Source: https://files.pythonhosted.org/packages/source/e/enrich/enrich-%{version}.tar.gz
Patch0: remove_setuptools_scm.patch
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest-mock}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module rich}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-rich
BuildArch: noarch
%python_subpackages
%description
Extends the python-rich library functionality
with a set of changes that were not accepted to rich itself.
%prep
%autosetup -p1 -n enrich-%{version}
sed -i 's/__VERSION__/%version/' setup.py
sed -i '/_scm/ d' setup.cfg
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
# gh#pycontribs/enrich#40
%pytest -k 'not test_rich_console_ex'
%files %{python_files}
%{python_sitelib}/enrich
%{python_sitelib}/enrich-%{version}*info
%changelog

View File

@ -0,0 +1,11 @@
--- enrich-1.2.7/setup.py 2022-01-28 17:29:54.476189319 +0100
+++ enrich-1.2.7/setup1.py 2022-01-28 17:29:45.739753919 +0100
@@ -12,6 +12,6 @@
if __name__ == "__main__":
setuptools.setup(
- use_scm_version={"local_scheme": "no-local-version"},
- setup_requires=["setuptools_scm[toml]>=3.5.0"],
+ name='enrich',
+ version='__VERSION__',
)