Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 27 Mar 2018 22:04:53 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r465767 - in head/devel: . py-inflection
Message-ID:  <201803272204.w2RM4rKV005617@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Tue Mar 27 22:04:53 2018
New Revision: 465767
URL: https://svnweb.freebsd.org/changeset/ports/465767

Log:
  New port: devel/py-inflection: Ruby on Rails' inflector ported to Python
  
  PR:		227014
  Submitted by:	Kai <freebsd_ports@k-worx.org>

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Mar 27 21:58:26 2018	(r465766)
+++ head/devel/Makefile	Tue Mar 27 22:04:53 2018	(r465767)
@@ -4518,6 +4518,7 @@
     SUBDIR += py-imgkit
     SUBDIR += py-incremental
     SUBDIR += py-inflect
+    SUBDIR += py-inflection
     SUBDIR += py-iniparse
     SUBDIR += py-initgroups
     SUBDIR += py-instant

Added: head/devel/py-inflection/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-inflection/Makefile	Tue Mar 27 22:04:53 2018	(r465767)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	inflection
+DISTVERSION=	0.3.1
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	freebsd_ports@k-worx.org
+COMMENT=	Ruby on Rails' inflector ported to Python
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-inflection/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-inflection/distinfo	Tue Mar 27 22:04:53 2018	(r465767)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1522167352
+SHA256 (inflection-0.3.1.tar.gz) = 18ea7fb7a7d152853386523def08736aa8c32636b047ade55f7578c4edeb16ca
+SIZE (inflection-0.3.1.tar.gz) = 8715

Added: head/devel/py-inflection/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-inflection/pkg-descr	Tue Mar 27 22:04:53 2018	(r465767)
@@ -0,0 +1,5 @@
+Inflection is a string transformation library. It singularizes and pluralizes
+English words and transforms strings from CamelCase to underscored string.
+Inflection is a port of Ruby on Rails' inflector to Python.
+
+WWW: https://github.com/jpvanhal/inflection



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