From owner-dev-commits-ports-all@freebsd.org Wed Jul 14 16:16:33 2021 Return-Path: Delivered-To: dev-commits-ports-all@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 278F664EE22; Wed, 14 Jul 2021 16:16:33 +0000 (UTC) (envelope-from git@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GQ2gh644fz4gQ1; Wed, 14 Jul 2021 16:16:32 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A6B4918FF2; Wed, 14 Jul 2021 16:16:32 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 16EGGWZM008313; Wed, 14 Jul 2021 16:16:32 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 16EGGWCV008312; Wed, 14 Jul 2021 16:16:32 GMT (envelope-from git) Date: Wed, 14 Jul 2021 16:16:32 GMT Message-Id: <202107141616.16EGGWCV008312@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Po-Chuan Hsieh Subject: git: 1807856ac1fa - main - textproc/py-pyexcel-ods3: Add py-pyexcel-ods3 0.6.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: sunpoet X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 1807856ac1faca5c29a05f8ddb5f9ca2126e0e49 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jul 2021 16:16:33 -0000 The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=1807856ac1faca5c29a05f8ddb5f9ca2126e0e49 commit 1807856ac1faca5c29a05f8ddb5f9ca2126e0e49 Author: Po-Chuan Hsieh AuthorDate: 2021-07-14 15:48:29 +0000 Commit: Po-Chuan Hsieh CommitDate: 2021-07-14 16:09:37 +0000 textproc/py-pyexcel-ods3: Add py-pyexcel-ods3 0.6.0 pyexcel-ods3 is a tiny wrapper library to read, manipulate and write data in ods format. You are likely to use pyexcel together with this library. WWW: https://github.com/pyexcel/pyexcel-ods3 --- textproc/Makefile | 1 + textproc/py-pyexcel-ods3/Makefile | 24 ++++++++++++++++++++++++ textproc/py-pyexcel-ods3/distinfo | 3 +++ textproc/py-pyexcel-ods3/pkg-descr | 4 ++++ 4 files changed, 32 insertions(+) diff --git a/textproc/Makefile b/textproc/Makefile index 6b9d6a2a89e9..967ef58e7652 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1372,6 +1372,7 @@ SUBDIR += py-pyexcel SUBDIR += py-pyexcel-ezodf SUBDIR += py-pyexcel-io + SUBDIR += py-pyexcel-ods3 SUBDIR += py-pygccxml SUBDIR += py-pygments SUBDIR += py-pygments-25 diff --git a/textproc/py-pyexcel-ods3/Makefile b/textproc/py-pyexcel-ods3/Makefile new file mode 100644 index 000000000000..6a878e0d3e4b --- /dev/null +++ b/textproc/py-pyexcel-ods3/Makefile @@ -0,0 +1,24 @@ +# Created by: Po-Chuan Hsieh + +PORTNAME= pyexcel-ods3 +PORTVERSION= 0.6.0 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Read, manipulate and write data in ods format + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>=0:devel/py-lxml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyexcel-ezodf>=0.3.3:textproc/py-pyexcel-ezodf@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyexcel-io>=0.6.2:textproc/py-pyexcel-io@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include diff --git a/textproc/py-pyexcel-ods3/distinfo b/textproc/py-pyexcel-ods3/distinfo new file mode 100644 index 000000000000..7e768e30e081 --- /dev/null +++ b/textproc/py-pyexcel-ods3/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1625585434 +SHA256 (pyexcel-ods3-0.6.0.tar.gz) = eda986eedcb90386907dd65ea2e9f5ff7387a8848cd6c16d9d6762523c560346 +SIZE (pyexcel-ods3-0.6.0.tar.gz) = 49212 diff --git a/textproc/py-pyexcel-ods3/pkg-descr b/textproc/py-pyexcel-ods3/pkg-descr new file mode 100644 index 000000000000..3fc49ffabd0b --- /dev/null +++ b/textproc/py-pyexcel-ods3/pkg-descr @@ -0,0 +1,4 @@ +pyexcel-ods3 is a tiny wrapper library to read, manipulate and write data in ods +format. You are likely to use pyexcel together with this library. + +WWW: https://github.com/pyexcel/pyexcel-ods3