Matej Cepl 2023-01-31 18:08:06 +00:00 committed by Git OBS Bridge
commit b6c68de3ad
4 changed files with 92 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

BIN
cloup-2.0.0.post1.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

4
python-cloup.changes Normal file
View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
Mon Jan 30 00:12:13 UTC 2023 - Eyad Issa <eyadlorenzo@gmail.com>
- Version 2.0.0

62
python-cloup.spec Normal file
View File

@ -0,0 +1,62 @@
#
# spec file for package python-cloup
#
# Copyright (c) 2023 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-cloup
Version: 2.0.0.post1
Release: 0
Summary: Python packages that adds features to Click
License: BSD-3-Clause
URL: https://github.com/janLuke/cloup
Source: https://files.pythonhosted.org/packages/source/c/cloup/cloup-%{version}.tar.gz
BuildRequires: python-rpm-macros
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module setuptools_scm}
# SECTION test requirements
BuildRequires: %{python_module click >= 8.0}
BuildRequires: %{python_module pytest}
# /SECTION
BuildRequires: fdupes
Requires: python-click >= 8.0
Suggests: python-typing_extensions
BuildArch: noarch
%python_subpackages
%description
Adds features to Click: option groups, constraints, subcommand sections and help themes.
%prep
%setup -q -n cloup-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest tests
%files %{python_files}
%doc CHANGELOG.rst README.rst
%license LICENSE
%dir %{python_sitelib}/cloup
%{python_sitelib}/cloup
%{python_sitelib}/cloup-%{version}*-info
%changelog