From owner-dev-commits-ports-all@freebsd.org Sun Jul 18 17:56:12 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 2CFCF66E4F8; Sun, 18 Jul 2021 17:56:12 +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 4GSXhq5LD4z3lNC; Sun, 18 Jul 2021 17:56:11 +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 935A127D43; Sun, 18 Jul 2021 17:56:11 +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 16IHuBRC036491; Sun, 18 Jul 2021 17:56:11 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 16IHuBhi036490; Sun, 18 Jul 2021 17:56:11 GMT (envelope-from git) Date: Sun, 18 Jul 2021 17:56:11 GMT Message-Id: <202107181756.16IHuBhi036490@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: 83f1d92e95ba - main - www/py-pygsheets: Add py-pygsheets 2.0.5 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: 83f1d92e95ba14fb2e788ca1b3b5004e7132f5be 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: Sun, 18 Jul 2021 17:56:12 -0000 The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=83f1d92e95ba14fb2e788ca1b3b5004e7132f5be commit 83f1d92e95ba14fb2e788ca1b3b5004e7132f5be Author: Po-Chuan Hsieh AuthorDate: 2021-07-18 17:46:58 +0000 Commit: Po-Chuan Hsieh CommitDate: 2021-07-18 17:46:58 +0000 www/py-pygsheets: Add py-pygsheets 2.0.5 A simple, intuitive library for google sheets which gets your work done. Features: - Open, create, delete and share spreadsheets using title or key - Intuitive models - spreadsheet, worksheet, cell, datarange - Control permissions of spreadsheets. - Set cell format, text format, color, write notes - Named and Protected Ranges Support - Work with range of cells easily with DataRange and Gridrange - Data validation support. checkboxes, drop-downs etc. - Conditional formatting support - get multiple ranges with get_values_batch and update wit update_values_batch WWW: https://github.com/nithinmurali/pygsheets --- www/Makefile | 1 + www/py-pygsheets/Makefile | 22 ++++++++++++++++++++++ www/py-pygsheets/distinfo | 3 +++ www/py-pygsheets/pkg-descr | 14 ++++++++++++++ 4 files changed, 40 insertions(+) diff --git a/www/Makefile b/www/Makefile index ea89d832dd6c..1d4f63144c28 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1690,6 +1690,7 @@ SUBDIR += py-protego SUBDIR += py-puppetboard SUBDIR += py-py-restclient + SUBDIR += py-pygsheets SUBDIR += py-pyjwt SUBDIR += py-pylsqpack SUBDIR += py-pyocclient diff --git a/www/py-pygsheets/Makefile b/www/py-pygsheets/Makefile new file mode 100644 index 000000000000..9c7274677df0 --- /dev/null +++ b/www/py-pygsheets/Makefile @@ -0,0 +1,22 @@ +# Created by: Po-Chuan Hsieh + +PORTNAME= pygsheets +PORTVERSION= 2.0.5 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Google Spreadsheets Python API v4 + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}google-api-python-client>=1.5.5:www/py-google-api-python-client@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}google-auth-oauthlib>=0:security/py-google-auth-oauthlib@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include diff --git a/www/py-pygsheets/distinfo b/www/py-pygsheets/distinfo new file mode 100644 index 000000000000..f6968d39ce27 --- /dev/null +++ b/www/py-pygsheets/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1626542062 +SHA256 (pygsheets-2.0.5.tar.gz) = ea6ce75dabd1359e49fd36920ff0d25ff9428ccc3d5d2474bdba80fb8653ad80 +SIZE (pygsheets-2.0.5.tar.gz) = 144657 diff --git a/www/py-pygsheets/pkg-descr b/www/py-pygsheets/pkg-descr new file mode 100644 index 000000000000..1549077a07fb --- /dev/null +++ b/www/py-pygsheets/pkg-descr @@ -0,0 +1,14 @@ +A simple, intuitive library for google sheets which gets your work done. + +Features: +- Open, create, delete and share spreadsheets using title or key +- Intuitive models - spreadsheet, worksheet, cell, datarange +- Control permissions of spreadsheets. +- Set cell format, text format, color, write notes +- Named and Protected Ranges Support +- Work with range of cells easily with DataRange and Gridrange +- Data validation support. checkboxes, drop-downs etc. +- Conditional formatting support +- get multiple ranges with get_values_batch and update wit update_values_batch + +WWW: https://github.com/nithinmurali/pygsheets