forked from pool/python-primp
- update to 0.6.1:
* Use Exception to raise error * CI: [linux] [x_86_64] - use `zig` to build for manylinux_2_17 * params data, json: replace clone() with as_unbound() * recode headers * Remove PyException * README: update precompiled wheels compatibility info * small code improvements OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-primp?expand=0&rev=2
This commit is contained in:
22
_service
22
_service
@@ -1,23 +1,7 @@
|
|||||||
<services>
|
<services>
|
||||||
<service mode="disabled" name="obs_scm">
|
<service mode="manual" name="download_files"/>
|
||||||
<param name="url">https://github.com/deedy5/primp</param>
|
<service name="cargo_vendor" mode="manual">
|
||||||
<param name="versionformat">@PARENT_TAG@</param>
|
<param name="src">primp-0.6.1</param>
|
||||||
<param name="scm">git</param>
|
|
||||||
<param name="revision">v0.6.0</param>
|
|
||||||
<param name="match-tag">*</param>
|
|
||||||
<param name="versionrewrite-pattern">v(\d+\.\d+\.\d+)</param>
|
|
||||||
<param name="versionrewrite-replacement">\1</param>
|
|
||||||
<param name="changesgenerate">enable</param>
|
|
||||||
<param name="changesauthor">mbelur@suse.com</param>
|
|
||||||
</service>
|
|
||||||
<service mode="disabled" name="tar" />
|
|
||||||
<service mode="disabled" name="recompress">
|
|
||||||
<param name="file">*.tar</param>
|
|
||||||
<param name="compression">xz</param>
|
|
||||||
</service>
|
|
||||||
<service mode="disabled" name="set_version"/>
|
|
||||||
<service name="cargo_vendor" mode="disabled">
|
|
||||||
<param name="src">primp</param>
|
|
||||||
<param name="compression">xz</param>
|
<param name="compression">xz</param>
|
||||||
<param name="update">true</param>
|
<param name="update">true</param>
|
||||||
</service>
|
</service>
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8df5739f6171f3a95d61c508638c210a56c1214dc754f84f232d1900fc49ae74
|
|
||||||
size 70228
|
|
3
primp-0.6.1.tar.gz
Normal file
3
primp-0.6.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:64b3c12e3d463a887518811c46f3ec37cca02e6af1ddf1287e548342de436301
|
||||||
|
size 79231
|
@@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 9 08:44:32 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 0.6.1:
|
||||||
|
* Use Exception to raise error
|
||||||
|
* CI: [linux] [x_86_64] - use `zig` to build for manylinux_2_17
|
||||||
|
* params data, json: replace clone() with as_unbound()
|
||||||
|
* recode headers
|
||||||
|
* Remove PyException
|
||||||
|
* README: update precompiled wheels compatibility info
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 23 23:12:23 UTC 2024 - Guang Yee <gyee@suse.com>
|
Fri Aug 23 23:12:23 UTC 2024 - Guang Yee <gyee@suse.com>
|
||||||
|
|
||||||
@@ -9,4 +20,4 @@ Fri Aug 23 23:12:23 UTC 2024 - Guang Yee <gyee@suse.com>
|
|||||||
* [Utils] Recode fn json_dumps, json_loads, url_encode by @deedy5
|
* [Utils] Recode fn json_dumps, json_loads, url_encode by @deedy5
|
||||||
* [html2text] Response object: 1) add attribute text_rich
|
* [html2text] Response object: 1) add attribute text_rich
|
||||||
* [logging]: send Rust log messages to Python
|
* [logging]: send Rust log messages to Python
|
||||||
* small code improvements
|
* small code improvements
|
||||||
|
@@ -15,31 +15,32 @@
|
|||||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-primp
|
Name: python-primp
|
||||||
Version: 0.6.0
|
Version: 0.6.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: HTTP client that can impersonate web browsers
|
Summary: HTTP client that can impersonate web browsers
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/deedy5/primp
|
URL: https://github.com/deedy5/primp
|
||||||
Source0: https://files.pythonhosted.org/packages/source/p/primp/primp-%{version}.tar.xz
|
Source0: https://files.pythonhosted.org/packages/source/p/primp/primp-%{version}.tar.gz
|
||||||
Source1: vendor.tar.xz
|
Source1: vendor.tar.xz
|
||||||
BuildRequires: python-rpm-macros
|
|
||||||
BuildRequires: %{python_module maturin >= 1.5}
|
BuildRequires: %{python_module maturin >= 1.5}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: cmake
|
|
||||||
BuildRequires: clang-devel
|
|
||||||
BuildRequires: gcc-c++
|
|
||||||
BuildRequires: git
|
|
||||||
BuildRequires: fdupes
|
|
||||||
BuildRequires: cargo-packaging
|
BuildRequires: cargo-packaging
|
||||||
BuildRequires: llvm
|
BuildRequires: clang-devel
|
||||||
BuildRequires: openssl
|
BuildRequires: cmake
|
||||||
|
BuildRequires: fdupes
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: git
|
||||||
|
BuildRequires: llvm
|
||||||
|
BuildRequires: openssl
|
||||||
|
BuildRequires: python-rpm-macros
|
||||||
|
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The fastest python HTTP client that can impersonate web browsers, mimicking
|
The fastest python HTTP client that can impersonate web browsers, mimicking
|
||||||
their headers and 'TLS/JA3/JA4/HTTP2' fingerprints
|
their headers and 'TLS/JA3/JA4/HTTP2' fingerprints
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
|
@@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:dc063aebec0d3e46e8de5cc3f0534faae7897491dacdd78949949f4f3edd4ed3
|
oid sha256:0af163eaa1c6ec6994fbefaad5e805c2f83dd7871aae40349ed44e2aef8d6b90
|
||||||
size 21739420
|
size 21764748
|
||||||
|
Reference in New Issue
Block a user