From owner-svn-ports-head@freebsd.org Tue Aug 11 19:49:32 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 879FB99F148; Tue, 11 Aug 2015 19:49:32 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5E47C8A0; Tue, 11 Aug 2015 19:49:32 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7BJnWuA004296; Tue, 11 Aug 2015 19:49:32 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7BJnVsm004292; Tue, 11 Aug 2015 19:49:31 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201508111949.t7BJnVsm004292@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Tue, 11 Aug 2015 19:49:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393968 - in head/textproc: . py-python-docx X-SVN-Group: ports-head 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.20 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: Tue, 11 Aug 2015 19:49:32 -0000 Author: pawel Date: Tue Aug 11 19:49:30 2015 New Revision: 393968 URL: https://svnweb.freebsd.org/changeset/ports/393968 Log: Python library for creating and updating Microsoft Word files. WWW: https://github.com/mikemaccana/python-docx PR: 201320 Submitted by: jjachuf@gmail.com Added: head/textproc/py-python-docx/ head/textproc/py-python-docx/Makefile (contents, props changed) head/textproc/py-python-docx/distinfo (contents, props changed) head/textproc/py-python-docx/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Tue Aug 11 19:48:29 2015 (r393967) +++ head/textproc/Makefile Tue Aug 11 19:49:30 2015 (r393968) @@ -1229,6 +1229,7 @@ SUBDIR += py-pystache SUBDIR += py-pystemmer SUBDIR += py-python-augeas + SUBDIR += py-python-docx SUBDIR += py-pytidylib SUBDIR += py-pyx12 SUBDIR += py-qrcode Added: head/textproc/py-python-docx/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-python-docx/Makefile Tue Aug 11 19:49:30 2015 (r393968) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= python-docx +PORTVERSION= 0.8.5 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jjachuf@gmail.com +COMMENT= Python library for creating and updating Microsoft Word files + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>=3.3.4:${PORTSDIR}/devel/py-lxml + +# Python3 ready +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include Added: head/textproc/py-python-docx/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-python-docx/distinfo Tue Aug 11 19:49:30 2015 (r393968) @@ -0,0 +1,2 @@ +SHA256 (python-docx-0.8.5.tar.gz) = 190ee604bd8c4ac9b8f97d665ff162c847e1f7ca8f5a49291fdbcaf272e8abd7 +SIZE (python-docx-0.8.5.tar.gz) = 5232432 Added: head/textproc/py-python-docx/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-python-docx/pkg-descr Tue Aug 11 19:49:30 2015 (r393968) @@ -0,0 +1,3 @@ +Python library for creating and updating Microsoft Word files. + +WWW: https://github.com/mikemaccana/python-docx