commit f0caf2995b9ff3754f80ab36a34ac4bb4ba99687c8f15fba84732c98aa312084 Author: Matej Cepl Date: Mon Oct 10 08:18:14 2022 +0000 Accepting request 1009193 from home:bnavigator:branches:devel:languages:python spec-cleaner broke it, fix OBS-URL: https://build.opensuse.org/request/show/1009193 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-flit-scm?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/flit_scm-1.7.0.tar.gz b/flit_scm-1.7.0.tar.gz new file mode 100644 index 0000000..f958625 --- /dev/null +++ b/flit_scm-1.7.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:961bd6fb24f31bba75333c234145fff88e6de0a90fc0f7e5e7c79deca69f6bb2 +size 2405 diff --git a/python-flit-scm.changes b/python-flit-scm.changes new file mode 100644 index 0000000..5dd1251 --- /dev/null +++ b/python-flit-scm.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Sun Oct 9 20:04:15 UTC 2022 - Ben Greiner + +- Initial specfile for v1.7.0 +- Required by python-exceptiongroup diff --git a/python-flit-scm.spec b/python-flit-scm.spec new file mode 100644 index 0000000..7ddc077 --- /dev/null +++ b/python-flit-scm.spec @@ -0,0 +1,64 @@ +# +# spec file for package python-flit-scm +# +# 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/ +# + + +Name: python-flit-scm +Version: 1.7.0 +Release: 0 +Summary: PEP 518 build backend using setuptools_scm and flit +License: MIT +URL: https://gitlab.com/WillDaSilva/flit_scm +Source: https://files.pythonhosted.org/packages/source/f/flit_scm/flit_scm-%{version}.tar.gz +BuildRequires: %{python_module flit-core >= 3.5} +BuildRequires: %{python_module pip} +BuildRequires: %{python_module setuptools_scm >= 6.4} +BuildRequires: %{python_module tomli if %python-version < 3.11} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-flit-core >= 3.5 +Requires: python-setuptools_scm >= 6.4 +Provides: python-flit-scm = %{version}-%{release} +BuildArch: noarch +%if 0%{python_version_nodots} < 311 +Requires: python-tomli +%endif +%python_subpackages + +%description +A PEP 518 build backend that uses setuptools_scm to generate a version file +from your version control system, then flit to build the package. + +%prep +%setup -q -n flit_scm-%{version} + +%build +%pyproject_wheel + +%install +%pyproject_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +#%%check +# there are no tests + +%files %{python_files} +%doc README.md +%license LICENSE +%{python_sitelib}/flit_scm +%{python_sitelib}/flit_scm-%{version}*-info + +%changelog