Received: by mail.netbsd.org (Postfix, from userid 605) id A2EFA84D75; Tue, 17 Oct 2017 11:35:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2DC1C84D6E for ; Tue, 17 Oct 2017 11:35:49 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id PKbb1i6T8Bbl for ; Tue, 17 Oct 2017 11:35:48 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 7C91E84D3E for ; Tue, 17 Oct 2017 11:35:48 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 760C0FBC7; Tue, 17 Oct 2017 11:35:48 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1508240148150760" MIME-Version: 1.0 Date: Tue, 17 Oct 2017 11:35:48 +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: <20171017113548.760C0FBC7@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. --_----------=_1508240148150760 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Oct 17 11:35:48 UTC 2017 Modified Files: pkgsrc/textproc: Makefile Added Files: pkgsrc/textproc/py-text-unidecode: DESCR Makefile PLIST distinfo Log Message: text-unidecode is the most basic port of the Text::Unidecode Perl library. To generate a diff of this commit: cvs rdiff -u -r1.965 -r1.966 pkgsrc/textproc/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/py-text-unidecode/DESCR \ pkgsrc/textproc/py-text-unidecode/Makefile \ pkgsrc/textproc/py-text-unidecode/PLIST \ pkgsrc/textproc/py-text-unidecode/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1508240148150760 Content-Disposition: inline Content-Length: 2999 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/Makefile diff -u pkgsrc/textproc/Makefile:1.965 pkgsrc/textproc/Makefile:1.966 --- pkgsrc/textproc/Makefile:1.965 Tue Oct 17 11:34:36 2017 +++ pkgsrc/textproc/Makefile Tue Oct 17 11:35:48 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.965 2017/10/17 11:34:36 adam Exp $ +# $NetBSD: Makefile,v 1.966 2017/10/17 11:35:48 adam Exp $ # COMMENT= Text processing utilities (does not include desktop publishing) @@ -804,6 +804,7 @@ SUBDIR+= py-sphinxcontrib-newsfeed SUBDIR+= py-sphinxcontrib-websupport SUBDIR+= py-tablib SUBDIR+= py-tabulate +SUBDIR+= py-text-unidecode SUBDIR+= py-textile SUBDIR+= py-tinycss SUBDIR+= py-tinycss2 Added files: Index: pkgsrc/textproc/py-text-unidecode/DESCR diff -u /dev/null pkgsrc/textproc/py-text-unidecode/DESCR:1.1 --- /dev/null Tue Oct 17 11:35:48 2017 +++ pkgsrc/textproc/py-text-unidecode/DESCR Tue Oct 17 11:35:48 2017 @@ -0,0 +1 @@ +text-unidecode is the most basic port of the Text::Unidecode Perl library. Index: pkgsrc/textproc/py-text-unidecode/Makefile diff -u /dev/null pkgsrc/textproc/py-text-unidecode/Makefile:1.1 --- /dev/null Tue Oct 17 11:35:48 2017 +++ pkgsrc/textproc/py-text-unidecode/Makefile Tue Oct 17 11:35:48 2017 @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1 2017/10/17 11:35:48 adam Exp $ + +DISTNAME= text-unidecode-1.0 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= textproc python +MASTER_SITES= ${MASTER_SITE_PYPI:=t/text-unidecode/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/kmike/text-unidecode +COMMENT= Most basic Text::Unidecode port +LICENSE= artistic + +USE_LANGUAGES= # none + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/textproc/py-text-unidecode/PLIST diff -u /dev/null pkgsrc/textproc/py-text-unidecode/PLIST:1.1 --- /dev/null Tue Oct 17 11:35:48 2017 +++ pkgsrc/textproc/py-text-unidecode/PLIST Tue Oct 17 11:35:48 2017 @@ -0,0 +1,9 @@ +@comment $NetBSD: PLIST,v 1.1 2017/10/17 11:35:48 adam Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/text_unidecode/__init__.py +${PYSITELIB}/text_unidecode/__init__.pyc +${PYSITELIB}/text_unidecode/__init__.pyo +${PYSITELIB}/text_unidecode/data.bin Index: pkgsrc/textproc/py-text-unidecode/distinfo diff -u /dev/null pkgsrc/textproc/py-text-unidecode/distinfo:1.1 --- /dev/null Tue Oct 17 11:35:48 2017 +++ pkgsrc/textproc/py-text-unidecode/distinfo Tue Oct 17 11:35:48 2017 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2017/10/17 11:35:48 adam Exp $ + +SHA1 (text-unidecode-1.0.tar.gz) = aed68abf93953d6f0fbaa5bb1b043626c30cf06b +RMD160 (text-unidecode-1.0.tar.gz) = 7a735e20ef2429a61ba4e55a5c6f6508fa8f7960 +SHA512 (text-unidecode-1.0.tar.gz) = 3312e0ccb52f519f610c0caba11a99ae9d04aa7de9a9ff9488604ff9be9652865af09e2141d267ae3c6bf0c906ac32ef82d503e734740b43ee18ef210fb5a6fc +Size (text-unidecode-1.0.tar.gz) = 74739 bytes --_----------=_1508240148150760--