diff options
-rw-r--r-- | main/uwsgi/APKBUILD | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/main/uwsgi/APKBUILD b/main/uwsgi/APKBUILD index bf0d1b26d1..2054781f90 100644 --- a/main/uwsgi/APKBUILD +++ b/main/uwsgi/APKBUILD @@ -10,7 +10,7 @@ arch=all license=GPL2 depends=mailcap makedepends="linux-headers lua5.2-dev python python-dev zeromq-dev paxmark - pcre-dev python3 python3-dev" + pcre-dev" source="http://projects.unbit.it/downloads/uwsgi-${pkgver}.tar.gz uwsgi.initd uwsgi.confd @@ -22,7 +22,7 @@ source="http://projects.unbit.it/downloads/uwsgi-${pkgver}.tar.gz musl-locking-fix.patch " -_plugins="lua python python3 router_uwsgi cgi" +_plugins="lua python router_uwsgi cgi" subpackages="" for _p in $_plugins ; do subpackages="$subpackages uwsgi-$_p:_$_p" @@ -47,13 +47,10 @@ build() { CC="gcc" python uwsgiconfig.py --build core || return 1 export UWSGICONFIG_LUAPC="lua5.2" - for i in ${_plugins/python3}; do + for i in ${_plugins}; do msg "building $i plugin" python uwsgiconfig.py --plugin plugins/$i core || return 1 done - - # build python3 plugin - python3 uwsgiconfig.py --plugin plugins/python core python3 || return 1 } package() { |