From owner-svn-ports-all@freebsd.org Fri Sep 15 15:19:29 2017 Return-Path: Delivered-To: svn-ports-all@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 E1CE1E1CAFE; Fri, 15 Sep 2017 15:19:29 +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 mx1.freebsd.org (Postfix) with ESMTPS id BC56D6BA69; Fri, 15 Sep 2017 15:19:29 +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 v8FFJStD025378; Fri, 15 Sep 2017 15:19:28 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8FFJSJi025374; Fri, 15 Sep 2017 15:19:28 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201709151519.v8FFJSJi025374@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Fri, 15 Sep 2017 15:19:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449906 - in head/www/py-gandi.cli: . files X-SVN-Group: ports-head X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: in head/www/py-gandi.cli: . files X-SVN-Commit-Revision: 449906 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 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: Fri, 15 Sep 2017 15:19:30 -0000 Author: koobs Date: Fri Sep 15 15:19:28 2017 New Revision: 449906 URL: https://svnweb.freebsd.org/changeset/ports/449906 Log: www/py-gandi.cli: Update to 0.22 Changelog: https://github.com/Gandi/gandi.cli/blob/0.22/CHANGES.rst Requested by: bapt Modified: head/www/py-gandi.cli/Makefile head/www/py-gandi.cli/distinfo head/www/py-gandi.cli/files/patch-setup.py Modified: head/www/py-gandi.cli/Makefile ============================================================================== --- head/www/py-gandi.cli/Makefile Fri Sep 15 14:17:03 2017 (r449905) +++ head/www/py-gandi.cli/Makefile Fri Sep 15 15:19:28 2017 (r449906) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gandi.cli -PORTVERSION= 0.21 +PORTVERSION= 0.22 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-gandi.cli/distinfo ============================================================================== --- head/www/py-gandi.cli/distinfo Fri Sep 15 14:17:03 2017 (r449905) +++ head/www/py-gandi.cli/distinfo Fri Sep 15 15:19:28 2017 (r449906) @@ -1,3 +1,3 @@ -TIMESTAMP = 1505202146 -SHA256 (gandi.cli-0.21.tar.gz) = 931da484b50a3cb99f58013588b749be01663488689c5057035434a37befd8c5 -SIZE (gandi.cli-0.21.tar.gz) = 149213 +TIMESTAMP = 1505488175 +SHA256 (gandi.cli-0.22.tar.gz) = 5666b544e313132cf9cfe82fb3a163ce140df0e1b91d5452d54dd50a49b0b8e6 +SIZE (gandi.cli-0.22.tar.gz) = 149823 Modified: head/www/py-gandi.cli/files/patch-setup.py ============================================================================== --- head/www/py-gandi.cli/files/patch-setup.py Fri Sep 15 14:17:03 2017 (r449905) +++ head/www/py-gandi.cli/files/patch-setup.py Fri Sep 15 15:19:28 2017 (r449906) @@ -1,6 +1,6 @@ ---- setup.py.orig 2016-02-08 14:17:09 UTC +--- setup.py.orig 2017-09-13 12:32:20 UTC +++ setup.py -@@ -6,11 +6,11 @@ import os +@@ -6,19 +6,19 @@ import os import sys from setuptools import setup, find_packages @@ -9,22 +9,22 @@ here = os.path.abspath(os.path.dirname(__file__)) -README = open(os.path.join(here, 'README.md')).read() -CHANGES = open(os.path.join(here, 'CHANGES.rst')).read() -- +README = open(os.path.join(here, 'README.md'), encoding='utf-8').read() +CHANGES = open(os.path.join(here, 'CHANGES.rst'), encoding='utf-8').read() +- with open(os.path.join(here, 'gandi', 'cli', '__init__.py')) as v_file: version = re.compile(r".*__version__ = '(.*?)'", -@@ -18,7 +18,7 @@ with open(os.path.join(here, 'gandi', 'c + re.S).match(v_file.read()).group(1) requires = ['setuptools', 'pyyaml', 'click>=3.1', 'requests', 'IPy'] --tests_require = ['nose', 'coverage', 'tox', 'httpretty==0.8.6'] -+tests_require = ['httpretty>=0.8.6'] +-tests_require = ['nose', 'coverage', 'tox'] ++tests_require = [] if sys.version_info < (2, 7): tests_require += ['unittest2', 'importlib'] -@@ -54,7 +54,7 @@ setup(name='gandi.cli', +@@ -55,7 +55,7 @@ setup(name='gandi.cli', zip_safe=False, install_requires=requires, tests_require=tests_require,