python3-zope-event: initial commit, version

This commit is contained in:
Tim Biermann 2022-03-27 16:23:19 +02:00
parent eab0cfdbeb
commit 8ddc23d406
3 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,25 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/python3.9/
drwxr-xr-x root/root usr/lib/python3.9/site-packages/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope.event-4.5.0-py3.9-nspkg.pth
drwxr-xr-x root/root usr/lib/python3.9/site-packages/zope.event-4.5.0-py3.9.egg-info/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope.event-4.5.0-py3.9.egg-info/PKG-INFO
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope.event-4.5.0-py3.9.egg-info/SOURCES.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope.event-4.5.0-py3.9.egg-info/dependency_links.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope.event-4.5.0-py3.9.egg-info/namespace_packages.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope.event-4.5.0-py3.9.egg-info/not-zip-safe
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope.event-4.5.0-py3.9.egg-info/requires.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope.event-4.5.0-py3.9.egg-info/top_level.txt
drwxr-xr-x root/root usr/lib/python3.9/site-packages/zope/
drwxr-xr-x root/root usr/lib/python3.9/site-packages/zope/event/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope/event/__init__.py
drwxr-xr-x root/root usr/lib/python3.9/site-packages/zope/event/__pycache__/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope/event/__pycache__/__init__.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope/event/__pycache__/__init__.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope/event/__pycache__/classhandler.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope/event/__pycache__/classhandler.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope/event/__pycache__/tests.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope/event/__pycache__/tests.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope/event/classhandler.py
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope/event/tests.py

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3/q/ps3F2hFm7AULFatU/def1nqH720Rt3sEvFc4uPeIQEp3R4IyJVcjrifpneXIFCD9j7PnrVHD9JEAxTeuPAA=
SHA256 (Pkgfile) = b151a7cc92b2ddf474bec2c7a67d5b7544a46a2e24c18a372e19cd88f7ef5153
SHA256 (.footprint) = 88133a058ed4361c0a035d0e419191e30fbe36d31c06420ffa09408a31c4626f
SHA256 (python3-zope-event-4.5.0.tar.gz) = 36a312ee8f9a75becdc4b58b8602b4e8499872e25fcefdbd2a10d0181a27811b

View File

@ -0,0 +1,18 @@
# Description: Provides a simple event system
# URL: https://github.com/zopefoundation/zope.event
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-setuptools
name=python3-zope-event
version=4.5.0
release=1
source=(https://github.com/zopefoundation/zope.event/archive/$version/$name-$version.tar.gz)
build() {
cd zope.event-$version
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --prefix=/usr \
--root=$PKG \
-O1 \
--skip-build
}