14
0

- Fix encoding tests fix-encoding.patch

- Initial commit, needed by autobahn

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-wsaccel?expand=0&rev=1
This commit is contained in:
Tomáš Chvátal
2019-03-26 11:19:46 +00:00
committed by Git OBS Bridge
commit d91f4f4e28
7 changed files with 124 additions and 0 deletions

23
.gitattributes vendored Normal file
View 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

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

3
0.6.2.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:209d678c22f9c8414aa9de2353d4ca5cc94119553f660cec7d189e9ccc3accf1
size 9632

13
LICENSE Normal file
View File

@@ -0,0 +1,13 @@
Copyright 2013-2015 INADA Naoki <songofacandy@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

11
fix-encoding.patch Normal file
View File

@@ -0,0 +1,11 @@
Index: wsaccel-0.6.2/tests/test_4.py
===================================================================
--- wsaccel-0.6.2.orig/tests/test_4.py
+++ wsaccel-0.6.2/tests/test_4.py
@@ -3,5 +3,5 @@ import wsaccel.utf8validator
def test_validate():
v = wsaccel.utf8validator.Utf8Validator()
- x = "Hello-µ@ßöäüàá-UTF-8!!" # taken from case 6.2.1
+ x = "Hello-µ@ßöäüàá-UTF-8!!".encode('utf-8') # taken from case 6.2.1
assert v.validate(x) == (True, True, 29, 29)

9
python-wsaccel.changes Normal file
View File

@@ -0,0 +1,9 @@
-------------------------------------------------------------------
Tue Mar 26 11:14:27 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Fix encoding tests fix-encoding.patch
-------------------------------------------------------------------
Tue Mar 26 10:56:55 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Initial commit, needed by autobahn

64
python-wsaccel.spec Normal file
View File

@@ -0,0 +1,64 @@
#
# spec file for package python-wsaccel
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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-%{**}}
Name: python-wsaccel
Version: 0.6.2
Release: 0
Summary: Accelerator for ws4py and AutobahnPython
License: Apache-2.0
Group: Development/Languages/Python
Url: https://github.com/methane/wsaccel
Source: https://github.com/methane/wsaccel/archive/%{version}.tar.gz
Source1: https://raw.githubusercontent.com/methane/wsaccel/master/LICENSE
Patch0: fix-encoding.patch
BuildRequires: %{python_module Cython >= 0.16}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
%python_subpackages
%description
WSAccell is WebSocket accelerator for `AutobahnPython <http://autobahn.ws/python>`_,
`ws4py <https://github.com/Lawouach/WebSocket-for-Python>`_ and
`Tornado <http://www.tornadoweb.org/>`_.
%prep
%setup -q -n wsaccel-%{version}
%patch0 -p1
cp %{SOURCE1} .
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitearch}
%check
PYTHONPATH=%{buildroot}%{python3_sitearch} pytest-%{python3_bin_suffix} tests
%files %{python_files}
%doc ChangeLog README.rst
%license LICENSE
%{python_sitearch}/*
%changelog