From owner-svn-ports-all@FreeBSD.ORG Sun Jun 8 13:45:19 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 964836A3; Sun, 8 Jun 2014 13:45:19 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 68D3826E3; Sun, 8 Jun 2014 13:45:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s58DjJeg082428; Sun, 8 Jun 2014 13:45:19 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s58DjJCu082426; Sun, 8 Jun 2014 13:45:19 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201406081345.s58DjJCu082426@svn.freebsd.org> From: Steve Wills Date: Sun, 8 Jun 2014 13:45:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357033 - in head/devel/rubygem-mixlib-shellout: . 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-all@freebsd.org X-Mailman-Version: 2.1.18 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, 08 Jun 2014 13:45:19 -0000 Author: swills Date: Sun Jun 8 13:45:18 2014 New Revision: 357033 URL: http://svnweb.freebsd.org/changeset/ports/357033 QAT: https://qat.redports.org/buildarchive/r357033/ Log: - Fix bug which prevents chef-client to run when the terminal used to launch it is closed. PR: 190068 Submitted by: Renaud Chaput Approved by: maintainer timeout (nickdewing@gmail.com, >2 weeks) Added: head/devel/rubygem-mixlib-shellout/files/ head/devel/rubygem-mixlib-shellout/files/patch-lib__mixlib__shellout__unix.rb (contents, props changed) Modified: head/devel/rubygem-mixlib-shellout/Makefile Modified: head/devel/rubygem-mixlib-shellout/Makefile ============================================================================== --- head/devel/rubygem-mixlib-shellout/Makefile Sun Jun 8 13:25:12 2014 (r357032) +++ head/devel/rubygem-mixlib-shellout/Makefile Sun Jun 8 13:45:18 2014 (r357033) @@ -3,6 +3,7 @@ PORTNAME= mixlib-shellout PORTVERSION= 1.4.0 +PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG Added: head/devel/rubygem-mixlib-shellout/files/patch-lib__mixlib__shellout__unix.rb ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-mixlib-shellout/files/patch-lib__mixlib__shellout__unix.rb Sun Jun 8 13:45:18 2014 (r357033) @@ -0,0 +1,11 @@ +--- lib/mixlib/shellout/unix.rb.bak 2014-05-21 13:10:28.670548925 +0200 ++++ lib/mixlib/shellout/unix.rb 2014-05-21 13:10:40.484660467 +0200 +@@ -222,7 +222,7 @@ + # the ulimit based on platform. + def clean_parent_file_descriptors + # Don't clean $stdin, $stdout, $stderr, process_status_pipe. +- 3.upto(256) do |n| ++ 9.upto(256) do |n| + # We are checking the fd for error pipe before attempting to + # create a file because error pipe will auto close when we + # try to create a file since it's set to CLOEXEC.