From owner-svn-ports-head@freebsd.org Mon Jan 16 00:17:41 2017 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 C9D2CCAF357; Mon, 16 Jan 2017 00:17:41 +0000 (UTC) (envelope-from lifanov@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 98E731241; Mon, 16 Jan 2017 00:17:41 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0G0HeMC038296; Mon, 16 Jan 2017 00:17:40 GMT (envelope-from lifanov@FreeBSD.org) Received: (from lifanov@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0G0Hecn038294; Mon, 16 Jan 2017 00:17:40 GMT (envelope-from lifanov@FreeBSD.org) Message-Id: <201701160017.v0G0Hecn038294@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lifanov set sender to lifanov@FreeBSD.org using -f From: Nikolai Lifanov Date: Mon, 16 Jan 2017 00:17:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r431611 - in head/sysutils/ansible: . 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: Mon, 16 Jan 2017 00:17:41 -0000 Author: lifanov Date: Mon Jan 16 00:17:40 2017 New Revision: 431611 URL: https://svnweb.freebsd.org/changeset/ports/431611 Log: fix patch for ec84ff6 PR: 216103 Submitted by: freebsd@sh0shin.org Reviewed by: matthew Approved by: matthew (mentor) MFH: 2017Q1 Differential Revision: https://reviews.freebsd.org/D9189 Modified: head/sysutils/ansible/Makefile head/sysutils/ansible/files/extra-patch-ec84ff6 Modified: head/sysutils/ansible/Makefile ============================================================================== --- head/sysutils/ansible/Makefile Mon Jan 16 00:16:00 2017 (r431610) +++ head/sysutils/ansible/Makefile Mon Jan 16 00:17:40 2017 (r431611) @@ -3,7 +3,7 @@ PORTNAME= ansible PORTVERSION?= 2.2.0.0 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES= sysutils python MASTER_SITES= http://releases.ansible.com/ansible/ Modified: head/sysutils/ansible/files/extra-patch-ec84ff6 ============================================================================== --- head/sysutils/ansible/files/extra-patch-ec84ff6 Mon Jan 16 00:16:00 2017 (r431610) +++ head/sysutils/ansible/files/extra-patch-ec84ff6 Mon Jan 16 00:17:40 2017 (r431611) @@ -281,7 +281,7 @@ result = self._cached_result[sha1_hash] else: - result = self._do_template(variable, preserve_trailing_newlines=preserve_trailing_newlines, escape_backslashes=escape_backslashes, fail_on_undefined=fail_on_undefined, overrides=overrides) -+ result = self.do_template( ++ result = self._do_template( + variable, + preserve_trailing_newlines=preserve_trailing_newlines, + escape_backslashes=escape_backslashes,