mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
1b85bc9332
python 2.7.10 Differential Revision: https://reviews.freebsd.org/D2639 Reviewed by: sunpoet, mva
33 lines
794 B
Makefile
33 lines
794 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= slimit
|
|
PORTVERSION= 0.8.1
|
|
CATEGORIES= www python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= melvyn@magemana.nl
|
|
COMMENT= JavaScript minifier written in Python
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ply>=3.4:${PORTSDIR}/devel/py-ply
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ply>=3.4:${PORTSDIR}/devel/py-ply
|
|
|
|
USES= python:2 zip
|
|
USE_PYTHON= distutils autoplist
|
|
|
|
# Maintainer: Reminder to keep testing python 3.x compatibility.
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PYTHON_REL} >= 3000
|
|
BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six
|
|
pre-build:
|
|
@cd ${WRKSRC} && 2to3-${PYTHON_VER} -w src
|
|
.endif
|
|
|
|
regression-test: build
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
|
|
|
|
.include <bsd.port.post.mk>
|