mirror of
https://git.freebsd.org/ports.git
synced 2025-06-05 12:56:28 -04:00
The file installed as dateutil-zoneinfo.tar.gz is corrupted by the dos2unix run on all of the files in the distribution. There is no need to run dos2unix as the only files with CRLF is the NEWS file, a README and a Windows BAT file (which makes sense to use CRLF). Accordingly: - Remove use of USES=dos2unix - Bump PORTREVISION to rebuild package (containing corrupted TZ data file) PR: 217264 Submitted by: gordon MFH: 2017Q2
27 lines
567 B
Makefile
27 lines
567 B
Makefile
# Created by: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dateutil
|
|
PORTVERSION= 2.6.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= koobs@FreeBSD.org
|
|
COMMENT= Extensions to the standard Python datetime module
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.5:devel/py-six
|
|
|
|
USES= python
|
|
USE_GITHUB= yes
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
NO_ARCH= yes
|
|
|
|
do-test:
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
|
|
|
|
.include <bsd.port.mk>
|