From owner-svn-ports-head@freebsd.org Wed Jun 22 15:16:39 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7FDE4B729FF; Wed, 22 Jun 2016 15:16:39 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 3716D1D27; Wed, 22 Jun 2016 15:16:39 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5MFGcMB057374; Wed, 22 Jun 2016 15:16:38 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5MFGcqM057369; Wed, 22 Jun 2016 15:16:38 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201606221516.u5MFGcqM057369@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 22 Jun 2016 15:16:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417312 - in head/devel: . py-inflect X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Jun 2016 15:16:39 -0000 Author: feld Date: Wed Jun 22 15:16:37 2016 New Revision: 417312 URL: https://svnweb.freebsd.org/changeset/ports/417312 Log: Correctly generate plurals, singular nouns, ordinals, indefinite articles; convert numbers to words WWW: http://pypi.python.org/pypi/inflect Added: head/devel/py-inflect/ head/devel/py-inflect/Makefile (contents, props changed) head/devel/py-inflect/distinfo (contents, props changed) head/devel/py-inflect/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jun 22 15:04:07 2016 (r417311) +++ head/devel/Makefile Wed Jun 22 15:16:37 2016 (r417312) @@ -4150,6 +4150,7 @@ SUBDIR += py-hypothesis SUBDIR += py-icalendar SUBDIR += py-ice + SUBDIR += py-inflect SUBDIR += py-iniparse SUBDIR += py-initgroups SUBDIR += py-instant Added: head/devel/py-inflect/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-inflect/Makefile Wed Jun 22 15:16:37 2016 (r417312) @@ -0,0 +1,18 @@ +# Created by: Mark Felder +# $FreeBSD$ + +PORTNAME= inflect +PORTVERSION= 0.2.5 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= feld@FreeBSD.org +COMMENT= Generate plurals, singular nouns, ordinals, indefinite articles + +LICENSE= AGPLv3+ + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-inflect/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-inflect/distinfo Wed Jun 22 15:16:37 2016 (r417312) @@ -0,0 +1,2 @@ +SHA256 (inflect-0.2.5.tar.gz) = 2014c8dcb2114ebae2941ba3f0fbd98a02c846792a7b72f2da31eb9aa431a818 +SIZE (inflect-0.2.5.tar.gz) = 109756 Added: head/devel/py-inflect/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-inflect/pkg-descr Wed Jun 22 15:16:37 2016 (r417312) @@ -0,0 +1,4 @@ +Correctly generate plurals, singular nouns, ordinals, indefinite +articles; convert numbers to words + +WWW: http://pypi.python.org/pypi/inflect