View | Details | Raw Unified | Return to bug 221277 | Differences between
and this patch

Collapse All | Expand All

(-)py3-pytz/distinfo (-3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1488112206
2
SHA256 (pytz-2016.10.tar.bz2) = 7016b2c4fa075c564b81c37a252a5fccf60d8964aa31b7f5eae59aeb594ae02b
3
SIZE (pytz-2016.10.tar.bz2) = 172920
(-)py3-pytz/Makefile (-21 / +4 lines)
Lines 1-24 Link Here
1
# Created by: Muhammad Moinur Rahman <bofh@FreeBSD.org>
1
# $FreeBSD:$
2
# $FreeBSD: head/devel/py3-pytz/Makefile 435073 2017-02-28 17:58:52Z bofh $
3
2
4
PORTNAME=	pytz
3
MASTERDIR=	${.CURDIR}/../py-pytz
5
PORTVERSION=	2016.10
6
PORTEPOCH=	1
7
CATEGORIES=	devel python
8
MASTER_SITES=	CHEESESHOP
9
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
10
4
11
MAINTAINER=	bofh@FreeBSD.org
5
USES=		python:3.3+ zip
12
COMMENT=	World Timezone Definitions for Python
13
6
14
LICENSE=	MIT
7
.include "${MASTERDIR}/Makefile"
15
LICENSE_FILE=	${WRKSRC}/LICENSE.txt
16
17
USES=		python:3.3+ tar:bzip2
18
USE_PYTHON=	autoplist distutils
19
NO_ARCH=	yes
20
21
post-patch:
22
	@${REINPLACE_CMD} -e 's|=True|=False|' ${WRKSRC}/${PYSETUP}
23
24
.include <bsd.port.mk>
(-)py3-pytz/pkg-descr (-6 lines)
Lines 1-6 Link Here
1
pytz brings the Olson tz database into Python. This library allows accurate and
2
cross platform timezone calculations. It also solves the issue of ambiguous
3
times at the end of daylight savings, which you can read more about in the
4
Python Library Reference (datetime.tzinfo).
5
6
WWW: http://pytz.sourceforge.net

Return to bug 221277