From owner-svn-ports-head@freebsd.org Sat Dec 24 13:04:02 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4B37AC8EA03; Sat, 24 Dec 2016 13:04:02 +0000 (UTC) (envelope-from sunpoet@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 mx1.freebsd.org (Postfix) with ESMTPS id 0D93B9D8; Sat, 24 Dec 2016 13:04:01 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBOD41OL029805; Sat, 24 Dec 2016 13:04:01 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBOD40kO029801; Sat, 24 Dec 2016 13:04:00 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201612241304.uBOD40kO029801@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 24 Dec 2016 13:04:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429348 - in head/net/py-oauth2: . files X-SVN-Group: ports-head 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.23 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: Sat, 24 Dec 2016 13:04:02 -0000 Author: sunpoet Date: Sat Dec 24 13:04:00 2016 New Revision: 429348 URL: https://svnweb.freebsd.org/changeset/ports/429348 Log: - Update to 1.9.0.post1 - Add NO_ARCH - Relax USES=python Changes: https://github.com/joestump/python-oauth2/commits/release/1.9 Modified: head/net/py-oauth2/Makefile head/net/py-oauth2/distinfo head/net/py-oauth2/files/patch-setup.py head/net/py-oauth2/pkg-descr Modified: head/net/py-oauth2/Makefile ============================================================================== --- head/net/py-oauth2/Makefile Sat Dec 24 13:03:54 2016 (r429347) +++ head/net/py-oauth2/Makefile Sat Dec 24 13:04:00 2016 (r429348) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= oauth2 -PORTVERSION= 1.5.211 -PORTREVISION= 3 +DISTVERSION= 1.9.0.post1 CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -22,7 +21,8 @@ OPTIONS_DEFINE= TESTS TESTS_DESC= Install test suite requirements TESTS_BUILD_DEPENDS= ${TEST_DEPENDS} -USES= python:-2.7 +NO_ARCH= yes +USES= python USE_PYTHON= autoplist distutils regression-test: build Modified: head/net/py-oauth2/distinfo ============================================================================== --- head/net/py-oauth2/distinfo Sat Dec 24 13:03:54 2016 (r429347) +++ head/net/py-oauth2/distinfo Sat Dec 24 13:04:00 2016 (r429348) @@ -1,2 +1,3 @@ -SHA256 (oauth2-1.5.211.tar.gz) = 82a38f674da1fa496c0fc4df714cbb058540bed72a30c50a2e344b0d984c4d21 -SIZE (oauth2-1.5.211.tar.gz) = 18608 +TIMESTAMP = 1482525505 +SHA256 (oauth2-1.9.0.post1.tar.gz) = c006a85e7c60107c7cc6da1b184b5c719f6dd7202098196dfa6e55df669b59bf +SIZE (oauth2-1.9.0.post1.tar.gz) = 21306 Modified: head/net/py-oauth2/files/patch-setup.py ============================================================================== --- head/net/py-oauth2/files/patch-setup.py Sat Dec 24 13:03:54 2016 (r429347) +++ head/net/py-oauth2/files/patch-setup.py Sat Dec 24 13:04:00 2016 (r429348) @@ -1,12 +1,12 @@ # This package installs its 'test' module in site-packages/. Patch it out # so tests/ is excluded from installation ---- ./setup.py.orig 2014-03-15 23:48:44.604925965 +1100 -+++ ./setup.py 2014-03-15 23:49:01.462781884 +1100 -@@ -31,7 +31,7 @@ - author="Joe Stump", - author_email="joe@simplegeo.com", - url="http://github.com/simplegeo/python-oauth2", +--- setup.py.orig 2015-09-12 12:43:42 UTC ++++ setup.py +@@ -45,7 +45,7 @@ setup(name=PKG, + "Natural Language :: English", + "License :: OSI Approved :: MIT License" + ], - packages = find_packages(), + packages = find_packages(exclude=['tests']), install_requires = ['httplib2'], Modified: head/net/py-oauth2/pkg-descr ============================================================================== --- head/net/py-oauth2/pkg-descr Sat Dec 24 13:03:54 2016 (r429347) +++ head/net/py-oauth2/pkg-descr Sat Dec 24 13:04:00 2016 (r429348) @@ -11,4 +11,4 @@ forefathers: * The library is likely no longer compatible with Python 2.3. * The Client class works and extends from httplib2. -WWW: https://github.com/simplegeo/python-oauth2 +WWW: https://github.com/joestump/python-oauth2