From owner-svn-ports-head@freebsd.org Mon Dec 23 23:00:57 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 45F0F1D209D; Mon, 23 Dec 2019 23:00:57 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47hZZx198vz48Fs; Mon, 23 Dec 2019 23:00:57 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 096C21ED77; Mon, 23 Dec 2019 23:00:57 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xBNN0uFH017768; Mon, 23 Dec 2019 23:00:56 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xBNN0u5a017764; Mon, 23 Dec 2019 23:00:56 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201912232300.xBNN0u5a017764@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Mon, 23 Dec 2019 23:00:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r520749 - in head/textproc: . py-text-unidecode X-SVN-Group: ports-head X-SVN-Commit-Author: woodsb02 X-SVN-Commit-Paths: in head/textproc: . py-text-unidecode X-SVN-Commit-Revision: 520749 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Dec 2019 23:00:57 -0000 Author: woodsb02 Date: Mon Dec 23 23:00:55 2019 New Revision: 520749 URL: https://svnweb.freebsd.org/changeset/ports/520749 Log: Add new port textproc/py-text-unidecode Text-unidecode is the most basic port of the Text::Unidecode Perl library. WWW: https://github.com/kmike/text-unidecode/ PR: 242803 Submitted by: Goran Mekić Added: head/textproc/py-text-unidecode/ head/textproc/py-text-unidecode/Makefile (contents, props changed) head/textproc/py-text-unidecode/distinfo (contents, props changed) head/textproc/py-text-unidecode/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Dec 23 22:54:29 2019 (r520748) +++ head/textproc/Makefile Mon Dec 23 23:00:55 2019 (r520749) @@ -1389,6 +1389,7 @@ SUBDIR += py-tabletext SUBDIR += py-tablib SUBDIR += py-terminaltables + SUBDIR += py-text-unidecode SUBDIR += py-textfsm SUBDIR += py-texttable SUBDIR += py-tinycss Added: head/textproc/py-text-unidecode/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-text-unidecode/Makefile Mon Dec 23 23:00:55 2019 (r520749) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= text-unidecode +PORTVERSION= 1.3 +CATEGORIES= textproc devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= meka@tilda.center +COMMENT= Most basic Text::Unidecode port + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +TEST_ENV= PYTHONPATH=${WRKSRC}/src + +NO_ARCH= yes + +do-test: + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest -v -rs -o addopts= + +.include Added: head/textproc/py-text-unidecode/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-text-unidecode/distinfo Mon Dec 23 23:00:55 2019 (r520749) @@ -0,0 +1,3 @@ +TIMESTAMP = 1577024714 +SHA256 (text-unidecode-1.3.tar.gz) = bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93 +SIZE (text-unidecode-1.3.tar.gz) = 76885 Added: head/textproc/py-text-unidecode/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-text-unidecode/pkg-descr Mon Dec 23 23:00:55 2019 (r520749) @@ -0,0 +1,3 @@ +Text-unidecode is the most basic port of the Text::Unidecode Perl library. + +WWW: https://github.com/kmike/text-unidecode/