From owner-svn-ports-all@freebsd.org Wed May 29 04:56:22 2019 Return-Path: Delivered-To: svn-ports-all@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 E89CC15B6E6D; Wed, 29 May 2019 04:56:21 +0000 (UTC) (envelope-from koobs@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 8330D816D6; Wed, 29 May 2019 04:56:21 +0000 (UTC) (envelope-from koobs@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 4E7C224D1B; Wed, 29 May 2019 04:56:21 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4T4uL1h035161; Wed, 29 May 2019 04:56:21 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4T4uLuf035160; Wed, 29 May 2019 04:56:21 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201905290456.x4T4uLuf035160@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Wed, 29 May 2019 04:56:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r502924 - head/www/py-boto3 X-SVN-Group: ports-head X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: head/www/py-boto3 X-SVN-Commit-Revision: 502924 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8330D816D6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.949,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 May 2019 04:56:22 -0000 Author: koobs Date: Wed May 29 04:56:20 2019 New Revision: 502924 URL: https://svnweb.freebsd.org/changeset/ports/502924 Log: www/py-boto3: Update to 1.9.156 Changelog: https://github.com/boto/boto3/blob/1.9.156/CHANGELOG.rst Modified: head/www/py-boto3/Makefile head/www/py-boto3/distinfo Modified: head/www/py-boto3/Makefile ============================================================================== --- head/www/py-boto3/Makefile Wed May 29 02:24:01 2019 (r502923) +++ head/www/py-boto3/Makefile Wed May 29 04:56:20 2019 (r502924) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= boto3 -PORTVERSION= 1.9.142 +PORTVERSION= 1.9.156 CATEGORIES= www python devel -MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= koobs@FreeBSD.org @@ -13,16 +12,19 @@ COMMENT= AWS SDK for Python LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}botocore>=1.12.142:devel/py-botocore@${PY_FLAVOR} # <1.13.0 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}jmespath>=0.7.1:devel/py-jmespath@${PY_FLAVOR} # <1.0.0 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}s3transfer>=0.2.0:net/py-s3transfer@${PY_FLAVOR} # <0.3.0 +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}botocore>=1.12.156,<1.13.0:devel/py-botocore@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}jmespath>=0.7.1,<1.0.0:devel/py-jmespath@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}s3transfer>=0.2.0,<0.3.0:net/py-s3transfer@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock@${PY_FLAVOR} # Actually 2.6-2.7,3.3-3.7 USES= python +USE_GITHUB= yes # tests missing from PyPI sdist USE_PYTHON= autoplist distutils + +GH_ACCOUNT= boto NO_ARCH= yes Modified: head/www/py-boto3/distinfo ============================================================================== --- head/www/py-boto3/distinfo Wed May 29 02:24:01 2019 (r502923) +++ head/www/py-boto3/distinfo Wed May 29 04:56:20 2019 (r502924) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557032309 -SHA256 (boto3-1.9.142.tar.gz) = b2327f4dc2ca0e45da59b2f4a0085a3c356a0423ba0fa4f3fad4f7919c6be2f7 -SIZE (boto3-1.9.142.tar.gz) = 94922 +TIMESTAMP = 1559103450 +SHA256 (boto-boto3-1.9.156_GH0.tar.gz) = da97c803177f26bd08922f5e98d4532f304d0f644adb1515510facd3d41ce0e9 +SIZE (boto-boto3-1.9.156_GH0.tar.gz) = 262851