Python module with various common humanization utilities, like turning a number

into a fuzzy human readable duration ('3 minutes ago') or into a human readable
size or throughput.

WWW: https://github.com/jmoiron/humanize
This commit is contained in:
Steven Kreuzer 2014-06-18 15:40:15 +00:00
parent 45152444af
commit 98f9f8d0dd
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=358279
4 changed files with 27 additions and 0 deletions

View File

@ -3671,6 +3671,7 @@
SUBDIR += py-hghooks
SUBDIR += py-hgsubversion
SUBDIR += py-hgtools
SUBDIR += py-humanize
SUBDIR += py-icalendar
SUBDIR += py-ice
SUBDIR += py-icu

View File

@ -0,0 +1,19 @@
# Created by: Steven Kreuzer <skreuzer@FreeBSD.org>
# $FreeBSD$
PORTNAME= humanize
PORTVERSION= 0.5
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= skreuzer@FreeBSD.org
COMMENT= Various common humanization utilities
LICENSE= MIT
USE_PYTHON= yes
USE_PYDISTUTILS=yes
PYDISTUTILS_AUTOPLIST= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (humanize-0.5.tar.gz) = e51bf9956511e58693801fc8895c9b4012363bf9f0bca2f3c2777110b3ff68bc
SIZE (humanize-0.5.tar.gz) = 13170

View File

@ -0,0 +1,5 @@
Python module with various common humanization utilities, like turning a number
into a fuzzy human readable duration ('3 minutes ago') or into a human readable
size or throughput.
WWW: https://github.com/jmoiron/humanize