forked from pool/python-mitmproxy-rs
Accepting request 1207963 from home:MSirringhaus:branches:devel:languages:python
- update to 0.9.2 OBS-URL: https://build.opensuse.org/request/show/1207963 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-mitmproxy-rs?expand=0&rev=3
This commit is contained in:
7
_service
7
_service
@@ -1,9 +1,8 @@
|
|||||||
<services>
|
<services>
|
||||||
<service name="download_files" mode="manual"/>
|
<service name="download_files" mode="manual"/>
|
||||||
<service name="cargo_vendor" mode="manual">
|
<service name="cargo_vendor" mode="disabled">
|
||||||
<param name="srcdir">mitmproxy_rs-0.5.1</param>
|
<param name="src">mitmproxy_rs-0.9.2</param>
|
||||||
<param name="compression">zst</param>
|
<param name="compression">zst</param>
|
||||||
</service>
|
<param name="filter">true</param>
|
||||||
<service name="cargo_audit" mode="manual">
|
|
||||||
</service>
|
</service>
|
||||||
</services>
|
</services>
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:d8fc5dfde7bee019ebd0b29b28f178236949f3b4f229b9219929f15e2386d671
|
|
||||||
size 1166684
|
|
||||||
3
mitmproxy_rs-0.9.2.tar.gz
Normal file
3
mitmproxy_rs-0.9.2.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:20f69510edefdb4f1408ff18c42f239e7c512f9f133b67a8dced59b9b47db91e
|
||||||
|
size 1180072
|
||||||
@@ -1,3 +1,34 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 14 14:06:26 UTC 2024 - Martin Sirringhaus <martin.sirringhaus@suse.com>
|
||||||
|
|
||||||
|
- update to 0.9.2
|
||||||
|
- update to 0.9.1
|
||||||
|
* Actually better speculative fix.
|
||||||
|
- update to 0.9.0
|
||||||
|
* Better speculative fix.
|
||||||
|
- update to 0.8.1
|
||||||
|
* Speculative fix for stack overflows on Windows.
|
||||||
|
- update to 0.8.0
|
||||||
|
* Move functionality into submodules.
|
||||||
|
- update to 0.7.2
|
||||||
|
* Make `active_executables` raise for invalid paths on Windows.
|
||||||
|
- update to 0.7.1
|
||||||
|
* Make DnsResolver.lookup_* methods return error numbers matching `getaddrinfo`.
|
||||||
|
- update to 0.7.0
|
||||||
|
* Set IPV6_V6ONLY flag for UDP sockets
|
||||||
|
- update to 0.6.3
|
||||||
|
* Fix a bug when initializing local redirect mode on macOS.
|
||||||
|
- update to 0.6.2
|
||||||
|
* Handle errors when remote host has closed UDP socket
|
||||||
|
- update to 0.6.1
|
||||||
|
* Add dedicated IPv4/IPv6 resolution methods to the DNS resolver.
|
||||||
|
- update to 0.6.0
|
||||||
|
* Change intercept spec syntax.
|
||||||
|
* Add DNS resolver.
|
||||||
|
- update to 0.5.2
|
||||||
|
* Dependency updates.
|
||||||
|
- Use filtered vendor-tarball
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 27 10:23:45 UTC 2024 - Markéta Machová <mmachova@suse.com>
|
Tue Feb 27 10:23:45 UTC 2024 - Markéta Machová <mmachova@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -18,18 +18,18 @@
|
|||||||
|
|
||||||
%define skip_python39 1
|
%define skip_python39 1
|
||||||
Name: python-mitmproxy-rs
|
Name: python-mitmproxy-rs
|
||||||
Version: 0.5.1
|
Version: 0.9.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Rust bits for mitmproxy
|
Summary: Rust bits for mitmproxy
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/mitmproxy/mitmproxy_rs
|
URL: https://github.com/mitmproxy/mitmproxy_rs
|
||||||
Source: https://files.pythonhosted.org/packages/source/m/mitmproxy-rs/mitmproxy_rs-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/m/mitmproxy-rs/mitmproxy_rs-%{version}.tar.gz
|
||||||
Source1: vendor.tar.zst
|
Source1: vendor.tar.zst
|
||||||
BuildRequires: cargo-packaging
|
|
||||||
BuildRequires: python-rpm-macros
|
|
||||||
BuildRequires: %{python_module maturin >= 1}
|
BuildRequires: %{python_module maturin >= 1}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
|
BuildRequires: cargo-packaging
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
|
BuildRequires: python-rpm-macros
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@@ -37,7 +37,6 @@ This package contains mitmproxy's Rust bits.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -a1 -p1 -n mitmproxy_rs-%{version}
|
%autosetup -a1 -p1 -n mitmproxy_rs-%{version}
|
||||||
rm -v Cargo.lock
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%pyproject_wheel
|
%pyproject_wheel
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:48eb5b2e6f0d04663ceeec7b7b18f7cc6fe0b71d9210ff971d1803742f40c947
|
oid sha256:d6bf83c57e71be5a6bd65247713c3f4f6a27e2ac3ae3ea89a258315ed750d84b
|
||||||
size 48199664
|
size 17693186
|
||||||
|
|||||||
Reference in New Issue
Block a user