15
0
forked from pool/python-flynt

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
This commit is contained in:
2022-01-25 16:36:12 +00:00
committed by Git OBS Bridge
commit 4454ad8c38
5 changed files with 100 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

3
flynt-0.76.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7a99c5a550ea9e8c21203f6999ed8ce69cbad7bc8465268469777cf06413193a
size 31839

4
python-flynt.changes Normal file
View File

@@ -0,0 +1,4 @@
-------------------------------------------------------------------
Tue Jan 25 09:50:38 UTC 2022 - Dirk Müller <dmueller@suse.com>
- Initial package (0.76)

69
python-flynt.spec Normal file
View File

@@ -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