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

Collapse All | Expand All

(-)Makefile (-1 / +8 lines)
Lines 30-36 Link Here
30
30
31
SUB_LIST=	PYTHON_VER=${PYTHON_VER}
31
SUB_LIST=	PYTHON_VER=${PYTHON_VER}
32
32
33
OPTIONS_DEFINE=		DEBUG JSON PCRE XML SSL
33
OPTIONS_DEFINE=		COROAE DEBUG JSON PCRE XML SSL
34
OPTIONS_DEFAULT=	SSL
34
OPTIONS_DEFAULT=	SSL
35
35
36
OPTIONS_GROUP=		PLG
36
OPTIONS_GROUP=		PLG
Lines 39-44 Link Here
39
PLG_DESC=		Enable plugins
39
PLG_DESC=		Enable plugins
40
PSGI_DESC=		PSGI embedded plugin
40
PSGI_DESC=		PSGI embedded plugin
41
41
42
COROAE_DESC=		Enable Coro::AnyEvent support
43
COROAE_BUILD_DEPENDS=	p5-Coro>=0:devel/p5-Coro
44
COROAE_IMPLIES=		PSGI
45
42
DEBUG_VARS=		PYDISTUTILS_BUILDARGS+=--debug
46
DEBUG_VARS=		PYDISTUTILS_BUILDARGS+=--debug
43
47
44
JSON_VARS=		BUILDCONF_JSON=jansson
48
JSON_VARS=		BUILDCONF_JSON=jansson
Lines 65-70 Link Here
65
post-patch-PSGI-on:
69
post-patch-PSGI-on:
66
	@${REINPLACE_CMD} -e 's/%(main_plugin)s,/%(main_plugin)s, psgi,/' ${WRKSRC}/buildconf/base.ini
70
	@${REINPLACE_CMD} -e 's/%(main_plugin)s,/%(main_plugin)s, psgi,/' ${WRKSRC}/buildconf/base.ini
67
71
72
post-patch-COROAE-on:
73
	@${REINPLACE_CMD} -e 's/%(main_plugin)s,/%(main_plugin)s, coroae,/' ${WRKSRC}/buildconf/base.ini
74
68
do-configure:
75
do-configure:
69
	@${DO_NADA}
76
	@${DO_NADA}
70
77
(-)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