mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
da3ee207ba
- Remove tests patch (upstreamed/released) This release adds Python 3 support. A changelog could not be found.
34 lines
741 B
Makefile
34 lines
741 B
Makefile
# Created by: Kubilay Kocak <koobs@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= twitter
|
|
PORTVERSION= 1.18.0
|
|
DISTVERSIONPREFIX= ${PORTNAME}-
|
|
CATEGORIES= net python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
PKGNAMESUFFIX= -tools
|
|
|
|
MAINTAINER= koobs@FreeBSD.org
|
|
COMMENT= API and command-line toolset for Twitter (twitter.com)
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_GITHUB= yes
|
|
USE_PYTHON= distutils concurrent autoplist
|
|
|
|
GH_ACCOUNT= sixohsix
|
|
|
|
NO_ARCH= yes
|
|
|
|
# A number of test failures are (still) present in test_util
|
|
# https://github.com/sixohsix/twitter/issues/166
|
|
|
|
do-test:
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
|
|
|
|
.include <bsd.port.mk>
|