This repository has been archived by the owner on Oct 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
python-fanotify (0.1) unstable; urgency=medium | ||
|
||
* Initial release. | ||
|
||
-- Mike Gerow <gerow@google.com> Tue, 01 Sep 2015 15:15:27 -0700 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
Source: python-fanotify | ||
Maintainer: Mike Gerow <gerow@google.com> | ||
Section: python | ||
Priority: optional | ||
Build-Depends: | ||
debhelper (>= 12.7.2), | ||
dh-python, | ||
python-all-dev, | ||
python-nose, | ||
python-setuptools, | ||
python3-all-dev, | ||
python3-nose, | ||
python3-setuptools, | ||
Standards-Version: 4.4.0 | ||
|
||
Package: python-fanotify | ||
Architecture: any | ||
Depends: | ||
${misc:Depends}, | ||
${python:Depends}, | ||
${shlibs:Depends}, | ||
python, | ||
Description: Interface to linux's fanotify system calls for python2. | ||
This library allows you to monitor and control accesses to files. For more | ||
information see the man pages on fanotify itself. | ||
|
||
Package: python3-fanotify | ||
Architecture: any | ||
Depends: | ||
${misc:Depends}, | ||
${python3:Depends}, | ||
${shlibs:Depends}, | ||
python3, | ||
Description: Interface to linux's fanotify system calls for python3. | ||
This library allows you to monitor and control accesses to files. For more | ||
information see the man pages on fanotify itself. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Copyright 2015-2020 Google, Inc. All rights reserved. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
usr/lib/python2.7/dist-packages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
usr/lib/python3.7/dist-packages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/make -f | ||
|
||
%: | ||
dh $@ --with=python2,python3 --buildsystem=pybuild | ||
|
||
override_dh_python2: | ||
dh_python2 --shebang '/usr/bin/python2 -sE' | ||
|
||
override_dh_python3: | ||
dh_python3 --shebang '/usr/bin/python3 -sE' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 (native) |