On Wed, Sep 13, 2017 at 03:52:02AM -0600, Peter Hessler wrote:
> CVSROOT: /cvs
> Module name: ports
> Changes by: [email protected] 2017/09/13 03:52:02
>
> Modified files:
> devel : Makefile
> devel/py-gevent: Makefile
> devel/py-gevent/pkg: PLIST
>
> Log message:
> add python3 flavor for devel/py-gevent
>
> OK landry@
Any reason this isn't depending on proper MODPY_FLAVOR?
Index: Makefile
===================================================================
RCS file: /cvs/ports/devel/py-gevent/Makefile,v
retrieving revision 1.14
diff -u -p -r1.14 Makefile
--- Makefile 14 Sep 2017 06:03:25 -0000 1.14
+++ Makefile 14 Sep 2017 06:07:07 -0000
@@ -6,7 +6,7 @@ MODPY_EGG_VERSION = 1.2.2
DISTNAME = gevent-${MODPY_EGG_VERSION}
PKGNAME = ${MODPY_PY_PREFIX}${DISTNAME}
MAINTAINER = Dmitrij D. Czarkoff <[email protected]>
-REVISION = 0
+REVISION = 1
CATEGORIES = devel
HOMEPAGE = http://www.gevent.org/
@@ -27,14 +27,14 @@ MODPY_DISTUTILS_BUILDARGS = --build-base
--build-temp="tempdir"
BUILD_DEPENDS = devel/libev:configure \
- devel/py-cffi \
- lang/cython
+ devel/py-cffi${MODPY_FLAVOR} \
+ lang/cython${MODPY_FLAVOR}
LIB_DEPENDS = devel/libev \
net/libcares
-RUN_DEPENDS = devel/py-greenlet
+RUN_DEPENDS = devel/py-greenlet${MODPY_FLAVOR}
TEST_DEPENDS = ${RUN_DEPENDS} \
lang/python/${MODPY_VERSION},-tests \
- sysutils/py-psutil
+ sysutils/py-psutil${MODPY_FLAVOR}
MAKE_ENV = CARES_EMBED=0 LIBEV_EMBED=0
TEST_ENV = PYTHONPATH="${WRKBUILD}"
--
Antoine