commit 8cb7fbdffa08ad5e1181531b06156e67017f0d8f76f6c85188e5fdbbf1dca1bb Author: Nico Krapp Date: Mon Sep 29 14:07:06 2025 +0000 - Update to 0.9.8 * Documentation fixes (StreamDeck 6 key module is also supported since 0.9.7) - Use Python 3.11 on SLE-15 by default OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-streamdeck?expand=0&rev=18 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/python-streamdeck.changes b/python-streamdeck.changes new file mode 100644 index 0000000..9305c9d --- /dev/null +++ b/python-streamdeck.changes @@ -0,0 +1,67 @@ +------------------------------------------------------------------- +Mon Sep 29 12:10:45 UTC 2025 - John Paul Adrian Glaubitz + +- Update to 0.9.8 + * Documentation fixes (StreamDeck 6 key module is also supported since 0.9.7) +- Use Python 3.11 on SLE-15 by default + +------------------------------------------------------------------- +Tue Aug 5 10:50:39 UTC 2025 - John Paul Adrian Glaubitz + +- Update to 0.9.7 + * Documentation fixes (StreamDeck 6 key module is also supported since 0.9.7) + +------------------------------------------------------------------- +Mon Jun 16 06:12:25 UTC 2025 - Steve Kowalik + +- Switch to pyroject macros. + +------------------------------------------------------------------- +Tue Oct 29 22:24:06 UTC 2024 - Dirk Müller + +- update to 0.9.6: + * Fixed StreamDeck+ returning 10 key states instead of the + expected 8. + * Fixed StreamDeck+ dial push event not being detected + correctly. + * Fixed old key states and dial states returned if requested + from inside a key or dial callback function. + * Added support for FreeBSD platforms. + * Added support for the StreamDeck Neo. + +------------------------------------------------------------------- +Fri Dec 29 10:24:43 UTC 2023 - Dirk Müller + +- update to 0.9.5: + * Added support for the StreamDeck Plus. + +------------------------------------------------------------------- +Mon Nov 13 12:21:44 UTC 2023 - Frederic Crozat + +- Update to 0.9.4: + * Updated Windows HIDAPI backend to attempt to load from the + local working directory. + * Added detection for MacOS Homebrew installations of the + libhidapi back-end library. + +------------------------------------------------------------------- +Wed Jul 19 09:32:34 UTC 2023 - Frederic Crozat + +- Add requires on libhidapi-libusb0, its shared library is loaded + dynamically by python module and is a must for this module to + work properly. + +------------------------------------------------------------------- +Tue Jul 18 13:08:32 UTC 2023 - Dirk Müller + +- fix formatting + +------------------------------------------------------------------- +Tue Jul 18 12:29:10 UTC 2023 - Frederic Crozat + +- Update to 0.9.3. + +------------------------------------------------------------------- +Mon Aug 2 01:41:48 UTC 2021 - Simon Lees + +- Initial Package diff --git a/python-streamdeck.spec b/python-streamdeck.spec new file mode 100644 index 0000000..c1f6db4 --- /dev/null +++ b/python-streamdeck.spec @@ -0,0 +1,57 @@ +# +# spec file for package python-streamdeck +# +# Copyright (c) 2025 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-streamdeck +Version: 0.9.8 +Release: 0 +Summary: Library to control Elgato StreamDeck devices +License: MIT +URL: https://github.com/abcminiuser/python-elgato-streamdeck +Source: https://files.pythonhosted.org/packages/source/s/streamdeck/streamdeck-%{version}.tar.gz +Group: Development/Languages/Python +BuildRequires: %{python_module pip} +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module wheel} +BuildRequires: dos2unix +BuildRequires: fdupes +BuildRequires: python-rpm-macros +BuildArch: noarch +Requires: libhidapi-libusb0 +%python_subpackages + +%description +Python library to control Elgato StreamDeck devices. + +%prep +%setup -q -n streamdeck-%{version} +dos2unix CHANGELOG README.md + +%build +%pyproject_wheel + +%install +%pyproject_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%files %{python_files} +%doc CHANGELOG README.md +%license LICENSE +%{python_sitelib}/StreamDeck* +%{python_sitelib}/streamdeck-%{version}.dist-info + +%changelog diff --git a/streamdeck-0.9.7.tar.gz b/streamdeck-0.9.7.tar.gz new file mode 100644 index 0000000..11b9f74 --- /dev/null +++ b/streamdeck-0.9.7.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d586e66286f8ee039af0979e49026b45abe87f7f933af15a38e2387c1e3508e +size 2557584 diff --git a/streamdeck-0.9.8.tar.gz b/streamdeck-0.9.8.tar.gz new file mode 100644 index 0000000..6685512 --- /dev/null +++ b/streamdeck-0.9.8.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acee4ad207a40d4cc2256d3a4c22b9f591e3c390efbe515e439ce518b31d0125 +size 2557549