python3-zope-hookable: initial commit, version

This commit is contained in:
Tim Biermann 2022-03-27 16:23:15 +02:00
parent 36685365da
commit eab0cfdbeb
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,29 @@
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.hookable-5.1.0-py3.9-nspkg.pth
drwxr-xr-x root/root usr/lib/python3.9/site-packages/zope.hookable-5.1.0-py3.9.egg-info/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope.hookable-5.1.0-py3.9.egg-info/PKG-INFO
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope.hookable-5.1.0-py3.9.egg-info/SOURCES.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope.hookable-5.1.0-py3.9.egg-info/dependency_links.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope.hookable-5.1.0-py3.9.egg-info/namespace_packages.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope.hookable-5.1.0-py3.9.egg-info/not-zip-safe
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope.hookable-5.1.0-py3.9.egg-info/requires.txt
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope.hookable-5.1.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/hookable/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope/hookable/__init__.py
drwxr-xr-x root/root usr/lib/python3.9/site-packages/zope/hookable/__pycache__/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope/hookable/__pycache__/__init__.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope/hookable/__pycache__/__init__.cpython-39.pyc
-rw-rw-r-- root/root usr/lib/python3.9/site-packages/zope/hookable/_zope_hookable.c
-rwxr-xr-x root/root usr/lib/python3.9/site-packages/zope/hookable/_zope_hookable.cpython-39-x86_64-linux-gnu.so
drwxr-xr-x root/root usr/lib/python3.9/site-packages/zope/hookable/tests/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope/hookable/tests/__init__.py
drwxr-xr-x root/root usr/lib/python3.9/site-packages/zope/hookable/tests/__pycache__/
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope/hookable/tests/__pycache__/__init__.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope/hookable/tests/__pycache__/__init__.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope/hookable/tests/__pycache__/test_hookable.cpython-39.opt-1.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope/hookable/tests/__pycache__/test_hookable.cpython-39.pyc
-rw-r--r-- root/root usr/lib/python3.9/site-packages/zope/hookable/tests/test_hookable.py

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3yWtHdYW6NQv2GYmkqKh85BcY6M7/6DcLfrORzb7DS2pwwQSa/vYSMs7ihRui90n7h3aqFXWbdx7HMhKIeSXJwM=
SHA256 (Pkgfile) = f10666163ca125ab0d359ee7e708d88144b473bdfc831de66591f7ce56fa25f7
SHA256 (.footprint) = add1c24a488fd6d2dacd2d034b7909315c4f47fc2e5bc193f8ae7984fbefc15e
SHA256 (python3-zope-hookable-5.1.0.tar.gz) = cddd85df329aa183b3856c23a63b65f24067f084d7947156f2699c7c7f11040e

View File

@ -0,0 +1,15 @@
# Description: Represents the core of the Zope hookable Architecture
# URL: https://github.com/zopefoundation/zope.hookable
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-setuptools
name=python3-zope-hookable
version=5.1.0
release=1
source=(https://github.com/zopefoundation/zope.hookable/archive/$version/$name-$version.tar.gz)
build() {
cd zope.hookable-$version
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --root=$PKG --optimize=1
}