|
|
|
@ -0,0 +1,371 @@
|
|
|
|
|
## START: Set by rpmautospec
|
|
|
|
|
## (rpmautospec version 0.6.5)
|
|
|
|
|
## RPMAUTOSPEC: autorelease, autochangelog
|
|
|
|
|
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
|
|
|
|
|
release_number = 1;
|
|
|
|
|
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
|
|
|
|
|
print(release_number + base_release_number - 1);
|
|
|
|
|
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
|
|
|
|
|
## END: Set by rpmautospec
|
|
|
|
|
|
|
|
|
|
%bcond_without check
|
|
|
|
|
|
|
|
|
|
Name: pre-commit
|
|
|
|
|
Version: 3.8.0
|
|
|
|
|
Release: %autorelease
|
|
|
|
|
Summary: Framework for managing and maintaining multi-language pre-commit hooks
|
|
|
|
|
|
|
|
|
|
# SPDX
|
|
|
|
|
License: MIT
|
|
|
|
|
URL: https://pre-commit.com
|
|
|
|
|
Source0: https://github.com/%{name}/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz
|
|
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
BuildRequires: git-core
|
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
|
|
|
|
|
|
%if %{with check}
|
|
|
|
|
# All of the tests for the following require network access, so we can avoid
|
|
|
|
|
# pulling in these dependencies for now.
|
|
|
|
|
#
|
|
|
|
|
# BuildRequires: R-core
|
|
|
|
|
# BuildRequires: cabal-install
|
|
|
|
|
# BuildRequires: conda
|
|
|
|
|
# BuildRequires: dotnet-host
|
|
|
|
|
# BuildRequires: dotnet-hostfxr-7.0
|
|
|
|
|
# BuildRequires: dotnet-sdk-7.0
|
|
|
|
|
# BuildRequires: ghc-compiler
|
|
|
|
|
# BuildRequires: golang-bin
|
|
|
|
|
|
|
|
|
|
# These BR’s would enable a few extra tests, but are inconveniently
|
|
|
|
|
# ExclusiveArch. If we wanted to conditionalize BR’s based on build
|
|
|
|
|
# architecture, we would have to make *this* package arched.
|
|
|
|
|
#
|
|
|
|
|
# BuildRequires: swift-lang
|
|
|
|
|
|
|
|
|
|
BuildRequires: cargo
|
|
|
|
|
BuildRequires: lua-devel
|
|
|
|
|
BuildRequires: luarocks
|
|
|
|
|
BuildRequires: nodejs
|
|
|
|
|
BuildRequires: npm
|
|
|
|
|
BuildRequires: perl-CPAN
|
|
|
|
|
BuildRequires: ruby
|
|
|
|
|
BuildRequires: rubygems
|
|
|
|
|
|
|
|
|
|
# Manually added to speed up the %%check section
|
|
|
|
|
BuildRequires: python3dist(pytest-xdist)
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
A framework for managing and maintaining multi-language pre-commit hooks.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%autosetup -p1 -S git
|
|
|
|
|
# Do not generate BR’s for coverage, linters, etc.:
|
|
|
|
|
sed -r '/^(covdefaults|coverage)\b/d' requirements-dev.txt |
|
|
|
|
|
tee requirements-dev-filtered.txt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%generate_buildrequires
|
|
|
|
|
%pyproject_buildrequires -r %{?with_check:requirements-dev-filtered.txt}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%pyproject_wheel
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
%pyproject_install
|
|
|
|
|
%pyproject_save_files -l pre_commit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%if %{with check}
|
|
|
|
|
%check
|
|
|
|
|
# For general discusson on test failures building distribution packages, see:
|
|
|
|
|
# https://github.com/pre-commit/pre-commit/issues/1183,
|
|
|
|
|
# https://github.com/pre-commit/pre-commit/issues/1202
|
|
|
|
|
#
|
|
|
|
|
# Require network access:
|
|
|
|
|
# See https://github.com/pre-commit/pre-commit/issues/1202
|
|
|
|
|
k="${k-}${k+ and }not test_additional_dependencies_roll_forward"
|
|
|
|
|
k="${k-}${k+ and }not test_additional_golang_dependencies_installed"
|
|
|
|
|
k="${k-}${k+ and }not test_additional_node_dependencies_installed"
|
|
|
|
|
k="${k-}${k+ and }not test_additional_ruby_dependencies_installed"
|
|
|
|
|
k="${k-}${k+ and }not test_additional_rust_cli_dependencies_installed"
|
|
|
|
|
k="${k-}${k+ and }not test_additional_rust_lib_dependencies_installed"
|
|
|
|
|
k="${k-}${k+ and }not test_conda_additional_deps"
|
|
|
|
|
k="${k-}${k+ and }not test_conda_hook"
|
|
|
|
|
k="${k-}${k+ and }not test_conda_language"
|
|
|
|
|
k="${k-}${k+ and }not test_conda_with_additional_dependencies_hook"
|
|
|
|
|
k="${k-}${k+ and }not test_control_c_control_c_on_install"
|
|
|
|
|
k="${k-}${k+ and }not test_dotnet_combo_proj1"
|
|
|
|
|
k="${k-}${k+ and }not test_dotnet_combo_proj2"
|
|
|
|
|
k="${k-}${k+ and }not test_dotnet_csproj"
|
|
|
|
|
k="${k-}${k+ and }not test_dotnet_csproj_prefix"
|
|
|
|
|
k="${k-}${k+ and }not test_dotnet_hook"
|
|
|
|
|
k="${k-}${k+ and }not test_dotnet_sln"
|
|
|
|
|
k="${k-}${k+ and }not test_during_commit_all"
|
|
|
|
|
k="${k-}${k+ and }not test_golang_default_version"
|
|
|
|
|
k="${k-}${k+ and }not test_golang_hook"
|
|
|
|
|
k="${k-}${k+ and }not test_golang_hook_still_works_when_gobin_is_set"
|
|
|
|
|
k="${k-}${k+ and }not test_golang_infer_go_version_default"
|
|
|
|
|
k="${k-}${k+ and }not test_golang_system"
|
|
|
|
|
k="${k-}${k+ and }not test_golang_system_hook"
|
|
|
|
|
k="${k-}${k+ and }not test_golang_versioned"
|
|
|
|
|
k="${k-}${k+ and }not test_golang_versioned_hook"
|
|
|
|
|
k="${k-}${k+ and }not test_golang_with_recursive_submodule"
|
|
|
|
|
k="${k-}${k+ and }not test_health_check_after_downgrade"
|
|
|
|
|
k="${k-}${k+ and }not test_health_check_healthy"
|
|
|
|
|
k="${k-}${k+ and }not test_health_check_without_version"
|
|
|
|
|
k="${k-}${k+ and }not test_healthy_default_creator"
|
|
|
|
|
k="${k-}${k+ and }not test_healthy_venv_creator"
|
|
|
|
|
k="${k-}${k+ and }not test_install_ruby_with_version"
|
|
|
|
|
k="${k-}${k+ and }not test_installs_rust_missing_rustup"
|
|
|
|
|
k="${k-}${k+ and }not test_installs_with_bootstrapped_rustup"
|
|
|
|
|
k="${k-}${k+ and }not test_installs_with_existing_rustup"
|
|
|
|
|
k="${k-}${k+ and }not test_installs_without_links_outside_env"
|
|
|
|
|
k="${k-}${k+ and }not test_invalidated_virtualenv"
|
|
|
|
|
k="${k-}${k+ and }not test_language_versioned_python_hook"
|
|
|
|
|
k="${k-}${k+ and }not test_local_conda_additional_dependencies"
|
|
|
|
|
k="${k-}${k+ and }not test_local_golang_additional_dependencies"
|
|
|
|
|
k="${k-}${k+ and }not test_local_golang_additional_deps"
|
|
|
|
|
k="${k-}${k+ and }not test_local_lua_additional_dependencies"
|
|
|
|
|
k="${k-}${k+ and }not test_local_perl_additional_dependencies"
|
|
|
|
|
k="${k-}${k+ and }not test_local_python_repo"
|
|
|
|
|
k="${k-}${k+ and }not test_local_rust_additional_dependencies"
|
|
|
|
|
k="${k-}${k+ and }not test_lua_additional_dependencies"
|
|
|
|
|
k="${k-}${k+ and }not test_node_additional_deps"
|
|
|
|
|
k="${k-}${k+ and }not test_node_hook_versions"
|
|
|
|
|
k="${k-}${k+ and }not test_perl_additional_dependencies"
|
|
|
|
|
k="${k-}${k+ and }not test_python_hook_weird_setup_cfg"
|
|
|
|
|
k="${k-}${k+ and }not test_python_venv_deprecation"
|
|
|
|
|
k="${k-}${k+ and }not test_r_hook"
|
|
|
|
|
k="${k-}${k+ and }not test_r_inline"
|
|
|
|
|
k="${k-}${k+ and }not test_r_inline_hook"
|
|
|
|
|
k="${k-}${k+ and }not test_r_local_with_additional_dependencies_hook"
|
|
|
|
|
k="${k-}${k+ and }not test_r_with_additional_dependencies_hook"
|
|
|
|
|
k="${k-}${k+ and }not test_really_long_file_paths"
|
|
|
|
|
k="${k-}${k+ and }not test_reinstall"
|
|
|
|
|
k="${k-}${k+ and }not test_repository_state_compatibility[v1]"
|
|
|
|
|
k="${k-}${k+ and }not test_repository_state_compatibility[v2]"
|
|
|
|
|
k="${k-}${k+ and }not test_ruby_additional_deps"
|
|
|
|
|
k="${k-}${k+ and }not test_ruby_hook_default"
|
|
|
|
|
k="${k-}${k+ and }not test_ruby_hook_language_version"
|
|
|
|
|
k="${k-}${k+ and }not test_ruby_with_bundle_disable_shared_gems"
|
|
|
|
|
k="${k-}${k+ and }not test_run_a_node_hook_default_version"
|
|
|
|
|
k="${k-}${k+ and }not test_run_dep"
|
|
|
|
|
k="${k-}${k+ and }not test_run_example_executable"
|
|
|
|
|
k="${k-}${k+ and }not test_run_lib_additional_dependencies"
|
|
|
|
|
k="${k-}${k+ and }not test_run_ruby_hook_with_disable_shared_gems"
|
|
|
|
|
k="${k-}${k+ and }not test_run_versioned_node_hook"
|
|
|
|
|
k="${k-}${k+ and }not test_run_versioned_ruby_hook"
|
|
|
|
|
k="${k-}${k+ and }not test_rust_cli_additional_dependencies"
|
|
|
|
|
k="${k-}${k+ and }not test_simple_python_hook"
|
|
|
|
|
k="${k-}${k+ and }not test_simple_python_hook_default_version"
|
|
|
|
|
k="${k-}${k+ and }not test_unhealthy_old_virtualenv"
|
|
|
|
|
k="${k-}${k+ and }not test_unhealthy_python_goes_missing"
|
|
|
|
|
k="${k-}${k+ and }not test_unhealthy_system_version_changes"
|
|
|
|
|
k="${k-}${k+ and }not test_unhealthy_then_replaced"
|
|
|
|
|
k="${k-}${k+ and }not test_unhealthy_unexpected_pyvenv"
|
|
|
|
|
k="${k-}${k+ and }not test_unhealthy_with_version_change"
|
|
|
|
|
# Fails in koji but not in mock (Executable `ruby_hook` not found)
|
|
|
|
|
k="${k-}${k+ and }not test_ruby_hook_system"
|
|
|
|
|
# Requires rustup (not packaged), and would require network access even if
|
|
|
|
|
# rustup were available:
|
|
|
|
|
k="${k-}${k+ and }not test_language_version_with_rustup"
|
|
|
|
|
# Requires coursier (not packaged):
|
|
|
|
|
k="${k-}${k+ and }not test_coursier_hook"
|
|
|
|
|
k="${k-}${k+ and }not test_coursier_hook_additional_dependencies"
|
|
|
|
|
k="${k-}${k+ and }not test_error_if_no_deps_or_channel"
|
|
|
|
|
# Requires dart (not packaged):
|
|
|
|
|
k="${k-}${k+ and }not test_dart"
|
|
|
|
|
k="${k-}${k+ and }not test_dart_additional_deps"
|
|
|
|
|
k="${k-}${k+ and }not test_dart_additional_deps_versioned"
|
|
|
|
|
k="${k-}${k+ and }not test_dart_hook"
|
|
|
|
|
k="${k-}${k+ and }not test_local_dart_additional_dependencies"
|
|
|
|
|
k="${k-}${k+ and }not test_local_dart_additional_dependencies_versioned"
|
|
|
|
|
# Requires swift-lang, which we have chosen not to BuildRequire; see comments
|
|
|
|
|
# earlier in the spec file:
|
|
|
|
|
k="${k-}${k+ and }not test_swift_language"
|
|
|
|
|
# Requires docker (not packaged)
|
|
|
|
|
k="${k-}${k+ and }not test_docker_hook"
|
|
|
|
|
k="${k-}${k+ and }not test_docker_image_color_tty"
|
|
|
|
|
k="${k-}${k+ and }not test_docker_image_hook_via_args"
|
|
|
|
|
k="${k-}${k+ and }not test_docker_image_hook_via_entrypoint"
|
|
|
|
|
k="${k-}${k+ and }not test_docker_image_no_color_no_tty"
|
|
|
|
|
# Does not work under (i.e., respect) an “external” PYTHONPATH
|
|
|
|
|
k="${k-}${k+ and }not test_installed_from_venv"
|
|
|
|
|
# Fails in koji but not local mock (hook exits with code 1, no useful output)
|
|
|
|
|
k="${k-}${k+ and }not test_run_a_ruby_hook"
|
|
|
|
|
%pytest -v -k "${k-}" -n %{_smp_build_ncpus}
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files -f %{pyproject_files}
|
|
|
|
|
%doc README.md CHANGELOG.md CONTRIBUTING.md
|
|
|
|
|
%{_bindir}/pre-commit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Sun Jan 05 2025 Arkady L. Shane <tigro@msvsphere-os.ru> - 3.8.0-1
|
|
|
|
|
- Rebuilt for MSVSphere 10
|
|
|
|
|
|
|
|
|
|
## START: Generated by rpmautospec
|
|
|
|
|
* Mon Jul 29 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 3.8.0-1
|
|
|
|
|
- Update to 3.8.0 (close RHBZ#2300465)
|
|
|
|
|
|
|
|
|
|
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.7.0-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jun 07 2024 Python Maint <python-maint@redhat.com> - 3.7.0-2
|
|
|
|
|
- Rebuilt for Python 3.13
|
|
|
|
|
|
|
|
|
|
* Tue Mar 26 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 3.7.0-1
|
|
|
|
|
- Update to 3.7.0 (close RHBZ#2271311)
|
|
|
|
|
|
|
|
|
|
* Sun Feb 18 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 3.6.2-1
|
|
|
|
|
- Update to 3.6.2 (close RHBZ#2264761)
|
|
|
|
|
|
|
|
|
|
* Mon Feb 12 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 3.6.1-1
|
|
|
|
|
- Update to 3.6.1 (close RHBZ#2263682)
|
|
|
|
|
|
|
|
|
|
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.0-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.0-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jan 01 2024 Benjamin A. Beasley <code@musicinmybrain.net> - 3.6.0-2
|
|
|
|
|
- Assert that the .dist-info directory contains a license file
|
|
|
|
|
- Simplify setting up the git repository required by the tests
|
|
|
|
|
|
|
|
|
|
* Tue Dec 19 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 3.6.0-1
|
|
|
|
|
- Update to 3.6.0 (close RHBZ#2253802)
|
|
|
|
|
|
|
|
|
|
* Fri Nov 03 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 3.5.0-2
|
|
|
|
|
- Patch for Python 3.13 (close RHBZ#2247263)
|
|
|
|
|
|
|
|
|
|
* Tue Oct 24 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 3.5.0-1
|
|
|
|
|
- Update to 3.5.0 (close RHBZ#2243884)
|
|
|
|
|
|
|
|
|
|
* Sun Sep 03 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 3.4.0-1
|
|
|
|
|
- Update to 3.4.0 (close RHBZ#2237001)
|
|
|
|
|
|
|
|
|
|
* Mon Jul 24 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 3.3.3-1
|
|
|
|
|
- Update to 3.3.3 (close RHBZ#2192407)
|
|
|
|
|
|
|
|
|
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.2-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Jun 29 2023 Python Maint <python-maint@redhat.com> - 3.2.2-2
|
|
|
|
|
- Rebuilt for Python 3.12
|
|
|
|
|
|
|
|
|
|
* Tue Apr 04 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 3.2.2-1
|
|
|
|
|
- Update to 3.2.2 (close RHBZ#2173816)
|
|
|
|
|
|
|
|
|
|
* Thu Feb 23 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 3.1.0-1
|
|
|
|
|
- Update to 3.1.0 (close RHBZ#2172751)
|
|
|
|
|
|
|
|
|
|
* Fri Feb 03 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 3.0.4-1
|
|
|
|
|
- Update to 3.0.4 (close RHBZ#2163591)
|
|
|
|
|
|
|
|
|
|
* Mon Jan 23 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 2.21.0-2
|
|
|
|
|
- Use ruby, not rubypick
|
|
|
|
|
|
|
|
|
|
* Fri Jan 20 2023 Benjamin A. Beasley <code@musicinmybrain.net> - 2.21.0-1
|
|
|
|
|
- Update to 2.21.0 (close RHBZ#2156253); fixes FTBFS with git ≥ 2.38.1
|
|
|
|
|
|
|
|
|
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.20.0-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.20.0-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Jul 12 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 2.20.0-1
|
|
|
|
|
- Update to 2.20.0 (close RHBZ#2105849)
|
|
|
|
|
|
|
|
|
|
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 2.19.0-2
|
|
|
|
|
- Rebuilt for Python 3.11
|
|
|
|
|
|
|
|
|
|
* Sun May 15 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 2.19.0-1
|
|
|
|
|
- Update to 2.19.0
|
|
|
|
|
|
|
|
|
|
* Thu Mar 24 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 2.16.0-3
|
|
|
|
|
- Use pytest-env, now that it is packaged
|
|
|
|
|
- Skip tests more precisely/selectively
|
|
|
|
|
- Drop unnecessary BR on deprecated python-mock
|
|
|
|
|
- Port to pyproject-rpm-macros
|
|
|
|
|
|
|
|
|
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.16.0-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Dec 06 2021 Chedi Toueiti <chedi.toueiti@gmail.com> - 2.16.0-1
|
|
|
|
|
- Update to version 2.16.0 (#2027887)
|
|
|
|
|
|
|
|
|
|
* Fri Oct 01 2021 Chedi Toueiti <chedi.toueiti@gmail.com> - 2.14.1-1
|
|
|
|
|
- Update to version 2.15.0 (#2000799)
|
|
|
|
|
|
|
|
|
|
* Wed Sep 01 2021 Chedi Toueiti <chedi.toueiti@gmail.com> - 2.14.1-1
|
|
|
|
|
- Upate to version 2.14.1 (#1990997)
|
|
|
|
|
|
|
|
|
|
* Tue Jul 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.13.0-2
|
|
|
|
|
- Second attempt - Rebuilt for
|
|
|
|
|
https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sat Jul 03 2021 Aniket Pradhan <major AT fedoraproject DOT org> - 2.13.0-1
|
|
|
|
|
- Version update to 2.13.0
|
|
|
|
|
- Remove redundant dependency generator call
|
|
|
|
|
- Use pytest macro
|
|
|
|
|
- Remove unnecessary python-devel version requirement
|
|
|
|
|
- Removed the dependency for Fedora 31 or lower
|
|
|
|
|
|
|
|
|
|
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 2.11.1-2
|
|
|
|
|
- Rebuilt for Python 3.10
|
|
|
|
|
|
|
|
|
|
* Sun Mar 21 2021 Chedi Toueiti <chedi.toueiti@gmail.com> - 2.11.1-1
|
|
|
|
|
- Update to version 2.11.1
|
|
|
|
|
|
|
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.1-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.1-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Mon Jun 22 2020 Lumír Balhar <lbalhar@redhat.com> - 2.5.1-1
|
|
|
|
|
- Update to 2.5.1
|
|
|
|
|
|
|
|
|
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 2.4.0-2
|
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
|
|
|
|
|
* Wed May 13 2020 Artem Polishchuk <ego.cordatus@gmail.com> - 2.4.0-1
|
|
|
|
|
- Update to 2.4.0
|
|
|
|
|
|
|
|
|
|
* Thu Apr 23 2020 Artem Polishchuk <ego.cordatus@gmail.com> - 2.3.0-1
|
|
|
|
|
- Update to 2.3.0
|
|
|
|
|
|
|
|
|
|
* Thu Mar 12 2020 Artem Polishchuk <ego.cordatus@gmail.com> - 2.2.0-1
|
|
|
|
|
- Update to 2.2.0
|
|
|
|
|
|
|
|
|
|
* Mon Feb 24 2020 Artem Polishchuk <ego.cordatus@gmail.com> - 2.1.1-1
|
|
|
|
|
- Update to 2.1.1
|
|
|
|
|
|
|
|
|
|
* Mon Feb 24 2020 Artem Polishchuk <ego.cordatus@gmail.com> - 2.1.0-1
|
|
|
|
|
- Update to 2.1.0
|
|
|
|
|
|
|
|
|
|
* Mon Jan 20 2020 Artem Polishchuk <ego.cordatus@gmail.com> - 1.21.0-1
|
|
|
|
|
- Update to 1.21.0
|
|
|
|
|
- Thanks Aniket Pradhan <major AT fedoraproject DOT org> for help with packaging
|
|
|
|
|
- Thanks Miro Hrončok <mhroncok@redhat.com> for help with packaging
|
|
|
|
|
|
|
|
|
|
* Sun Dec 08 2019 Artem Polishchuk <ego.cordatus@gmail.com> - 1.20.0-1
|
|
|
|
|
- Update to 1.20.0
|
|
|
|
|
|
|
|
|
|
* Thu Oct 24 2019 Artem Polishchuk <ego.cordatus@gmail.com> - 1.18.3-8
|
|
|
|
|
- Update to 1.18.3
|
|
|
|
|
|
|
|
|
|
* Sat Mar 30 2019 Artem Polishchuk <ego.cordatus@gmail.com> - 1.14.4-1
|
|
|
|
|
- Initial package
|
|
|
|
|
|
|
|
|
|
## END: Generated by rpmautospec
|