17 lines
495 B
Plaintext
17 lines
495 B
Plaintext
# Description: Defer imports until used by code.
|
|
# URL: https://github.com/zopefoundation/zope.deferredimport
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-zope-proxy
|
|
|
|
name=python3-zope-deferredimport
|
|
version=5.0
|
|
release=1
|
|
source=(https://github.com/zopefoundation/zope.deferredimport/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd zope.deferredimport-$version
|
|
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --root=$PKG --optimize=1
|
|
}
|