From owner-svn-ports-head@freebsd.org Sun May 12 14:39:31 2019 Return-Path: Delivered-To: svn-ports-head@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 DDAA41598898; Sun, 12 May 2019 14:39:30 +0000 (UTC) (envelope-from kai@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) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 813CB718F5; Sun, 12 May 2019 14:39:30 +0000 (UTC) (envelope-from kai@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 5DE8D2BE44; Sun, 12 May 2019 14:39:30 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4CEdUVY045745; Sun, 12 May 2019 14:39:30 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4CEdUmk045743; Sun, 12 May 2019 14:39:30 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201905121439.x4CEdUmk045743@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Sun, 12 May 2019 14:39:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r501382 - head/deskutils/gcalcli X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/deskutils/gcalcli X-SVN-Commit-Revision: 501382 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 813CB718F5 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.93 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.93)[-0.933,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Sun, 12 May 2019 14:39:31 -0000 Author: kai Date: Sun May 12 14:39:29 2019 New Revision: 501382 URL: https://svnweb.freebsd.org/changeset/ports/501382 Log: deskutils/gcalcli: Update to 4.0.4 * Remove options FUZZYDATE, SIMPLEJSON and DOCS: * devel/py-parsedatetime is now explicitly required * devel/py-simplejson is no longer used since the 3.2 release * The supplied documentation doesn't contain useful information * Simplify the Makefile by using Python's distutils to build the port * Flavorize the port because the port also works with Python 3 While I'm here: * Add location to the license file Changelog since 3.4.0: * Minor bugfixes: conky colors, issues with setup.py * Major code refactor: modularity, testing, PEP8 compliance * Bugfixes for issues reported during alpha phase * Multiday events support * Fix textwrap for widechar at cut index * Fix errors attempting to import events * No weekend option * Fixed bug with add and iterators * Deal with more encoding issues... * Get error from JSON object * Support for Python3 via six * Move from gflags to argparse (This is a major, non-backwards compatible change (hence the roll up to v4)) https://github.com/insanum/gcalcli/blob/v4.0.4/ChangeLog PR: 236707 Submitted by: Henrik Hudson (maintainer) Reviewed by: tcberner Differential Revision: https://reviews.freebsd.org/D19984 Modified: head/deskutils/gcalcli/Makefile head/deskutils/gcalcli/distinfo Modified: head/deskutils/gcalcli/Makefile ============================================================================== --- head/deskutils/gcalcli/Makefile Sun May 12 13:56:57 2019 (r501381) +++ head/deskutils/gcalcli/Makefile Sun May 12 14:39:29 2019 (r501382) @@ -2,55 +2,36 @@ # $FreeBSD$ PORTNAME= gcalcli -PORTVERSION= 3.4.0 +PORTVERSION= 4.0.4 DISTVERSIONPREFIX= v CATEGORIES= deskutils python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= ports@thelanman.net COMMENT= Google Calendar Command Line Interface LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>=0:devel/py-dateutil@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}gdata>=0:devel/py-gdata@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}google-api-python-client>=0:www/py-google-api-python-client@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}google-api-python-client>=1.4:www/py-google-api-python-client@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}httplib2>=0:www/py-httplib2@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}python-gflags>=0:devel/py-python-gflags@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}oauth2client>0:security/py-oauth2client@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}parsedatetime>=0:devel/py-parsedatetime@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}oauth2client>0:security/py-oauth2client@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} -USES= python:-2.7 shebangfix -USE_GITHUB= yes -SHEBANG_FILES= gcalcli +USES= python +USE_PYTHON= autoplist concurrent distutils +USE_GITHUB= yes GH_ACCOUNT= insanum -OPTIONS_DEFINE= DOCS FUZZYDATES ICS_VCAL SIMPLEJSON +NO_ARCH= yes + +OPTIONS_DEFINE= ICS_VCAL OPTIONS_DEFAULT= ICS_VCAL ICS_VCAL_DESC= Enable importing of ics/vcal files -SIMPLEJSON_DESC= Use simplejson for url shortening -FUZZYDATES_DESC= Use parsedatetime for fuzzy date parsing - ICS_VCAL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}vobject>=0.4.8:deskutils/py-vobject@${PY_FLAVOR} -SIMPLEJSON_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}simplejson>=0:devel/py-simplejson@${PY_FLAVOR} -FUZZYDATES_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}parsedatetime>=0:devel/py-parsedatetime@${PY_FLAVOR} - -NO_BUILD= yes -NO_ARCH= yes - -PORTDOCS= README.md gcalcli_?.png -PLIST_FILES= bin/gcalcli - -pre-install: - @${REINPLACE_CMD} -e '197s|run|run_flow|' \ - -e '676s|run|run_flow|' ${WRKSRC}/gcalcli - -do-install: - ${MKDIR} ${STAGEDIR}${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin - -do-install-DOCS-on: - ${MKDIR} ${STAGEDIR}/${DOCSDIR} - (cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) .include Modified: head/deskutils/gcalcli/distinfo ============================================================================== --- head/deskutils/gcalcli/distinfo Sun May 12 13:56:57 2019 (r501381) +++ head/deskutils/gcalcli/distinfo Sun May 12 14:39:29 2019 (r501382) @@ -1,3 +1,3 @@ -TIMESTAMP = 1534035958 -SHA256 (insanum-gcalcli-v3.4.0_GH0.tar.gz) = 1297f7082b4d33ac6d5ea3edfc11bdd329b8a6f28926aeda412806d45b7afdd1 -SIZE (insanum-gcalcli-v3.4.0_GH0.tar.gz) = 1675456 +TIMESTAMP = 1551729455 +SHA256 (insanum-gcalcli-v4.0.4_GH0.tar.gz) = 0ad3a3446e1ac1c5228ea3a2705a292b99f6cb3222fae4a12a004f92ce31037f +SIZE (insanum-gcalcli-v4.0.4_GH0.tar.gz) = 1699589