Accepting request 949856 from home:sebix

Hopefully this now has the correct source

OBS-URL: https://build.opensuse.org/request/show/949856
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-enrich?expand=0&rev=1
This commit is contained in:
Matej Cepl 2022-01-29 13:20:31 +00:00 committed by Git OBS Bridge
commit 5c29300345
6 changed files with 103 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

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

BIN
enrich-1.2.7.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

9
python-enrich.changes Normal file
View File

@ -0,0 +1,9 @@
-------------------------------------------------------------------
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

56
python-enrich.spec Normal file
View File

@ -0,0 +1,56 @@
#
# spec file for package python-enrich
#
# 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/
#
%define skip_python2 1
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%{?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-rpm-macros
BuildRequires: %{python_module pip}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildArch: noarch
%python_subpackages
%description
Extends the python-rich library functionality
with a set of changes that were not accepted to rich itself.
%prep
%setup -q -n enrich-%{version}
%patch0 -p1
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}
%files %{python_files}
%{python_sitelib}/enrich*
%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__',
)