diff options
author | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-05-13 15:54:09 +0000 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-05-13 15:54:09 +0000 |
commit | c9b8ee1c1976ea24783e2ab7b43e7ed1e52317bb (patch) | |
tree | 54785c6bf334f274e78787b8b389207aacb1c062 /community/py-zope-component/APKBUILD | |
parent | 8e5bd3703bd90ca5bd5ae23944c0a1f3abec3102 (diff) | |
download | aports-c9b8ee1c1976ea24783e2ab7b43e7ed1e52317bb.tar.bz2 aports-c9b8ee1c1976ea24783e2ab7b43e7ed1e52317bb.tar.xz |
community/py-zoke-component: add libbffi-dev to makedepend
Build fails with:
> Package 'libffi', required by 'virtual:world', not found
> c/_cffi_backend.c:15:10: fatal error: ffi.h: No such file or directory
> #include <ffi.h>
> ^~~~~~~
> compilation terminated.
Add libffi-dev to makedepends to fix this issue.
Diffstat (limited to 'community/py-zope-component/APKBUILD')
-rw-r--r-- | community/py-zope-component/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/community/py-zope-component/APKBUILD b/community/py-zope-component/APKBUILD index f5bf217e81..622c36bdff 100644 --- a/community/py-zope-component/APKBUILD +++ b/community/py-zope-component/APKBUILD @@ -16,7 +16,7 @@ depends=" py-zope-hookable py-zope-interface " -makedepends="python2-dev python3-dev py-setuptools" +makedepends="python2-dev python3-dev py-setuptools libffi-dev" subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3" source="$_pkgname-$pkgver.tar.gz::https://github.com/zopefoundation/zope.component/archive/$pkgver.tar.gz" builddir="$srcdir"/$_pkgname-$pkgver |