From owner-svn-ports-head@freebsd.org Mon Jan 4 09:28:28 2021 Return-Path: Delivered-To: svn-ports-head@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 3705F4CFBF4; Mon, 4 Jan 2021 09:28:28 +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) 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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D8Vg00plCz4SSB; Mon, 4 Jan 2021 09:28:28 +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 0A68C175F3; Mon, 4 Jan 2021 09:28:28 +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 1049SRdJ010539; Mon, 4 Jan 2021 09:28:27 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 1049SR4o010538; Mon, 4 Jan 2021 09:28:27 GMT (envelope-from kai@FreeBSD.org) Message-Id: <202101040928.1049SR4o010538@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Mon, 4 Jan 2021 09:28:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r560275 - head/www/py-google-api-python-client X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/www/py-google-api-python-client X-SVN-Commit-Revision: 560275 X-SVN-Commit-Repository: ports 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.34 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: Mon, 04 Jan 2021 09:28:28 -0000 Author: kai Date: Mon Jan 4 09:28:27 2021 New Revision: 560275 URL: https://svnweb.freebsd.org/changeset/ports/560275 Log: www/py-google-api-python-client: Change RUN_DEPENDS of DJANGO option * Switch the non-default DJANGO option from Django 1.11 (End-of-Life since April 2020) to Django 2.2 (current LTS release). * Bump PORTREVISION due changed dependencies. PR: 247115 Approved by: maintainer timeout (5+ months) Modified: head/www/py-google-api-python-client/Makefile Modified: head/www/py-google-api-python-client/Makefile ============================================================================== --- head/www/py-google-api-python-client/Makefile Mon Jan 4 09:20:12 2021 (r560274) +++ head/www/py-google-api-python-client/Makefile Mon Jan 4 09:28:27 2021 (r560275) @@ -2,7 +2,7 @@ PORTNAME= google-api-python-client PORTVERSION= 1.7.6 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -26,7 +26,7 @@ NO_ARCH= yes OPTIONS_DEFINE= DJANGO WEBTEST DJANGO_DESC= Use the library with Django -DJANGO_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django111>=1.3:www/py-django111@${PY_FLAVOR} +DJANGO_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django22>=1.3:www/py-django22@${PY_FLAVOR} WEBTEST_DESC= Use WebTest helper to test WSGI apps WEBTEST_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}WebTest>=1.3.3:www/py-WebTest@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}openssl>=0.13:security/py-openssl@${PY_FLAVOR}