From owner-svn-ports-all@freebsd.org Sun Aug 5 07:31:14 2018 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 D4139106E0AC; Sun, 5 Aug 2018 07:31:13 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8979F84DF1; Sun, 5 Aug 2018 07:31:13 +0000 (UTC) (envelope-from loader@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 509EE1B469; Sun, 5 Aug 2018 07:31:13 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w757VDnw045525; Sun, 5 Aug 2018 07:31:13 GMT (envelope-from loader@FreeBSD.org) Received: (from loader@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w757VCoB045522; Sun, 5 Aug 2018 07:31:12 GMT (envelope-from loader@FreeBSD.org) Message-Id: <201808050731.w757VCoB045522@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: loader set sender to loader@FreeBSD.org using -f From: Fukang Chen Date: Sun, 5 Aug 2018 07:31:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476397 - in head/devel/py-pytest-timeout: . files X-SVN-Group: ports-head X-SVN-Commit-Author: loader X-SVN-Commit-Paths: in head/devel/py-pytest-timeout: . files X-SVN-Commit-Revision: 476397 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.27 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: Sun, 05 Aug 2018 07:31:14 -0000 Author: loader (doc committer) Date: Sun Aug 5 07:31:12 2018 New Revision: 476397 URL: https://svnweb.freebsd.org/changeset/ports/476397 Log: devel/py-pytest-timeout: Update to 1.3.1 Changelog: https://bitbucket.org/pytest-dev/pytest-timeout/commits/17415e95a83386e2b4dba12b995ce13bd0dbdb6b?at=1.3.1#chg-README - Update PORTVERSION and distinfo checksum to 1.3.1 - Add a patch to fix build with Python 3.x in the C locale [0] [0] https://bitbucket.org/pytest-dev/pytest-timeout/pull-requests/15/use-utf-8-encoding-to-open-the-readme-file/ Reviewed by: koobs Approved by: koobs (mentor) Differential Revision: https://reviews.freebsd.org/D16567 Added: head/devel/py-pytest-timeout/files/ head/devel/py-pytest-timeout/files/patch-setup.py (contents, props changed) Modified: head/devel/py-pytest-timeout/Makefile head/devel/py-pytest-timeout/distinfo Modified: head/devel/py-pytest-timeout/Makefile ============================================================================== --- head/devel/py-pytest-timeout/Makefile Sun Aug 5 07:30:31 2018 (r476396) +++ head/devel/py-pytest-timeout/Makefile Sun Aug 5 07:31:12 2018 (r476397) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pytest-timeout -PORTVERSION= 1.3.0 +PORTVERSION= 1.3.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-pytest-timeout/distinfo ============================================================================== --- head/devel/py-pytest-timeout/distinfo Sun Aug 5 07:30:31 2018 (r476396) +++ head/devel/py-pytest-timeout/distinfo Sun Aug 5 07:31:12 2018 (r476397) @@ -1,3 +1,3 @@ -TIMESTAMP = 1532067067 -SHA256 (pytest-timeout-1.3.0.tar.gz) = 08b550b498b9251901a3747f02aa2624ed53a9c8285ca482551346c85b47d641 -SIZE (pytest-timeout-1.3.0.tar.gz) = 14649 +TIMESTAMP = 1533178931 +SHA256 (pytest-timeout-1.3.1.tar.gz) = 4b261bec5782b603c98b4bb803484bc96bf1cdcb5480dae0999d21c7e0423a23 +SIZE (pytest-timeout-1.3.1.tar.gz) = 11412 Added: head/devel/py-pytest-timeout/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-timeout/files/patch-setup.py Sun Aug 5 07:31:12 2018 (r476397) @@ -0,0 +1,17 @@ +https://bitbucket.org/pytest-dev/pytest-timeout/pull-requests/15/use-utf-8-encoding-to-open-the-readme-file/ + +--- setup.py.orig 2018-08-02 04:04:34 UTC ++++ setup.py +@@ -1,10 +1,11 @@ + from setuptools import setup ++import io + + + setup( + name='pytest-timeout', + description='py.test plugin to abort hanging tests', +- long_description=open("README").read(), ++ long_description=io.open('README', encoding='utf-8').read(), + version='1.3.1', + author='Floris Bruynooghe', + author_email='flub@devork.be',