New port: devel/py-inflection: Ruby on Rails' inflector ported to Python

PR:		227014
Submitted by:	Kai <freebsd_ports@k-worx.org>
This commit is contained in:
Yuri Victorovich 2018-03-27 22:04:53 +00:00
parent 6f50f98679
commit 19cc258e44
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=465767
4 changed files with 28 additions and 0 deletions

View file

@ -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

View file

@ -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>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1522167352
SHA256 (inflection-0.3.1.tar.gz) = 18ea7fb7a7d152853386523def08736aa8c32636b047ade55f7578c4edeb16ca
SIZE (inflection-0.3.1.tar.gz) = 8715

View file

@ -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