commit 5c293003452daa18f4cedecfc11231fe77c59f172f21a55f9dfd55aca39162b8 Author: Matej Cepl Date: Sat Jan 29 13:20:31 2022 +0000 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 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/enrich-1.2.7.tar.gz b/enrich-1.2.7.tar.gz new file mode 100644 index 0000000..088afcb --- /dev/null +++ b/enrich-1.2.7.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a2ab0d2931dff8947012602d1234d2a3ee002d9a355b5d70be6bf5466008893 +size 16918 diff --git a/python-enrich.changes b/python-enrich.changes new file mode 100644 index 0000000..0757e53 --- /dev/null +++ b/python-enrich.changes @@ -0,0 +1,9 @@ +------------------------------------------------------------------- +Fri Jan 28 16:31:22 UTC 2022 - Sebastian Wagner + +- 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 + +- initial package for version 1.2.7 diff --git a/python-enrich.spec b/python-enrich.spec new file mode 100644 index 0000000..5d83682 --- /dev/null +++ b/python-enrich.spec @@ -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 diff --git a/remove_setuptools_scm.patch b/remove_setuptools_scm.patch new file mode 100644 index 0000000..00f3691 --- /dev/null +++ b/remove_setuptools_scm.patch @@ -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__', + )