diff options
author | Bartłomiej Piotrowski <b@bpiotrowski.pl> | 2015-10-16 14:42:21 +0200 |
---|---|---|
committer | Bartłomiej Piotrowski <b@bpiotrowski.pl> | 2015-10-16 14:42:21 +0200 |
commit | 5526cbe899d66dcd420ef40feff9ef6f5b954e26 (patch) | |
tree | 51c2e93632adc788a5e7f2dd4cd51f841e8820a8 | |
parent | ee66c4f380d5f24d81b85471494bae1cb89420d0 (diff) | |
download | aports-5526cbe899d66dcd420ef40feff9ef6f5b954e26.tar.bz2 aports-5526cbe899d66dcd420ef40feff9ef6f5b954e26.tar.xz |
main/uwsgi: disable python3 plugin
To say that our python3 support is bad would be an understatement…
-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() { |