Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 Jun 2016 15:16:38 +0000 (UTC)
From:      Mark Felder <feld@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r417312 - in head/devel: . py-inflect
Message-ID:  <201606221516.u5MFGcqM057369@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <feld@FreeBSD.org>
+# $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 <bsd.port.mk>

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



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