mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
devel/py-tzlocal
This Python module returns a tzinfo object with the local timezone information under Unix and Win-32. It requires pytz, and returns pytz tzinfo objects. This module attempts to fix a glaring hole in pytz, that there is no way to get the local timezone information, unless you know the zoneinfo name, and under several Linux distros that's hard or impossible to figure out. WWW: https://pypi.python.org/pypi/tzlocal PR: 191659 Submitted by: melvyn magemana nl
This commit is contained in:
parent
5c2826c922
commit
c5c5aa5c43
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=363877
@ -3912,6 +3912,7 @@
|
||||
SUBDIR += py-twistedCore
|
||||
SUBDIR += py-twistedFlow
|
||||
SUBDIR += py-twistedRunner
|
||||
SUBDIR += py-tzlocal
|
||||
SUBDIR += py-ua_parser
|
||||
SUBDIR += py-ujson
|
||||
SUBDIR += py-uncompyle2
|
||||
|
34
devel/py-tzlocal/Makefile
Normal file
34
devel/py-tzlocal/Makefile
Normal file
@ -0,0 +1,34 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= tzlocal
|
||||
PORTVERSION= 1.1.1
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= melvyn@magemana.nl
|
||||
COMMENT= Returns the tzinfo object for the local timezone
|
||||
|
||||
LICENSE= CC0-1.0
|
||||
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>0:${PORTSDIR}/devel/py-pytz
|
||||
|
||||
OPTIONS_DEFINE= TEST
|
||||
OPTIONS_DEFAULT= TEST
|
||||
TEST_DESC= Run test suite
|
||||
|
||||
USES= zip
|
||||
USE_PYTHON= yes
|
||||
USE_PYDISTUTILS= yes
|
||||
PYDISTUTILS_AUTOPLIST= yes
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
regression-test: build
|
||||
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test
|
||||
|
||||
.if !empty(PORT_OPTIONS:MTEST)
|
||||
pre-install: regression-test
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
2
devel/py-tzlocal/distinfo
Normal file
2
devel/py-tzlocal/distinfo
Normal file
@ -0,0 +1,2 @@
|
||||
SHA256 (tzlocal-1.1.1.zip) = 696bfd8d7c888de039af6c6fdf86fd52e32508277d89c75d200eb2c150487ed4
|
||||
SIZE (tzlocal-1.1.1.zip) = 21921
|
10
devel/py-tzlocal/pkg-descr
Normal file
10
devel/py-tzlocal/pkg-descr
Normal file
@ -0,0 +1,10 @@
|
||||
This Python module returns a tzinfo object with the local timezone
|
||||
information under Unix and Win-32. It requires pytz, and returns pytz
|
||||
tzinfo objects.
|
||||
|
||||
This module attempts to fix a glaring hole in pytz, that there is no way
|
||||
to get the local timezone information, unless you know the zoneinfo
|
||||
name, and under several Linux distros that's hard or impossible to
|
||||
figure out.
|
||||
|
||||
WWW: https://pypi.python.org/pypi/tzlocal
|
Loading…
Reference in New Issue
Block a user