Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Jun 2014 15:40:16 +0000 (UTC)
From:      Steven Kreuzer <skreuzer@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r358279 - in head/devel: . py-humanize
Message-ID:  <201406181540.s5IFeG4r015559@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: skreuzer
Date: Wed Jun 18 15:40:15 2014
New Revision: 358279
URL: http://svnweb.freebsd.org/changeset/ports/358279
QAT: https://qat.redports.org/buildarchive/r358279/

Log:
  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

Added:
  head/devel/py-humanize/
  head/devel/py-humanize/Makefile   (contents, props changed)
  head/devel/py-humanize/distinfo   (contents, props changed)
  head/devel/py-humanize/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed Jun 18 14:56:30 2014	(r358278)
+++ head/devel/Makefile	Wed Jun 18 15:40:15 2014	(r358279)
@@ -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

Added: head/devel/py-humanize/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-humanize/Makefile	Wed Jun 18 15:40:15 2014	(r358279)
@@ -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>

Added: head/devel/py-humanize/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-humanize/distinfo	Wed Jun 18 15:40:15 2014	(r358279)
@@ -0,0 +1,2 @@
+SHA256 (humanize-0.5.tar.gz) = e51bf9956511e58693801fc8895c9b4012363bf9f0bca2f3c2777110b3ff68bc
+SIZE (humanize-0.5.tar.gz) = 13170

Added: head/devel/py-humanize/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-humanize/pkg-descr	Wed Jun 18 15:40:15 2014	(r358279)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201406181540.s5IFeG4r015559>