Update to 0.2.4

This commit is contained in:
Scott K Logan 2019-10-30 12:37:35 -07:00
commit 69377a4509
3 changed files with 12 additions and 8 deletions

View file

@ -1,11 +1,11 @@
%{?!_without_python2:%global with_python2 0%{?_with_python2:1} || (0%{?fedora} < 30 && 0%{?rhel} < 8)}
%{?!_without_python2:%global with_python2 0%{?_with_python2:1} || !(0%{?fedora} >= 30 || 0%{?rhel} >= 8)}
%{?!_without_python3:%global with_python3 0%{?_with_python3:1} || !0%{?rhel} || 0%{?rhel} >= 7}
%global srcname vcstool
Name: python-%{srcname}
Version: 0.2.3
Release: 3%{?dist}
Version: 0.2.4
Release: 1%{?dist}
Summary: Tool to invoke vcs commands on multiple repositories
License: ASL 2.0
@ -48,9 +48,9 @@ Requires: python2-pyyaml
Requires: python2-setuptools
%endif # __pythondist_requires
%if 0%{?fedora}
%if 0%{?fedora} || 0%{?rhel} >= 8
Recommends: git
%endif # fedora
%endif # fedora || rhel >= 8
%description -n python2-%{srcname}
Vcstool is a version control system (VCS) tool, designed to make working with
@ -84,9 +84,9 @@ Requires: python%{python3_pkgversion}-PyYAML
Requires: python%{python3_pkgversion}-setuptools
%endif # __pythondist_requires
%if 0%{?fedora}
%if 0%{?fedora} || 0%{?rhel} >= 8
Recommends: git
%endif # fedora
%endif # fedora || rhel >= 8
%description -n python%{python3_pkgversion}-%{srcname}
Vcstool is a version control system (VCS) tool, designed to make working with
@ -214,6 +214,9 @@ ln -s vcs %{buildroot}%{_datadir}/bash-completion/completions/vcs-%{python3_vers
%changelog
* Wed Oct 30 2019 Scott K Logan <logans@cottsay.net> - 0.2.4-1
- Update to 0.2.4 (rhbz#1764143)
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.2.3-3
- Rebuilt for Python 3.8.0rc1 (#1748018)