commit 4454ad8c385f7afb8391fe86207c3da034baf1484521ed4102bac32c37325748 Author: Dominique Leuenberger Date: Tue Jan 25 16:36:12 2022 +0000 Accepting request 948983 from devel:languages:python initialized devel package after accepting 948983 OBS-URL: https://build.opensuse.org/request/show/948983 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-flynt?expand=0&rev=3 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/flynt-0.76.tar.gz b/flynt-0.76.tar.gz new file mode 100644 index 0000000..c833254 --- /dev/null +++ b/flynt-0.76.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a99c5a550ea9e8c21203f6999ed8ce69cbad7bc8465268469777cf06413193a +size 31839 diff --git a/python-flynt.changes b/python-flynt.changes new file mode 100644 index 0000000..a7ddbc9 --- /dev/null +++ b/python-flynt.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Tue Jan 25 09:50:38 UTC 2022 - Dirk Müller + +- Initial package (0.76) diff --git a/python-flynt.spec b/python-flynt.spec new file mode 100644 index 0000000..658c5c9 --- /dev/null +++ b/python-flynt.spec @@ -0,0 +1,69 @@ +# +# spec file for package python-flynt +# +# 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/ +# + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +Name: python-flynt +Version: 0.76 +Release: 0 +Summary: CLI tool to convert a python project's %-formatted strings to f-strings +License: MIT +URL: https://github.com/ikamensh/flynt +Source: https://files.pythonhosted.org/packages/source/f/flynt/flynt-%{version}.tar.gz +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +Requires: python-astor +Requires: python-tomli >= 1.1.0 +BuildArch: noarch +# SECTION test requirements +BuildRequires: %{python_module astor} +BuildRequires: %{python_module pytest} +BuildRequires: %{python_module tomli >= 1.1.0} +# /SECTION +%python_subpackages + +%description +CLI tool to convert a python project's %-formatted strings to f-strings. + +%prep +%setup -q -n flynt-%{version} + +%build +%python_build + +%install +%python_install +%python_clone -a %{buildroot}%{_bindir}/flynt +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +%pytest + +%post +%python_install_alternative flynt + +%postun +%python_uninstall_alternative flynt + +%files %{python_files} +%doc README.md +%license LICENSE +%python_alternative %{_bindir}/flynt +%{python_sitelib}/* + +%changelog