275 строки
8.2 KiB
Plaintext
275 строки
8.2 KiB
Plaintext
Vendor: Microsoft Corporation
|
|
Distribution: Mariner
|
|
# Enable python3 build by default
|
|
%bcond_without python3
|
|
# Disable python2 build by default
|
|
%bcond_with python2
|
|
|
|
%if 0%{?rhel} >= 8
|
|
# Disable tests on epel8 - dependencies dont exist.
|
|
%bcond_with tests
|
|
%else
|
|
%bcond_without tests
|
|
%endif
|
|
|
|
Name: python-requests-mock
|
|
Version: 1.7.0
|
|
Release: 3%{?dist}
|
|
Summary: A requests mocking tool for python
|
|
|
|
License: ASL 2.0
|
|
URL: https://requests-mock.readthedocs.io/
|
|
Source0: https://pypi.io/packages/source/r/requests-mock/requests-mock-%{version}.tar.gz#/python-requests-mock-%{version}.tar.gz
|
|
|
|
Patch0: 0002-Use-system-urllib3-package.patch
|
|
Patch1: 0003-Allow-skipping-purl-tests-if-it-is-not-present.patch
|
|
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
requests-mock provides a simple way to do HTTP mocking at the
|
|
python-requests layer.
|
|
|
|
%if %{with python2}
|
|
%package -n python2-requests-mock
|
|
Summary: A requests mocking tool for python
|
|
|
|
Requires: python2-requests
|
|
Requires: python2-six
|
|
|
|
# This {?fedora:2} syntax is because it's python2- on f28+ but just python- on
|
|
# epel still. Hopefully this can be removed when epel is fixed.
|
|
BuildRequires: python%{?fedora:2}-urllib3
|
|
|
|
# standard requirements needed for testing
|
|
BuildRequires: python2-requests
|
|
BuildRequires: python2-six
|
|
|
|
BuildRequires: python2-devel
|
|
BuildRequires: python2-pbr
|
|
BuildRequires: python2-setuptools
|
|
|
|
%if 0%{?rhel} && 0%{?rhel} <= 6
|
|
BuildRequires: python-discover
|
|
%endif
|
|
|
|
%if %{with tests}
|
|
BuildRequires: python2-mock
|
|
BuildRequires: python2-pytest
|
|
BuildRequires: python%{?fedora:2}-fixtures
|
|
BuildRequires: python%{?fedora:2}-testtools
|
|
%endif
|
|
|
|
|
|
%{?python_provide:%python_provide python2-requests-mock}
|
|
|
|
|
|
%description -n python2-requests-mock
|
|
requests-mock provides a simple way to do HTTP mocking at the
|
|
python-requests layer.
|
|
%endif
|
|
|
|
|
|
%if %{with python3}
|
|
%package -n python%{python3_pkgversion}-requests-mock
|
|
Summary: A requests mocking tool for python
|
|
|
|
Requires: python%{python3_pkgversion}-requests
|
|
Requires: python%{python3_pkgversion}-six
|
|
|
|
# standard requirements needed for testing
|
|
BuildRequires: python%{python3_pkgversion}-requests
|
|
BuildRequires: python%{python3_pkgversion}-six
|
|
BuildRequires: python%{python3_pkgversion}-urllib3
|
|
|
|
BuildRequires: python%{python3_pkgversion}-devel
|
|
BuildRequires: python%{python3_pkgversion}-pbr
|
|
BuildRequires: python%{python3_pkgversion}-setuptools
|
|
|
|
%{?python_provide:%python_provide python3-requests-mock}
|
|
|
|
%if %{with tests}
|
|
BuildRequires: python%{python3_pkgversion}-fixtures
|
|
BuildRequires: python%{python3_pkgversion}-mock
|
|
BuildRequires: python%{python3_pkgversion}-testtools
|
|
BuildRequires: python%{python3_pkgversion}-pytest
|
|
%endif
|
|
|
|
|
|
%description -n python%{python3_pkgversion}-requests-mock
|
|
requests-mock provides a simple way to do HTTP mocking at the
|
|
python-requests layer.
|
|
%endif
|
|
|
|
|
|
%prep
|
|
%setup -q -n requests-mock-%{version}
|
|
%patch0 -p1
|
|
%patch1 -p1
|
|
|
|
# Remove bundled egg-info
|
|
rm -rf requests_mock.egg-info
|
|
|
|
|
|
%build
|
|
%if %{with python2}
|
|
%py2_build
|
|
%endif
|
|
|
|
%if %{with python3}
|
|
%py3_build
|
|
%endif
|
|
|
|
|
|
%install
|
|
%if %{with python2}
|
|
%py2_install
|
|
%endif
|
|
|
|
%if %{with python3}
|
|
%py3_install
|
|
%endif
|
|
|
|
|
|
%check
|
|
%if %{with tests}
|
|
%if %{with python2}
|
|
%{__python2} -m testtools.run discover
|
|
%{__python2} -m pytest tests/pytest
|
|
%endif
|
|
|
|
%if %{with python3}
|
|
%{__python3} -m testtools.run discover
|
|
%{__python3} -m pytest tests/pytest
|
|
%endif
|
|
%endif
|
|
|
|
|
|
%if %{with python2}
|
|
%files -n python2-requests-mock
|
|
%license LICENSE
|
|
%doc README.rst ChangeLog
|
|
%{python2_sitelib}/requests_mock
|
|
%{python2_sitelib}/requests_mock-%{version}-py%{python2_version}.egg-info
|
|
%endif
|
|
|
|
|
|
%if %{with python3}
|
|
%files -n python%{python3_pkgversion}-requests-mock
|
|
%license LICENSE
|
|
%doc README.rst ChangeLog
|
|
%{python3_sitelib}/requests_mock
|
|
%{python3_sitelib}/requests_mock-%{version}-py%{python3_version}.egg-info
|
|
%endif
|
|
|
|
|
|
%changelog
|
|
* Fri Oct 15 2021 Pawel Winogrodzki <pawelwi@microsoft.com> - 1.7.0-3
|
|
- Initial CBL-Mariner import from Fedora 32 (license: MIT).
|
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
* Tue Dec 03 2019 Jamie Lennox <jamielennox@gmail.com> - 1.7.0-1
|
|
- Updated to upstream 1.7.0
|
|
- Conditionalized tests for EPEL8 not having required dependencies
|
|
- Add patch to skip purl tests as dependency not present.
|
|
|
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.5.2-6
|
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 1.5.2-5
|
|
- Rebuilt for Python 3.8
|
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.2-4
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
* Wed Feb 27 2019 Yatin Karel <ykarel@redhat.com> - 1.5.2-3
|
|
- Disable python2 build in Fedora and EL > 7
|
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.2-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
* Sat Jul 21 2018 Jamie Lennox <jamielennox@gmail.com> - 1.5.2-1
|
|
- Update to upstream 1.5.2.
|
|
- Fix bug introduced in 1.5.1
|
|
|
|
* Sat Jul 21 2018 Jamie Lennox <jamielennox@gmail.com> - 1.5.1-1
|
|
- Update to upstream 1.5.1.
|
|
- Fixes py.test plugin with py.test<3 as in EPEL.
|
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.0-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 1.5.0-2
|
|
- Rebuilt for Python 3.7
|
|
|
|
* Sat Jun 23 2018 Jamie Lennox <jamielennox@gmail.com>- 1.5.0-1
|
|
- Update to upstream 1.5.0.
|
|
|
|
* Fri Jun 22 2018 Carl George <carl@george.computer> - 1.3.0-6
|
|
- EPEL compatibility
|
|
|
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.3.0-5
|
|
- Rebuilt for Python 3.7
|
|
|
|
* Wed Feb 28 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.3.0-4
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
* Sun Dec 17 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.3.0-2
|
|
- Fix creation of python2- subpackage
|
|
|
|
* Fri Nov 17 2017 Alfredo Moralejo <amoralej@redhat.com> - 1.3.0-1
|
|
- Update to upstream 1.3.0. Required for OpenStack packages.
|
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
* Thu Dec 22 2016 Jamie Lennox <jamielennox@gmail.com> - 1.2.0-1
|
|
- Upstream 1.2.0. Fixes testing bug preventing package rebuilding.
|
|
|
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.1.0-2
|
|
- Rebuild for Python 3.6
|
|
|
|
* Mon Nov 14 2016 Haïkel Guémar <hguemar@fedoraproject.org> - 1.1.0-1
|
|
- Upstream 1.1.0
|
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.0-2
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
* Mon Jun 27 2016 Haïkel Guémar <hguemar@fedoraproject.org> - 1.0.0-1
|
|
- Upstream 1.0.0 (RHBZ#1334354)
|
|
- Use pypi.io for SourceURL
|
|
- Fix unversioned python macros
|
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.0-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
* Fri Dec 4 2015 Jamie Lennox <jamielennox@gmail.com> - 0.7.0-1
|
|
- Update package to new version.
|
|
- Add python2 subpackage for new python packaging guidelines.
|
|
- Redo patch1 to still apply.
|
|
|
|
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.0-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
* Fri Feb 6 2015 Jamie Lennox <jamielennox@redhat.com> - 0.6.0-1
|
|
- Update package to new version
|
|
|
|
* Tue Sep 2 2014 Jamie Lennox <jamielennox@redhat.com> - 0.5.1-2
|
|
- Removed packaged egg-info to force rebuild.
|
|
- Removed unneeded CFLAGS from build commands.
|
|
|
|
* Thu Aug 28 2014 Jamie Lennox <jamielennox@redhat.com> - 0.5.1-1
|
|
- Initial Package.
|