From owner-svn-ports-all@freebsd.org Tue Feb 13 19:39:53 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D8AADF1DEEB; Tue, 13 Feb 2018 19:39:52 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 864916C978; Tue, 13 Feb 2018 19:39:52 +0000 (UTC) (envelope-from yuri@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 7C92A25250; Tue, 13 Feb 2018 19:39:52 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1DJdqxj058000; Tue, 13 Feb 2018 19:39:52 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1DJdqU2057996; Tue, 13 Feb 2018 19:39:52 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201802131939.w1DJdqU2057996@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 13 Feb 2018 19:39:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r461737 - in head/textproc: . py-python-bidi X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/textproc: . py-python-bidi X-SVN-Commit-Revision: 461737 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Feb 2018 19:39:53 -0000 Author: yuri Date: Tue Feb 13 19:39:51 2018 New Revision: 461737 URL: https://svnweb.freebsd.org/changeset/ports/461737 Log: New port: textproc/py-python-bidi: Pure python implementation of the BiDi layout algorithm See https://github.com/MeirKriheli/python-bidi Approved by: tcberner (mentor) Added: head/textproc/py-python-bidi/ head/textproc/py-python-bidi/Makefile (contents, props changed) head/textproc/py-python-bidi/distinfo (contents, props changed) head/textproc/py-python-bidi/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Tue Feb 13 19:30:30 2018 (r461736) +++ head/textproc/Makefile Tue Feb 13 19:39:51 2018 (r461737) @@ -1340,6 +1340,7 @@ SUBDIR += py-pystache SUBDIR += py-pystemmer SUBDIR += py-python-augeas + SUBDIR += py-python-bidi SUBDIR += py-python-docx SUBDIR += py-python-gettext SUBDIR += py-python-slugify Added: head/textproc/py-python-bidi/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-python-bidi/Makefile Tue Feb 13 19:39:51 2018 (r461737) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= python-bidi +DISTVERSION= 0.4.0 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Pure python implementation of the BiDi layout algorithm + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= python +USE_PYTHON= distutils autoplist concurrent +NO_ARCH= yes + +.include Added: head/textproc/py-python-bidi/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-python-bidi/distinfo Tue Feb 13 19:39:51 2018 (r461737) @@ -0,0 +1,3 @@ +TIMESTAMP = 1518519741 +SHA256 (python-bidi-0.4.0.tar.gz) = 1a1b3dbee4a0b307c91a465ba4caa8baaaa178151acd20de50ba24f9385f7e13 +SIZE (python-bidi-0.4.0.tar.gz) = 38566 Added: head/textproc/py-python-bidi/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-python-bidi/pkg-descr Tue Feb 13 19:39:51 2018 (r461737) @@ -0,0 +1,4 @@ +Bi-directional (BiDi) layout implementation in pure python. +It contains library and command line utility pybidi. + +WWW: https://github.com/MeirKriheli/python-bidi