%{?!_without_python2:%global with_python2 0%{?_with_python2:1} || !(0%{?rhel} >= 8)} %{?!_without_python3:%global with_python3 0%{?_with_python3:1} || !0%{?rhel} || 0%{?rhel} >= 7} %global srcname vcstools Name: python-%{srcname} Version: 0.1.40 Release: 4%{?dist} Summary: Version Control System tools for Python License: BSD URL: http://www.ros.org/wiki/vcstools Source0: https://github.com/%{srcname}/%{srcname}/archive/%{version}/%{srcname}-%{version}.tar.gz BuildArch: noarch BuildRequires: bzr BuildRequires: git BuildRequires: mercurial %if 0%{?rhel} && 0%{?rhel} <= 6 BuildRequires: python-sphinx10 %else BuildRequires: python2-sphinx %endif BuildRequires: subversion %description The vcstools module provides a Python API for interacting with different version control systems (VCS/SCMs). The VcsClient class provides an API for seamless interacting with Git, Mercurial (Hg), Bzr and SVN. The focus of the API is manipulating on-disk checkouts of source-controlled trees. Its main use is to support the rosinstall tool. %if 0%{?with_python2} %package -n python2-%{srcname} Summary: Version Control System tools for Python %{?python_provide:%python_provide python2-%{srcname}} BuildRequires: python2-dateutil BuildRequires: python2-devel BuildRequires: python2-mock BuildRequires: python2-nose BuildRequires: python2-pyyaml Requires: python2-dateutil Requires: python2-pyyaml %if 0%{?rhel} && 0%{?rhel} < 8 Requires: bzr Requires: git Requires: mercurial Requires: subversion %else Recommends: bzr Recommends: git Recommends: mercurial Recommends: subversion %endif # rhel %description -n python2-%{srcname} The vcstools module provides a Python API for interacting with different version control systems (VCS/SCMs). The VcsClient class provides an API for seamless interacting with Git, Mercurial (Hg), Bzr and SVN. The focus of the API is manipulating on-disk checkouts of source-controlled trees. Its main use is to support the rosinstall tool. %endif # with_python2 %if 0%{?with_python3} %package -n python%{python3_pkgversion}-%{srcname} Summary: Version Control System tools for Python %{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}} BuildRequires: python%{python3_pkgversion}-dateutil BuildRequires: python%{python3_pkgversion}-devel BuildRequires: python%{python3_pkgversion}-mock BuildRequires: python%{python3_pkgversion}-nose BuildRequires: python%{python3_pkgversion}-PyYAML BuildRequires: python%{python3_pkgversion}-setuptools BuildRequires: python%{python3_pkgversion}-sphinx Requires: python%{python3_pkgversion}-dateutil Requires: python%{python3_pkgversion}-PyYAML %if 0%{?rhel} && 0%{?rhel} < 8 Requires: bzr Requires: git Requires: mercurial Requires: subversion %else Recommends: bzr Recommends: git Recommends: mercurial Recommends: subversion %endif # rhel %description -n python%{python3_pkgversion}-%{srcname} The vcstools module provides a Python API for interacting with different version control systems (VCS/SCMs). The VcsClient class provides an API for seamless interacting with Git, Mercurial (Hg), Bzr and SVN. The focus of the API is manipulating on-disk checkouts of source-controlled trees. Its main use is to support the rosinstall tool. %endif # with_python3 %prep %autosetup -n %{srcname}-%{version} sed -i 's/haiku/default/' doc/conf.py sed -i 's/:special-members://' doc/vcstools.rst %build %if 0%{?with_python2} %py2_build %endif # with_python2 %if 0%{?with_python3} %py3_build %endif # with_python3 %if 0%{?rhel} && 0%{?rhel} <= 6 %make_build -C doc html man SPHINXBUILD=sphinx-1.0-build %else %make_build -C doc html man %endif rm doc/_build/html/.buildinfo %install %if 0%{?with_python2} %py2_install install -p -D -m 0644 doc/_build/man/%{srcname}.1 %{buildroot}%{_mandir}/man1/%{srcname}.1 %endif # with_python2 %if 0%{?with_python3} %py3_install install -p -D -m 0644 doc/_build/man/%{srcname}.1 %{buildroot}%{_mandir}/man1/python3-%{srcname}.1 %endif # with_python3 %check # Some tests REQUIRE Python 2 to use unicode %if 0%{?rhel} export LANG=en_US.UTF-8 %else export LANG=C.UTF-8 %endif # rhel # Exclude 5 tests which access remote data # Exclude a test with a bad unicode conversion on python2.6 machines (Github vcstools/vcstools#77) %if 0%{?with_python2} %if "%{python2_version}" == "2.6" nosetests test \ -e "^(test_git_subm|test_url_matches_with_shortcut|test_checkout|test_checkout_dir_exists|test_checkout_version|test_get_url_by_reading|test_shell_command_verbose)$" %else %{__python2} -m nose test \ -e "^(test_git_subm|test_url_matches_with_shortcut|test_checkout|test_checkout_dir_exists|test_checkout_version|test_get_url_by_reading)$" %endif %endif # with_python2 %if 0%{?with_python3} %{__python3} -m nose test \ -e "^(test_git_subm|test_url_matches_with_shortcut|test_checkout|test_checkout_dir_exists|test_checkout_version|test_get_url_by_reading)$" %endif # with_python3 %if 0%{?with_python2} %files -n python2-%{srcname} %license LICENSE %doc doc/_build/html %{python2_sitelib}/%{srcname}/ %{python2_sitelib}/%{srcname}-%{version}-py%{python2_version}.egg-info/ %{_mandir}/man1/%{srcname}.1.gz %endif # with_python2 %if 0%{?with_python3} %files -n python%{python3_pkgversion}-%{srcname} %license LICENSE %doc doc/_build/html %{python3_sitelib}/%{srcname}/ %{python3_sitelib}/%{srcname}-%{version}-py%{python3_version}.egg-info/ %{_mandir}/man1/python3-%{srcname}.1.gz %endif # with_python3 %changelog * Tue Feb 12 2019 Scott K Logan - 0.1.40-4 - Move SCM packages from Requires to Recommends - Drop test coverage from %%check - Clean up spec file - Add Python 3 subpackage for EPEL7 * Sat Feb 02 2019 Fedora Release Engineering - 0.1.40-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild * Sun Nov 18 2018 Zbigniew Jędrzejewski-Szmek - 0.1.40-2 - Add BR:glibc-langpack-en See https://fedoraproject.org/wiki/Changes/Remove_glibc-langpacks-all_from_buildroot * Mon Jul 23 2018 Rich Mattes - 0.1.40-1 - Update to release 0.1.40 (rhbz#1532912) - Disable broken unit test (rhbz#1556280) * Sat Jul 14 2018 Fedora Release Engineering - 0.1.39-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Tue Jun 19 2018 Miro Hrončok - 0.1.39-7 - Rebuilt for Python 3.7 * Mon Mar 26 2018 Iryna Shcherbina - 0.1.39-6 - Update Python 2 dependency declarations to new packaging standards (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) * Fri Feb 09 2018 Fedora Release Engineering - 0.1.39-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild * Thu Jul 27 2017 Fedora Release Engineering - 0.1.39-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild * Sat Feb 11 2017 Fedora Release Engineering - 0.1.39-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild * Mon Dec 19 2016 Miro Hrončok - 0.1.39-2 - Rebuild for Python 3.6 * Thu Oct 20 2016 Rich Mattes - 0.1.39-1 - Update to 0.1.39 (rhbz#1376312) * Tue Jul 19 2016 Fedora Release Engineering - 0.1.38-4 - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages * Thu Feb 04 2016 Fedora Release Engineering - 0.1.38-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild * Tue Nov 10 2015 Fedora Release Engineering - 0.1.38-2 - Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 * Tue Oct 20 2015 Rich Mattes - 0.1.38-1 - Update to release 0.1.38 (rhbz#1271028) * Sun Sep 13 2015 Rich Mattes - 0.1.37-1 - Update to release 0.1.37 (rhbz#1259100) - Remove upstreamed patch * Thu Jun 18 2015 Fedora Release Engineering - 0.1.36-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild * Sun Dec 14 2014 Scott K Logan - 0.1.36-1 - Update to release 0.1.36 - Update to python packaging guidelines - Add check section - Add patch for test fixes - Add bzr, git, mercurial and subversion to Requires * Sun Jun 08 2014 Fedora Release Engineering - 0.1.35-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild * Wed May 28 2014 Kalev Lember - 0.1.35-2 - Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 * Mon May 19 2014 Scott K Logan - 0.1.35-1 - Update to release 0.1.35 * Sun Feb 09 2014 Rich Mattes - 0.1.32-2 - Added python 3 support * Sat Feb 08 2014 Rich Mattes - 0.1.32-1 - Update to release 0.1.32 * Mon Aug 19 2013 Rich Mattes - 0.1.31-1 - Update to release 0.1.31 - Update to github sourceurl guidelines * Sun Aug 04 2013 Fedora Release Engineering - 0.1.30-2.20130318git963c121 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild * Mon Mar 18 2013 Rich Mattes - 0.1.30-1.20130318git963c121 - Update to release 0.1.30 - Updated upstream URL * Thu Feb 14 2013 Fedora Release Engineering - 0.1.26-2.20130102gitd41568f - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild * Wed Jan 02 2013 Rich Mattes - 0.1.26-1.20130102gitd41568f - Update to release 0.1.26 * Fri Oct 26 2012 Rich Mattes - 0.1.24-1.20121026gitba30262 - Update to release 0.1.24 * Tue Aug 28 2012 Rich Mattes - 0.1.21-1.20120828hg0fba0588 - Update to release 0.1.21 * Sat Jul 21 2012 Fedora Release Engineering - 0.1.17-4.20120606hg6205f4fc - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild * Fri Jun 08 2012 Rich Mattes - 0.1.17-3.20120606hg6205f4fc - Added el6 support - Enabled unit tests * Wed Jun 06 2012 Rich Mattes - 0.1.17-2.20120606hg6205f4fc - Update package release to include hg checkout info - Remove el5 specific RPM_BUILD_ROOT removal from install section * Tue Jun 05 2012 Rich Mattes - 0.1.17-1 - Update to release 0.1.17 * Wed Apr 25 2012 Rich Mattes - 0.1.4-1 - Initial package