View | Details | Raw Unified | Return to bug 246167 | Differences between
and this patch

Collapse All | Expand All

(-)www/uwsgi/Makefile (-1 / +12 lines)
Lines 34-44 Link Here
34
OPTIONS_DEFAULT=	SSL
34
OPTIONS_DEFAULT=	SSL
35
35
36
OPTIONS_GROUP=		PLG
36
OPTIONS_GROUP=		PLG
37
OPTIONS_GROUP_PLG=	PSGI
37
OPTIONS_GROUP_PLG=	COROAE LOGPIPE PSGI
38
38
39
PLG_DESC=		Enable plugins
39
PLG_DESC=		Enable plugins
40
COROAE_DESC=		Enable Coro::AnyEvent support
41
LOGPIPE_DESC=		pipe logger support
40
PSGI_DESC=		PSGI embedded plugin
42
PSGI_DESC=		PSGI embedded plugin
41
43
44
COROAE_BUILD_DEPENDS=	p5-Coro>=0:devel/p5-Coro
45
COROAE_IMPLIES=		PSGI
46
42
DEBUG_VARS=		PYDISTUTILS_BUILDARGS+=--debug
47
DEBUG_VARS=		PYDISTUTILS_BUILDARGS+=--debug
43
48
44
JSON_VARS=		BUILDCONF_JSON=jansson
49
JSON_VARS=		BUILDCONF_JSON=jansson
Lines 62-67 Link Here
62
	@${REINPLACE_CMD} -e '/^${var:tl} =/ s|= .*|= ${BUILDCONF_${var}:Ufalse}|' ${WRKSRC}/buildconf/base.ini
67
	@${REINPLACE_CMD} -e '/^${var:tl} =/ s|= .*|= ${BUILDCONF_${var}:Ufalse}|' ${WRKSRC}/buildconf/base.ini
63
.endfor
68
.endfor
64
69
70
post-patch-COROAE-on:
71
	@${REINPLACE_CMD} -e 's/%(main_plugin)s,/%(main_plugin)s, coroae,/' ${WRKSRC}/buildconf/base.ini
72
73
post-patch-LOGPIPE-on:
74
	@${REINPLACE_CMD} -e 's/%(main_plugin)s,/%(main_plugin)s, logpipe,/' ${WRKSRC}/buildconf/base.ini
75
65
post-patch-PSGI-on:
76
post-patch-PSGI-on:
66
	@${REINPLACE_CMD} -e 's/%(main_plugin)s,/%(main_plugin)s, psgi,/' ${WRKSRC}/buildconf/base.ini
77
	@${REINPLACE_CMD} -e 's/%(main_plugin)s,/%(main_plugin)s, psgi,/' ${WRKSRC}/buildconf/base.ini
67
78
(-)www/uwsgi/files/patch-plugins_coroae_uwsgiplugin.py (+11 lines)
Line 0 Link Here
1
--- plugins/coroae/uwsgiplugin.py.orig	2019-02-09 14:48:07 UTC
2
+++ plugins/coroae/uwsgiplugin.py
3
@@ -9,7 +9,7 @@ for p in search_paths:
4
         coroapi = p
5
 
6
 if not coroapi:
7
-    print "unable to find the Coro perl module !!!"
8
+    print("unable to find the Coro perl module !!!")
9
     sys.exit(1)
10
 
11
 NAME='coroae'

Return to bug 246167