# # spec file for package python-mitmproxy # # Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via https://bugs.opensuse.org/ # %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define skip_python2 1 %define skip_python36 1 Name: python-mitmproxy Version: 7.0.4 Release: 0 Summary: An interactive, SSL/TLS-capable intercepting proxy License: MIT Group: Development/Languages/Python URL: https://mitmproxy.org Source: https://github.com/mitmproxy/mitmproxy/archive/refs/tags/v%{version}.tar.gz#/mitmproxy-%{version}.tar.gz BuildRequires: %{python_module Brotli >= 1.0} BuildRequires: %{python_module Flask >= 1.1.1} BuildRequires: %{python_module asgiref >= 3.2.10} BuildRequires: %{python_module blinker >= 1.4} BuildRequires: %{python_module certifi >= 2019.9.11} BuildRequires: %{python_module click >= 7.0} BuildRequires: %{python_module cryptography >= 3.3} BuildRequires: %{python_module h2 >= 4.0} BuildRequires: %{python_module hyperframe >= 6.0} BuildRequires: %{python_module hypothesis >= 5.8} BuildRequires: %{python_module kaitaistruct >= 0.7} BuildRequires: %{python_module ldap3 >= 2.8} BuildRequires: %{python_module msgpack >= 1.0.0} BuildRequires: %{python_module parver >= 0.1} BuildRequires: %{python_module passlib >= 1.6.5} BuildRequires: %{python_module protobuf >= 3.14} BuildRequires: %{python_module publicsuffix2 >= 2.20190812} BuildRequires: %{python_module pyOpenSSL >= 20.0} BuildRequires: %{python_module pyparsing >= 2.4.2} BuildRequires: %{python_module pyperclip >= 1.6.0} BuildRequires: %{python_module pytest >= 6.1.0} BuildRequires: %{python_module pytest-asyncio >= 0.10.0} BuildRequires: %{python_module requests >= 2.9.1} BuildRequires: %{python_module ruamel.yaml >= 0.16} BuildRequires: %{python_module setuptools} BuildRequires: %{python_module sortedcontainers >= 2.3} BuildRequires: %{python_module tornado >= 4.3} BuildRequires: %{python_module urwid >= 2.1.1} BuildRequires: %{python_module wsproto >= 1.0} BuildRequires: %{python_module zstandard >= 0.11} BuildRequires: fdupes BuildRequires: python-rpm-macros Requires: python-Brotli >= 1.0 Requires: python-Flask >= 1.1.1 Requires: python-asgiref >= 3.2.10 Requires: python-blinker >= 1.4 Requires: python-certifi >= 2019.9.11 Requires: python-click >= 7.0 Requires: python-cryptography >= 3.3 Requires: python-h2 >= 4.0 Requires: python-hyperframe >= 6.0 Requires: python-kaitaistruct >= 0.7 Requires: python-ldap3 >= 2.8 Requires: python-msgpack >= 1.0.0 Requires: python-passlib >= 1.6.5 Requires: python-protobuf >= 3.14 Requires: python-publicsuffix2 >= 2.20190812 Requires: python-pyOpenSSL >= 20.0 Requires: python-pyparsing >= 2.4.2 Requires: python-pyperclip >= 1.6.0 Requires: python-ruamel.yaml >= 0.16 Requires: python-sortedcontainers >= 2.3 Requires: python-tornado >= 4.3 Requires: python-urwid >= 2.1.1 Requires: python-wsproto >= 1.0 Requires: python-zstandard >= 0.11 Requires(post): update-alternatives Requires(postun):update-alternatives BuildArch: noarch %python_subpackages %description mitmproxy is an interactive, SSL/TLS-capable intercepting proxy with a console interface for HTTP/1, HTTP/2, and WebSockets. mitmdump is the command-line version of mitmproxy. Think tcpdump for HTTP. mitmweb is a web-based interface for mitmproxy. %prep %setup -q -n mitmproxy-%{version} #remove shebang sed -i '1 {\@^#!/usr/bin/python@ d}' mitmproxy/contrib/urwid/raw_display.py sed -i '1 {\@^#!/usr/bin/env@ d}' mitmproxy/contrib/wbxml/*.py sed -i '1 {\@^#!/usr/bin/env@ d}' mitmproxy/utils/emoji.py # upstream likes to pin dependencies too aggressively sed -i 's/,\s*<.*"/"/g' setup.py rm mitmproxy/contrib/kaitaistruct/make.sh %build %python_build %install %python_install %python_expand %fdupes %{buildroot}%{$python_sitelib} %python_clone -a %{buildroot}%{_bindir}/mitmdump %python_clone -a %{buildroot}%{_bindir}/mitmproxy %python_clone -a %{buildroot}%{_bindir}/mitmweb %check # test_refresh fails on i586... wrong timestamp type, maybe? # test_rollback and test_output[None-expected_out0-expected_err0] just randomly fail on i586 # test_get_version fails to mock updated git version %pytest -k "not (test_refresh or test_rollback or test_output or test_get_version)" %post %python_install_alternative mitmdump %python_install_alternative mitmproxy %python_install_alternative mitmweb %postun %python_uninstall_alternative mitmdump %python_uninstall_alternative mitmproxy %python_uninstall_alternative mitmweb %files %{python_files} %doc README.md CHANGELOG.md %license LICENSE %{python_sitelib}/* %python_alternative %{_bindir}/mitmdump %python_alternative %{_bindir}/mitmproxy %python_alternative %{_bindir}/mitmweb %changelog