15
0
2025-06-03 12:25:57 +00:00
committed by Git OBS Bridge
commit 33cdcdd2f7
5 changed files with 161 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
progressbar-2.5.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5d81cb529da2e223b53962afd6c8ca0f05c6670e40309a7219eacc36af9b6c63
size 10046

View File

@@ -0,0 +1,79 @@
-------------------------------------------------------------------
Tue Jun 3 12:25:47 UTC 2025 - Markéta Machová <mmachova@suse.com>
- Convert to pip-based build
-------------------------------------------------------------------
Sun Jul 2 11:18:04 UTC 2023 - ecsos <ecsos@opensuse.org>
- Add %{?sle15_python_module_pythons}
-------------------------------------------------------------------
Tue Dec 4 12:51:43 UTC 2018 - Matej Cepl <mcepl@suse.com>
- Remove superfluous devel dependency for noarch package
-------------------------------------------------------------------
Thu Oct 11 15:18:59 UTC 2018 - Todd R <toddrme2178@gmail.com>
- Update to version 2.5
* fix issue with recursive import and mixed tabs with spaces
* Add support for python3.6
* Don't use `sys.stderr` as a default value
- Drop progressbar-python3-relative-imports.patch
It is included upstream
-------------------------------------------------------------------
Thu Aug 31 17:13:34 UTC 2017 - toddrme2178@gmail.com
- Use progressbar-python3-relative-imports.patch on python2 and
python3 since it is compatible with both.
- Make progressbar-python3-relative-imports.patch simpler.
-------------------------------------------------------------------
Thu Aug 24 13:49:59 UTC 2017 - jmatejek@suse.com
- singlespec auto-conversion
-------------------------------------------------------------------
Thu Oct 24 11:10:20 UTC 2013 - speilicke@suse.com
- Require python-setuptools instead of distribute (upstreams merged)
-------------------------------------------------------------------
Mon Nov 5 22:20:32 UTC 2012 - saschpe@suse.de
- Update to 2.3+hg20121105.3c94a3a1ebe1
+ See mercurial changes
-------------------------------------------------------------------
Wed May 23 02:44:33 UTC 2012 - highwaystar.ru@gmail.com
- python3 package added
- slight spec improvement
-------------------------------------------------------------------
Tue Jan 31 14:53:57 UTC 2012 - cfarrell@suse.com
- license update: LGPL-2.1+ or BSD-3-Clause
Look at License.txt
-------------------------------------------------------------------
Tue Jan 31 13:43:19 UTC 2012 - saschpe@suse.de
- Add a %changelog line
-------------------------------------------------------------------
Tue Jan 31 13:00:34 UTC 2012 - saschpe@suse.de
- Spec file cleanup:
* Simplified macro mania
* Removed unused build requirements
* Set license to SDPX style (LGPL-3.0+)
-------------------------------------------------------------------
Thu Jun 16 20:08:05 CET 2011 - pascal.bleser@opensuse.org
- initial version (2.3)

55
python-progressbar.spec Normal file
View File

@@ -0,0 +1,55 @@
#
# spec file for package python-progressbar
#
# Copyright (c) 2025 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/
#
%{?sle15_python_module_pythons}
Name: python-progressbar
Version: 2.5
Release: 0
Summary: Text Progressbar Library for Python
License: BSD-3-Clause OR LGPL-2.1-or-later
Group: Development/Libraries/Python
URL: https://github.com/niltonvolpato/python-progressbar
Source: https://files.pythonhosted.org/packages/source/p/progressbar/progressbar-%{version}.tar.gz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: python-rpm-macros
BuildArch: noarch
%python_subpackages
%description
This library provides a text mode progressbar. This is tipically used to
display the progress of a long running operation, providing a visual clue that
processing is underway.
%prep
%setup -q -n progressbar-%{version}
%build
%pyproject_wheel
%install
%pyproject_install
%files %{python_files}
%doc README.txt examples.py
%license LICENSE.txt
%{python_sitelib}/progressbar/
%{python_sitelib}/progressbar-%{version}*-info
%changelog