Sync from SUSE:SLFO:Main python-pylsqpack revision a64ea65ef653dd5a5dd1c05b9ed96336
This commit is contained in:
commit
223e08de69
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
BIN
pylsqpack-0.3.18.tar.gz
(Stored with Git LFS)
Normal file
BIN
pylsqpack-0.3.18.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
42
python-pylsqpack.changes
Normal file
42
python-pylsqpack.changes
Normal file
@ -0,0 +1,42 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Aug 31 11:53:14 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- update to 0.3.18:
|
||||
* add python 3.11 and 3.12 support
|
||||
* Fix error message from Decoder_resume_header
|
||||
* Fix Decoder.feed_header and .resume_header docs
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 4 12:40:51 UTC 2023 - ecsos <ecsos@opensuse.org>
|
||||
|
||||
- Add %{?sle15_python_module_pythons}
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Oct 5 00:34:18 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
|
||||
|
||||
- Update to v0.3.16
|
||||
* Fix memory leaks due to missing Py_DECREF calls
|
||||
* free DecoderObject's and EncoderObject's memory
|
||||
* Revert "Allocate encoding / decoding buffers of the heap (fixes: #14)"
|
||||
|
||||
- Update to v0.3.15
|
||||
* Allocate encoding / decoding buffers of the heap (fixes: #14)
|
||||
|
||||
- Update to 0.3.14
|
||||
* Build wheels for arm64 on macos
|
||||
* [docs] update copyright years
|
||||
|
||||
- Update to 0.3.13
|
||||
* [package] use pyproject.toml, don't build for musllinux
|
||||
* Support Python 3.10, drop Python 3.6
|
||||
* [vendor] update ls-qpack to version 1.0.3
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 23 14:50:56 UTC 2021 - John Vandenberg <jayvdb@gmail.com>
|
||||
|
||||
- Update to v0.3.12
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 19 02:07:22 PM UTC 2020 - John Vandenberg <jayvdb@gmail.com>
|
||||
|
||||
- Initial spec for v0.3.5
|
59
python-pylsqpack.spec
Normal file
59
python-pylsqpack.spec
Normal file
@ -0,0 +1,59 @@
|
||||
#
|
||||
# spec file for package python-pylsqpack
|
||||
#
|
||||
# Copyright (c) 2024 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/
|
||||
#
|
||||
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-pylsqpack
|
||||
Version: 0.3.18
|
||||
Release: 0
|
||||
Summary: Python ls-qpack QPACK library
|
||||
License: BSD-3-Clause
|
||||
Group: Development/Languages/Python
|
||||
URL: https://github.com/aiortc/pylsqpack
|
||||
Source: https://files.pythonhosted.org/packages/source/p/pylsqpack/pylsqpack-%{version}.tar.gz
|
||||
BuildRequires: %{python_module devel}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
Python wrapper for the ls-qpack QPACK library.
|
||||
|
||||
%prep
|
||||
%setup -q -n pylsqpack-%{version}
|
||||
|
||||
%build
|
||||
export CFLAGS="%{optflags}"
|
||||
%pyproject_wheel
|
||||
|
||||
%install
|
||||
%pyproject_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
||||
|
||||
%check
|
||||
%pyunittest_arch -v
|
||||
|
||||
%files %{python_files}
|
||||
%doc README.rst
|
||||
%license LICENSE
|
||||
%{python_sitearch}/pylsqpack
|
||||
%{python_sitearch}/pylsqpack-%{version}.dist-info
|
||||
|
||||
%changelog
|
Loading…
x
Reference in New Issue
Block a user