From owner-svn-ports-all@FreeBSD.ORG Wed Jun 18 15:40:17 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 27942358; Wed, 18 Jun 2014 15:40:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EE8412165; Wed, 18 Jun 2014 15:40:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5IFeGXR015564; Wed, 18 Jun 2014 15:40:16 GMT (envelope-from skreuzer@svn.freebsd.org) Received: (from skreuzer@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5IFeG4r015559; Wed, 18 Jun 2014 15:40:16 GMT (envelope-from skreuzer@svn.freebsd.org) Message-Id: <201406181540.s5IFeG4r015559@svn.freebsd.org> From: Steven Kreuzer Date: Wed, 18 Jun 2014 15:40:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r358279 - in head/devel: . py-humanize X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jun 2014 15:40:17 -0000 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 +# $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 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