15
0

Compare commits

2 Commits

Author SHA256 Message Date
b4361eb07d Accepting request 1224113 from devel:languages:python
- update to 0.3.0:
  * switch to maintained fork of the library

  * DeviceRemoved event no longer tries to use non-existent dict
- Fix pytest version.
- Initial package release.

OBS-URL: https://build.opensuse.org/request/show/1224113
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-buttplug?expand=0&rev=6
2024-11-14 15:09:58 +00:00
e85188235d - update to 0.3.0:
* switch to maintained fork of the library
  * DeviceRemoved event no longer tries to use non-existent dict
- Fix pytest version.
- Initial package release.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-buttplug?expand=0&rev=10
2024-11-14 09:11:48 +00:00
4 changed files with 23 additions and 21 deletions

3
buttplug-0.3.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2b75cc1183882cf868121229f6c6a5b7f08019d49160ae8e2abd3b6e36638c74
size 13965

View File

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

View File

@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Nov 14 09:11:18 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 0.3.0:
* switch to maintained fork of the library
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Jan 24 14:55:41 UTC 2022 - Dominique Leuenberger <dimstar@opensuse.org> Mon Jan 24 14:55:41 UTC 2022 - Dominique Leuenberger <dimstar@opensuse.org>
@@ -20,7 +26,7 @@ Thu Jan 21 14:55:46 UTC 2021 - Markéta Machová <mmachova@suse.com>
Sun Nov 22 08:46:29 UTC 2020 - andy great <andythe_great@pm.me> Sun Nov 22 08:46:29 UTC 2020 - andy great <andythe_great@pm.me>
- Update to version 0.2.0. - Update to version 0.2.0.
* DeviceRemoved event no longer tries to use non-existent dict * DeviceRemoved event no longer tries to use non-existent dict
method. method.
* Fixed wrong enum naming. * Fixed wrong enum naming.
* Client now actually sends client name. * Client now actually sends client name.
@@ -28,7 +34,7 @@ Sun Nov 22 08:46:29 UTC 2020 - andy great <andythe_great@pm.me>
------------------------------------------------------------------- -------------------------------------------------------------------
Mon May 25 10:50:16 UTC 2020 - andy great <andythe_great@pm.me> Mon May 25 10:50:16 UTC 2020 - andy great <andythe_great@pm.me>
- Fix pytest version. - Fix pytest version.
------------------------------------------------------------------- -------------------------------------------------------------------
Sun May 24 16:53:39 UTC 2020 - andy great <andythe_great@pm.me> Sun May 24 16:53:39 UTC 2020 - andy great <andythe_great@pm.me>
@@ -38,4 +44,4 @@ Sun May 24 16:53:39 UTC 2020 - andy great <andythe_great@pm.me>
------------------------------------------------------------------- -------------------------------------------------------------------
Thu May 7 00:15:12 UTC 2020 - andy great <andythe_great@pm.me> Thu May 7 00:15:12 UTC 2020 - andy great <andythe_great@pm.me>
- Initial package release. - Initial package release.

View File

@@ -1,7 +1,7 @@
# #
# spec file for package python-buttplug # spec file for package python-buttplug
# #
# Copyright (c) 2022 SUSE LLC # Copyright (c) 2024 SUSE LLC
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@@ -16,20 +16,19 @@
# #
%{?!python_module:%define python_module() python-%{**} python3-%{**}} %{?sle15_python_module_pythons}
%define skip_python2 1
%define skip_python36 1
%define packagename buttplug-py
Name: python-buttplug Name: python-buttplug
Version: 0.2.0 Version: 0.3.0
Release: 0 Release: 0
Summary: Implementations of the Buttplug Client for Python Summary: Implementations of the Buttplug Client for Python
License: BSD-3-Clause License: BSD-3-Clause
URL: https://github.com/buttplugio/buttplug-py/ URL: https://github.com/buttplugio/buttplug-py/
Source: https://github.com/buttplugio/buttplug-py/archive/%{version}.tar.gz#/%{packagename}-%{version}.tar.gz Source: https://files.pythonhosted.org/packages/source/b/buttplug/buttplug-%{version}.tar.gz
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest >= 4.0} BuildRequires: %{python_module pytest >= 4.0}
BuildRequires: %{python_module setuptools} BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module websockets >= 7.0} BuildRequires: %{python_module websockets >= 7.0}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: python-rpm-macros BuildRequires: python-rpm-macros
Requires: python-websockets Requires: python-websockets
@@ -50,27 +49,24 @@ that can connect to Buttplug Servers, such as the Intiface Desktop
Application or Intiface C# CLI or Node CLI. Application or Intiface C# CLI or Node CLI.
%prep %prep
%setup -q -n %{packagename}-%{version} %setup -q -n buttplug-%{version}
%build %build
%python_build %pyproject_wheel
%install %install
%python_install %pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib} %python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%files %{python_files} %files %{python_files}
%license LICENSE %license LICENSE
%doc README.md CHANGELOG.md %doc README.md
%dir %{python_sitelib}/buttplug/ %dir %{python_sitelib}/buttplug/
%dir %{python_sitelib}/buttplug/*/ %dir %{python_sitelib}/buttplug/*/
%dir %{python_sitelib}/buttplug/*/__pycache__/ %dir %{python_sitelib}/buttplug/*/__pycache__/
%{python_sitelib}/buttplug/*.py %{python_sitelib}/buttplug/*.py
%{python_sitelib}/buttplug/*/*.py %{python_sitelib}/buttplug/*/*.py
%{python_sitelib}/buttplug-%{version}-py%{python_version}.egg-info/ %{python_sitelib}/buttplug-%{version}.dist-info
%pycache_only %{python_sitelib}/buttplug/__pycache__/*.pyc %pycache_only %{python_sitelib}/buttplug/__pycache__/*.pyc
%pycache_only %{python_sitelib}/buttplug/*/__pycache__/*.pyc %pycache_only %{python_sitelib}/buttplug/*/__pycache__/*.pyc