Received: by mail.netbsd.org (Postfix, from userid 605) id 34B5884D9A; Sun, 9 Jul 2017 10:33:21 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B8E6584D79 for ; Sun, 9 Jul 2017 10:33:20 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id E7o7p3qhu8wV for ; Sun, 9 Jul 2017 10:33:20 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3715384CDE for ; Sun, 9 Jul 2017 10:33:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 354BBFB7A; Sun, 9 Jul 2017 10:33:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1499596400205120" MIME-Version: 1.0 Date: Sun, 9 Jul 2017 10:33:20 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20170709103320.354BBFB7A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1499596400205120 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Jul 9 10:33:20 UTC 2017 Modified Files: pkgsrc/textproc: Makefile Added Files: pkgsrc/textproc/py-inflection: DESCR Makefile PLIST distinfo Log Message: 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. To generate a diff of this commit: cvs rdiff -u -r1.939 -r1.940 pkgsrc/textproc/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/py-inflection/DESCR \ pkgsrc/textproc/py-inflection/Makefile \ pkgsrc/textproc/py-inflection/PLIST \ pkgsrc/textproc/py-inflection/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1499596400205120 Content-Disposition: inline Content-Length: 3019 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/Makefile diff -u pkgsrc/textproc/Makefile:1.939 pkgsrc/textproc/Makefile:1.940 --- pkgsrc/textproc/Makefile:1.939 Thu Jul 6 02:34:50 2017 +++ pkgsrc/textproc/Makefile Sun Jul 9 10:33:19 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.939 2017/07/06 02:34:50 markd Exp $ +# $NetBSD: Makefile,v 1.940 2017/07/09 10:33:19 adam Exp $ # COMMENT= Text processing utilities (does not include desktop publishing) @@ -733,6 +733,7 @@ SUBDIR+= py-guessit SUBDIR+= py-html2text SUBDIR+= py-html5lib SUBDIR+= py-humanize +SUBDIR+= py-inflection SUBDIR+= py-iniparse SUBDIR+= py-jellyfish SUBDIR+= py-jinja2 Added files: Index: pkgsrc/textproc/py-inflection/DESCR diff -u /dev/null pkgsrc/textproc/py-inflection/DESCR:1.1 --- /dev/null Sun Jul 9 10:33:20 2017 +++ pkgsrc/textproc/py-inflection/DESCR Sun Jul 9 10:33:20 2017 @@ -0,0 +1,3 @@ +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. Index: pkgsrc/textproc/py-inflection/Makefile diff -u /dev/null pkgsrc/textproc/py-inflection/Makefile:1.1 --- /dev/null Sun Jul 9 10:33:20 2017 +++ pkgsrc/textproc/py-inflection/Makefile Sun Jul 9 10:33:20 2017 @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1 2017/07/09 10:33:20 adam Exp $ + +DISTNAME= inflection-0.3.1 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= textproc python +MASTER_SITES= ${MASTER_SITE_PYPI:=i/inflection/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/jpvanhal/inflection +COMMENT= Port of Ruby on Rails inflector to Python +LICENSE= mit + +USE_LANGUAGES= # none + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/textproc/py-inflection/PLIST diff -u /dev/null pkgsrc/textproc/py-inflection/PLIST:1.1 --- /dev/null Sun Jul 9 10:33:20 2017 +++ pkgsrc/textproc/py-inflection/PLIST Sun Jul 9 10:33:20 2017 @@ -0,0 +1,9 @@ +@comment $NetBSD: PLIST,v 1.1 2017/07/09 10:33:20 adam Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/inflection.py +${PYSITELIB}/inflection.pyc +${PYSITELIB}/inflection.pyo Index: pkgsrc/textproc/py-inflection/distinfo diff -u /dev/null pkgsrc/textproc/py-inflection/distinfo:1.1 --- /dev/null Sun Jul 9 10:33:20 2017 +++ pkgsrc/textproc/py-inflection/distinfo Sun Jul 9 10:33:20 2017 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2017/07/09 10:33:20 adam Exp $ + +SHA1 (inflection-0.3.1.tar.gz) = 4b42884984e8fbb1cde01ad3036e024b27909bd5 +RMD160 (inflection-0.3.1.tar.gz) = b8b3b28bf81f32ddf62cb784e102d63ea3c736ea +SHA512 (inflection-0.3.1.tar.gz) = d1499ccbba2537914a738de8b6b24d69bd459d9b22bad1e838a8f7adc9b94054631bdb0557ac283cbfccae83a33a969dd44612df22b78f92eb27ae4ea999f560 +Size (inflection-0.3.1.tar.gz) = 8715 bytes --_----------=_1499596400205120--