15
0

Accepting request 648773 from home:TheBlackCat:branches:devel:languages:python:misc

Directory monitoring package for Python

OBS-URL: https://build.opensuse.org/request/show/648773
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-easywatch?expand=0&rev=1
This commit is contained in:
Todd R
2018-11-13 17:46:45 +00:00
committed by Git OBS Bridge
commit 1fa28768ec
5 changed files with 94 additions and 0 deletions

63
python-easywatch.spec Normal file
View File

@@ -0,0 +1,63 @@
#
# spec file for package python-easywatch
#
# Copyright (c) 2018 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 http://bugs.opensuse.org/
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-easywatch
Version: 0.0.5
Release: 0
License: MIT
Summary: Directory monitoring package for Python
Url: https://github.com/Ceasar/easywatch
Group: Development/Languages/Python
Source: https://files.pythonhosted.org/packages/source/e/easywatch/easywatch-%{version}.tar.gz
BuildRequires: python-rpm-macros
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
Requires: python-watchdog
BuildArch: noarch
%python_subpackages
%description
Easywatch exports one function, `watch` which watches a directory for
changes and notifies a handler the type of event and the name of the
file that triggered it.
There are four types of events that the handler can be notified about:
* created: a file was created
* deleted: a file was deleted
* modified: a file was modified
* moved: a file was moved
%prep
%setup -q -n easywatch-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%files %{python_files}
%license LICENSE
%doc README.rst
%{python_sitelib}/*
%changelog