python3-pyinotify: initial commit, version 0.9.6

This commit is contained in:
Tim Biermann 2024-03-02 01:58:53 +01:00
parent f398638f0b
commit 9d4f74dd90
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,13 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/python3.10/
drwxr-xr-x root/root usr/lib/python3.10/site-packages/
drwxr-xr-x root/root usr/lib/python3.10/site-packages/__pycache__/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/__pycache__/pyinotify.cpython-310.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.10/site-packages/__pycache__/pyinotify.cpython-310.pyc
drwxr-xr-x root/root usr/lib/python3.10/site-packages/pyinotify-0.9.6-py3.10.egg-info/
-rw-r--r-- root/root usr/lib/python3.10/site-packages/pyinotify-0.9.6-py3.10.egg-info/PKG-INFO
-rw-r--r-- root/root usr/lib/python3.10/site-packages/pyinotify-0.9.6-py3.10.egg-info/SOURCES.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/pyinotify-0.9.6-py3.10.egg-info/dependency_links.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/pyinotify-0.9.6-py3.10.egg-info/top_level.txt
-rw-r--r-- root/root usr/lib/python3.10/site-packages/pyinotify.py

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3wZI8AF5ShR2zHJaXSh4O8Bf7MUfGjIAfwENfvHwpoUhUPGqksUmBsVWJmu7io7AaLx+pV3nNOp3QVD0NWtMJQc=
SHA256 (Pkgfile) = 930dafbc193737713e8b047647e9659d1fcc4bcc2d8c7cab3966270fb9984e2f
SHA256 (.footprint) = 9492ac2b78231d2fc0e5e57c500ef042c194da291d172af5b9ced35c6c47fac6
SHA256 (python3-pyinotify-0.9.6.tar.gz) = 7943f198c5cef2bdc121d847937fbe565daaa7d4daaf1b8de8ef5689812f481c

18
python3-pyinotify/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: Python module used for monitoring filesystems events on Linux platforms with inotify
# URL: https://github.com/seb-m/pyinotify
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-setuptools
name=python3-pyinotify
version=0.9.6
release=1
source=(https://github.com/seb-m/pyinotify/archive/$version/$name-$version.tar.gz)
build() {
cd pyinotify-$version
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --prefix=/usr \
--root=$PKG \
--skip-build -O1
}