mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-12 07:27:57 +00:00
22867575c0
- Update to 1.9.8 I missed this during the initial port commit. It fixes the failing unit test. Changes: 1.9.8 2013-10-17: Removed incorrect test. 1.9.7 2013-10-10: Add support for metadata. 1.9.6 2013-10-08: Fix issue with support for closing disputes. PR: ports/182313
33 lines
733 B
Makefile
33 lines
733 B
Makefile
# Created by: Trevor Caira <trevor@bitba.se>
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= stripe
|
|
PORTVERSION= 1.9.8
|
|
CATEGORIES= finance python
|
|
MASTER_SITES= https://code.stripe.com/stripe/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= trevor@bitba.se
|
|
COMMENT= Python bindings for the Stripe.com payment system
|
|
|
|
LICENSE= MIT
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0.8.8:${PORTSDIR}/www/py-requests
|
|
TEST_DEPENDS:= ${RUN_DEPENDS
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= easy_install
|
|
PYDISTUTILS_AUTOPLIST= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's/version=version\.VERSION,/version=version.VERSION, zip_safe=False,/' \
|
|
${WRKSRC}/setup.py
|
|
|
|
NO_STAGE= yes
|
|
|
|
regression-test: build
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test
|
|
|
|
.include <bsd.port.mk>
|