From owner-dev-commits-ports-all@freebsd.org Wed Jul 14 16:16:29 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 AD20864EE19; Wed, 14 Jul 2021 16:16:29 +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 4GQ2gd3X78z4gRj; Wed, 14 Jul 2021 16:16:29 +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 433CE19216; Wed, 14 Jul 2021 16:16:29 +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 16EGGTN5008236; Wed, 14 Jul 2021 16:16:29 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 16EGGTRa008235; Wed, 14 Jul 2021 16:16:29 GMT (envelope-from git) Date: Wed, 14 Jul 2021 16:16:29 GMT Message-Id: <202107141616.16EGGTRa008235@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: 0bcb64455707 - main - textproc/py-pyexcel: Add py-pyexcel 0.6.6 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: 0bcb644557070bdba262db02124be57572ec30c7 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:29 -0000 The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=0bcb644557070bdba262db02124be57572ec30c7 commit 0bcb644557070bdba262db02124be57572ec30c7 Author: Po-Chuan Hsieh AuthorDate: 2021-07-14 15:48:15 +0000 Commit: Po-Chuan Hsieh CommitDate: 2021-07-14 16:09:36 +0000 textproc/py-pyexcel: Add py-pyexcel 0.6.6 pyexcel lets you focus on data, instead of file formats. It supports csv, tsv, csvz, tsvz, xls, xlsx, xlsm, ods, fods, json, html, simple, rst and media wiki table. WWW: https://github.com/pyexcel/pyexcel --- textproc/Makefile | 1 + textproc/py-pyexcel/Makefile | 34 ++++++++++++++++++++++++++++++++++ textproc/py-pyexcel/distinfo | 3 +++ textproc/py-pyexcel/pkg-descr | 5 +++++ 4 files changed, 43 insertions(+) diff --git a/textproc/Makefile b/textproc/Makefile index 833f0a829841..bc8ebf2eec7f 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1369,6 +1369,7 @@ SUBDIR += py-pyahocorasick SUBDIR += py-pyaml SUBDIR += py-pycountry + SUBDIR += py-pyexcel SUBDIR += py-pygccxml SUBDIR += py-pygments SUBDIR += py-pygments-25 diff --git a/textproc/py-pyexcel/Makefile b/textproc/py-pyexcel/Makefile new file mode 100644 index 000000000000..246d50d33f98 --- /dev/null +++ b/textproc/py-pyexcel/Makefile @@ -0,0 +1,34 @@ +# Created by: Po-Chuan Hsieh + +PORTNAME= pyexcel +PORTVERSION= 0.6.6 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Provide one API to read, manipulate and writedata in different excel formats + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lml>=0.0.4:devel/py-lml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyexcel-io>=0.6.2:textproc/py-pyexcel-io@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}texttable>=0.8.2:textproc/py-texttable@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +OPTIONS_DEFINE= ODS XLS XLSX +OPTIONS_DEFAULT=ODS XLS XLSX +ODS_DESC= OpenDocument spreadsheet (.ods) support +XLS_DESC= Microsoft Excel 97-2003 (.xls) support +XLSX_DESC= Microsoft Excel 2007- (.xlsx) support + +ODS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyexcel-ods3>=0.6.0:textproc/py-pyexcel-ods3@${PY_FLAVOR} +XLS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyexcel-xls>=0.6.0:textproc/py-pyexcel-xls@${PY_FLAVOR} +XLSX_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyexcel-xlsx>=0.6.0:textproc/py-pyexcel-xlsx@${PY_FLAVOR} + +.include diff --git a/textproc/py-pyexcel/distinfo b/textproc/py-pyexcel/distinfo new file mode 100644 index 000000000000..ab839c881ca1 --- /dev/null +++ b/textproc/py-pyexcel/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1625585428 +SHA256 (pyexcel-0.6.6.tar.gz) = 39b0bb8f033d9b5523b126cf5a5259d1990ea82b8a23c8eab7aa5e23116803df +SIZE (pyexcel-0.6.6.tar.gz) = 806792 diff --git a/textproc/py-pyexcel/pkg-descr b/textproc/py-pyexcel/pkg-descr new file mode 100644 index 000000000000..cdf71db41055 --- /dev/null +++ b/textproc/py-pyexcel/pkg-descr @@ -0,0 +1,5 @@ +pyexcel lets you focus on data, instead of file formats. It supports csv, tsv, +csvz, tsvz, xls, xlsx, xlsm, ods, fods, json, html, simple, rst and media wiki +table. + +WWW: https://github.com/pyexcel/pyexcel