forked from pool/python-system_hotkey
Accepting request 808446 from home:andythe_great:branches:home:alois
- Remove _service file. - Dependency for superpaper. OBS-URL: https://build.opensuse.org/request/show/808446 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-system_hotkey?expand=0&rev=1
This commit is contained in:
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
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
.osc
|
29
python-system_hotkey.changes
Normal file
29
python-system_hotkey.changes
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat May 23 02:50:29 UTC 2020 - andy great <andythe_great@pm.me>
|
||||||
|
|
||||||
|
- Remove _service file.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Apr 24 14:41:28 UTC 2020 - andy great <andythe_great@pm.me>
|
||||||
|
|
||||||
|
- Clean spec file.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Dec 26 15:01:20 UTC 2019 - aloisio@gmx.com
|
||||||
|
|
||||||
|
- Update to version 1.0.2+git.20190515:
|
||||||
|
* Fix a typo in Readme
|
||||||
|
* Fix code example
|
||||||
|
* Add 'from' clause to re-raised errors
|
||||||
|
* update readme
|
||||||
|
* raise errors in main
|
||||||
|
* cleanup
|
||||||
|
* bug fix
|
||||||
|
* rip white space
|
||||||
|
* filtering out unrequired events on linux
|
||||||
|
* v bump
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Dec 26 14:40:38 UTC 2019 - Luigi Baldoni <aloisio@gmx.com>
|
||||||
|
|
||||||
|
- Initial package (v1.0.3)
|
65
python-system_hotkey.spec
Normal file
65
python-system_hotkey.spec
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
#
|
||||||
|
# spec file for package python-system_hotkey
|
||||||
|
#
|
||||||
|
# Copyright (c) 2020 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/
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
|
%define skip_python2 1
|
||||||
|
Name: python-system_hotkey
|
||||||
|
Version: 1.0.2
|
||||||
|
Release: 0
|
||||||
|
Summary: System wide hotkeys
|
||||||
|
License: BSD-3-Clause
|
||||||
|
URL: https://github.com/timeyyy/system_hotkey
|
||||||
|
Source0: https://github.com/timeyyy/system_hotkey/archive/%{version}.tar.gz#/system_hotkey-%{version}.tar.gz
|
||||||
|
BuildRequires: %{python_module setuptools}
|
||||||
|
BuildRequires: %{python_module xcffib}
|
||||||
|
BuildRequires: %{python_module xpybutil}
|
||||||
|
BuildRequires: fdupes
|
||||||
|
BuildRequires: pkgconfig
|
||||||
|
BuildRequires: python-rpm-macros
|
||||||
|
BuildRequires: pkgconfig(xcb)
|
||||||
|
Requires: python-xcffib
|
||||||
|
Requires: python-xpybutil
|
||||||
|
BuildArch: noarch
|
||||||
|
%python_subpackages
|
||||||
|
|
||||||
|
%description
|
||||||
|
System wide hotkeys for python 3.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n system_hotkey-%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
%python_build
|
||||||
|
|
||||||
|
%install
|
||||||
|
%python_install
|
||||||
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
|
%check
|
||||||
|
%python_exec setup.py test
|
||||||
|
|
||||||
|
%files %{python_files}
|
||||||
|
%license LICENSE
|
||||||
|
%doc HISTORY.rst README.rst
|
||||||
|
%dir %{python_sitelib}/system_hotkey/
|
||||||
|
%dir %{python_sitelib}/system_hotkey/__pycache__/
|
||||||
|
%{python_sitelib}/system_hotkey-1.0.1-py%{python_version}.egg-info/
|
||||||
|
%{python_sitelib}/system_hotkey/*.py
|
||||||
|
%pycache_only %{python_sitelib}/system_hotkey/__pycache__/*.pyc
|
||||||
|
|
||||||
|
%changelog
|
3
system_hotkey-1.0.2.tar.gz
Normal file
3
system_hotkey-1.0.2.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:4d6e06bf359efecf4bea251e330c852f83b9150f503df28fd94239499f4ff606
|
||||||
|
size 30373
|
Reference in New Issue
Block a user