mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
c26327aa1c
PR: 212047 Submitted by: yuri@rawbw.com (maintainer)
36 lines
934 B
Makefile
36 lines
934 B
Makefile
# Created by: Yuri Victorovich <yuri@rawbw.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= python-gist
|
|
PORTVERSION= 0.4.1
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= devel python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= yuri@rawbw.com
|
|
COMMENT= Command line interface for working with github gists
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docopt>0:devel/py-docopt \
|
|
${PYTHON_PKGNAMEPREFIX}python-gnupg>0:security/py-python-gnupg \
|
|
${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests \
|
|
${PYTHON_PKGNAMEPREFIX}responses>0:devel/py-responses \
|
|
${PYTHON_PKGNAMEPREFIX}simplejson>0:devel/py-simplejson \
|
|
${PYTHON_PKGNAMEPREFIX}tox>0:devel/py-tox
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= jdowner
|
|
GH_PROJECT= gist
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist distutils
|
|
NO_ARCH= yes
|
|
|
|
do-test:
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
|
|
|
|
.include <bsd.port.mk>
|