File: control

package info (click to toggle)
inotifyx 0.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch, wheezy
  • size: 128 kB
  • ctags: 126
  • sloc: python: 851; ansic: 229; makefile: 48
file content (31 lines) | stat: -rw-r--r-- 1,519 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Source: inotifyx
Section: python
Priority: optional
Maintainer: Ritesh Raj Sarraf <rrs@debian.org>
Uploaders: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Build-Depends: debhelper (>= 7), python-all-dev (>= 2.6.6-3~)
Standards-Version: 3.9.2
Vcs-Svn: svn://svn.debian.org/svn/python-modules/packages/inotifyx/trunk
Vcs-Browser: http://svn.debian.org/wsvn/python-modules/packages/inotifyx/trunk/?op=log
Homepage: http://www.alittletooquiet.net/software/inotifyx/

Package: python-inotifyx
Architecture: any
Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}
Provides: ${python:Provides}
Description: simple Python binding to the Linux inotify
 inotifyx is a Python extension providing access to the Linux
 inotify file system event notification API. It is primarily
 written in C but has some Python window dressing
 .
 inotifyx exists as an alternative to the much known pyinotify bindings
 .
 Reasons you might choose inotifyx over pyinotify
  * inotifyx is a C extension and does not use ctypes, making it
    faster and less prone to subtle breakage due to changes in the inotify API
  * inotifyx is a much thinner wrapper around inotify. pyinotify is more
    complicated. It does provide features that inotifyx does not, but many of
    them are not needed by most applications
  * The API provided by pyinotify seems to change in incompatible ways on a
    fairly regular basis and with little justification. inotifyx has a simple
    API that will change rarely, if ever.