NO_REGRESS
This commit is contained in:
parent
552fee92b4
commit
70430789b6
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.8 2001/10/07 01:19:40 naddy Exp $
|
||||
# $OpenBSD: Makefile,v 1.9 2001/11/05 17:04:11 shell Exp $
|
||||
|
||||
COMMENT= "python interface to MySQL"
|
||||
|
||||
@ -28,6 +28,7 @@ RUN_DEPENDS+= python${PYTHON_VER}::lang/python
|
||||
BUILD_DEPENDS= ${RUN_DEPENDS}
|
||||
|
||||
SUBST_VARS= PYTHON_VER
|
||||
NO_REGRESS= Yes
|
||||
|
||||
PY_CMD= @cd ${WRKSRC}; python${PYTHON_VER} ./setup.py
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.8 2001/10/24 12:53:55 shell Exp $
|
||||
# $OpenBSD: Makefile,v 1.9 2001/11/05 17:04:11 shell Exp $
|
||||
|
||||
|
||||
COMMENT= "python codes checker"
|
||||
@ -28,6 +28,7 @@ RUN_DEPENDS+= python${PYTHON_VER}::lang/python
|
||||
BUILD_DEPENDS= ${RUN_DEPENDS}
|
||||
|
||||
SUBST_VARS= PYTHON_VER
|
||||
NO_REGRESS= Yes
|
||||
|
||||
PY_CMD= @cd ${WRKSRC} && python${PYTHON_VER} ./setup.py
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.4 2001/08/31 22:16:50 shell Exp $
|
||||
# $OpenBSD: Makefile,v 1.5 2001/11/05 17:04:11 shell Exp $
|
||||
|
||||
|
||||
COMMENT= "unit testing framework for python"
|
||||
@ -29,14 +29,14 @@ PYTHON_VER= 2.1
|
||||
|
||||
.if ${FLAVOR} != "no_x11"
|
||||
PY_MODULE= ${LOCALBASE}/lib/python${PYTHON_VER}/lib-dynload/_tkinter.so
|
||||
RUN_DEPENDS= ${PY_MODULE}::lang/python,tk
|
||||
BUILD_DEPENDS= ${PY_MODULE}::lang/python,tk
|
||||
.else
|
||||
RUN_DEPENDS= python${PYTHON_VER}::lang/python
|
||||
BUILD_DEPENDS= python${PYTHON_VER}::lang/python
|
||||
.endif
|
||||
|
||||
BUILD_DEPENDS= ${RUN_DEPENDS}
|
||||
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
SUBST_VARS= PYTHON_VER
|
||||
NO_REGRESS= Yes
|
||||
|
||||
do-build:
|
||||
cd ${WRKSRC}; python${PYTHON_VER} ./setup.py build \
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.4 2001/11/04 05:45:14 shell Exp $
|
||||
# $OpenBSD: Makefile,v 1.5 2001/11/05 17:04:11 shell Exp $
|
||||
|
||||
|
||||
COMMENT= "python module for GnuPG interface"
|
||||
@ -23,13 +23,14 @@ MASTER_SITE_SUBDIR= py-gnupg
|
||||
|
||||
PYTHON_VER= 2.1
|
||||
|
||||
RUN_DEPENDS+= python${PYTHON_VER}::lang/python \
|
||||
BUILD_DEPENDS+= python${PYTHON_VER}::lang/python \
|
||||
gpg::security/gnupg
|
||||
BUILD_DEPENDS= ${RUN_DEPENDS}
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
PY_CMD= cd ${WRKSRC}; python${PYTHON_VER} ./setup.py
|
||||
|
||||
SUBST_VARS= PYTHON_VER
|
||||
NO_REGRESS= Yes
|
||||
|
||||
do-build:
|
||||
${PY_CMD} build --build-base=${WRKSRC}
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2001/09/10 06:08:03 shell Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2001/11/05 17:04:11 shell Exp $
|
||||
|
||||
COMMENT= "OpenSSL Wrappers for Python"
|
||||
|
||||
@ -22,8 +22,9 @@ MASTER_SITE_SUBDIR= pow
|
||||
|
||||
PYTHON_VER= 2.1
|
||||
|
||||
RUN_DEPENDS+= python${PYTHON_VER}::lang/python
|
||||
BUILD_DEPENDS= ${RUN_DEPENDS}
|
||||
BUILD_DEPENDS+= python${PYTHON_VER}::lang/python
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
NO_REGRESS= Yes
|
||||
|
||||
PY_CMD= cd ${WRKSRC}; python${PYTHON_VER} ./setup.py
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.5 2001/10/29 18:23:38 shell Exp $
|
||||
# $OpenBSD: Makefile,v 1.6 2001/11/05 17:04:11 shell Exp $
|
||||
|
||||
|
||||
COMMENT= "python library for creating postscript or PDF charts"
|
||||
@ -22,9 +22,11 @@ MASTER_SITES= ${HOMEPAGE}
|
||||
|
||||
PYTHON_VER= 2.1
|
||||
|
||||
RUN_DEPENDS+= python${PYTHON_VER}::lang/python
|
||||
BUILD_DEPENDS= ${RUN_DEPENDS}
|
||||
BUILD_DEPENDS+= python${PYTHON_VER}::lang/python
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
SUBST_VARS= PYTHON_VER
|
||||
NO_REGRESS= Yes
|
||||
|
||||
PY_CMD= cd ${WRKSRC}; python${PYTHON_VER} ./setup.py
|
||||
|
||||
do-build:
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.7 2001/10/29 18:47:39 shell Exp $
|
||||
# $OpenBSD: Makefile,v 1.8 2001/11/05 17:04:11 shell Exp $
|
||||
|
||||
COMMENT= "python module for writing basic XML applications"
|
||||
|
||||
@ -23,10 +23,11 @@ PERMIT_DISTFILES_CDROM= Yes
|
||||
PYTHON_VER= 2.1
|
||||
|
||||
LIB_DEPENDS= ::textproc/expat
|
||||
RUN_DEPENDS= ::lang/python
|
||||
BUILD_DEPENDS= ${RUN_DEPENDS}
|
||||
BUILD_DEPENDS= ::lang/python
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
SUBST_VARS= PYTHON_VER
|
||||
NO_REGRESS= Yes
|
||||
|
||||
PY_CMD= cd ${WRKSRC}; python${PYTHON_VER} ./setup.py
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user