Compare commits
9 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bb4d7e8077 | ||
|
|
47d1dfb924 | ||
|
|
11086bec8a | ||
|
|
b9cfe2cc78 | ||
|
|
0574505f81 | ||
|
|
70c30f0ba5 | ||
|
|
9dde5d8b5f | ||
|
|
ffb3785f1f | ||
|
|
853f4fd193 |
3 changed files with 55 additions and 59 deletions
1
README.md
Normal file
1
README.md
Normal file
|
|
@ -0,0 +1 @@
|
|||
See also automatic push/pr [Copr builds](https://copr.fedorainfracloud.org/coprs/praiskup/enterprise-ci-python-progress/).
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
# Prepare main branch, review the list of branches below and then execute this
|
||||
# script.
|
||||
|
||||
branches='main epel7 epel8 epel9 f35 f36'
|
||||
branches='main epel8 epel9 epel10 f39 f40 f41'
|
||||
|
||||
exit_handler ()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,103 +1,98 @@
|
|||
%if 0%{?fedora}
|
||||
%bcond_without python3
|
||||
%if 0%{?fedora} > 29
|
||||
%bcond_with python2
|
||||
%else
|
||||
%bcond_without python2
|
||||
%endif
|
||||
%else
|
||||
%if 0%{?rhel} > 7
|
||||
%bcond_with python2
|
||||
%bcond_without python3
|
||||
%else
|
||||
%bcond_without python2
|
||||
%bcond_with python3
|
||||
%endif
|
||||
%endif
|
||||
|
||||
# Created by pyp2rpm-0.5.2
|
||||
%global pypi_name progress
|
||||
|
||||
Name: python-%{pypi_name}
|
||||
Version: 1.6
|
||||
Release: 13%{?dist}
|
||||
Release: 19%{?dist}
|
||||
Summary: Easy to use progress bars
|
||||
|
||||
License: ISC
|
||||
URL: http://github.com/verigak/progress/
|
||||
Source0: %pypi_source
|
||||
Source0: %{pypi_source %{pypi_name}}
|
||||
BuildArch: noarch
|
||||
|
||||
%if %{with python2}
|
||||
BuildRequires: python2-devel
|
||||
BuildRequires: python2-setuptools
|
||||
%endif
|
||||
|
||||
%if %{with python3}
|
||||
BuildRequires: python3-devel
|
||||
%if %{defined el8}
|
||||
BuildRequires: python3-setuptools
|
||||
%endif
|
||||
|
||||
Patch1: 0001-fixup-moving-average-window.patch
|
||||
|
||||
%global _description\
|
||||
Collection of easy to use progress bars and spinners.\
|
||||
%global _description %{expand:
|
||||
Collection of easy to use progress bars and spinners.}
|
||||
|
||||
|
||||
%description %_description
|
||||
|
||||
|
||||
%if 0%{with python2}
|
||||
%package -n python2-%{pypi_name}
|
||||
Summary: %summary
|
||||
%{?python_provide:%python_provide python2-%{pypi_name}}
|
||||
|
||||
%description -n python2-%{pypi_name} %_description
|
||||
%endif
|
||||
|
||||
|
||||
%if 0%{with python3}
|
||||
%package -n python3-%{pypi_name}
|
||||
Summary: Easy to use progress bars
|
||||
|
||||
%description -n python3-%{pypi_name}
|
||||
Collection of easy to use progress bars and spinners.
|
||||
%endif
|
||||
%description -n python3-%{pypi_name} %_description
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n %{pypi_name}-%{version}
|
||||
|
||||
# Remove bundled egg-info
|
||||
rm -rf %{pypi_name}.egg-info
|
||||
|
||||
%if %{undefined el8}
|
||||
%generate_buildrequires
|
||||
%pyproject_buildrequires
|
||||
%endif
|
||||
|
||||
|
||||
%build
|
||||
%{?with_python2: %py2_build}
|
||||
%{?with_python3: %py3_build}
|
||||
%if %{defined el8}
|
||||
%py3_build
|
||||
%else
|
||||
%pyproject_wheel
|
||||
%endif
|
||||
|
||||
|
||||
%install
|
||||
%{?with_python2: %py2_install}
|
||||
%{?with_python3: %py3_install}
|
||||
|
||||
|
||||
%if 0%{with python2}
|
||||
%files -n python2-%{pypi_name}
|
||||
%doc README.rst LICENSE
|
||||
%{python2_sitelib}/%{pypi_name}
|
||||
%{python2_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
|
||||
%if %{defined el8}
|
||||
%py3_install
|
||||
%else
|
||||
%pyproject_install
|
||||
%pyproject_save_files -l %{pypi_name}
|
||||
%endif
|
||||
|
||||
%if 0%{with python3}
|
||||
%files -n python3-%{pypi_name}
|
||||
%doc README.rst LICENSE
|
||||
|
||||
%check
|
||||
%if %{defined el8}
|
||||
%py3_check_import %{pypi_name}
|
||||
%else
|
||||
%pyproject_check_import
|
||||
%endif
|
||||
|
||||
|
||||
%files -n python3-%{pypi_name} %{!?el8:-f %{pyproject_files}}
|
||||
%doc README.rst
|
||||
%if %{defined el8}
|
||||
%license LICENSE
|
||||
%{python3_sitelib}/%{pypi_name}
|
||||
%{python3_sitelib}/%{pypi_name}-%{version}-py%{python3_version}.egg-info
|
||||
%endif
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Sep 19 2025 Python Maint <python-maint@redhat.com> - 1.6-19
|
||||
- Rebuilt for Python 3.14.0rc3 bytecode
|
||||
|
||||
* Fri Aug 15 2025 Python Maint <python-maint@redhat.com> - 1.6-18
|
||||
- Rebuilt for Python 3.14.0rc2 bytecode
|
||||
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.6-17
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Mon Jun 02 2025 Python Maint <python-maint@redhat.com> - 1.6-16
|
||||
- Rebuilt for Python 3.14
|
||||
|
||||
* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.6-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Tue Sep 24 2024 Carl George <carlwgeorge@fedoraproject.org> - 1.6-14
|
||||
- Convert to pyproject macros
|
||||
|
||||
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.6-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
|
|
@ -119,7 +114,7 @@ rm -rf %{pypi_name}.egg-info
|
|||
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.6-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Fri Jul 15 2022 Pavel Raiskup <praiskup@redhat.com> - 1.6-6
|
||||
* Fri Jul 22 2022 Pavel Raiskup <praiskup@redhat.com> - 1.6-6
|
||||
- use time.monotonic(), bar.avg is infinity for zero speed
|
||||
|
||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.6-5
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue